Viewing 15 posts - 301 through 315 (of 5,590 total)
GilaMonster (8/11/2015)
SQLRNNR (8/11/2015)
And the post was good. Not quite stern enough on the burnout topic - imho. Too many of us get too close to that edge.
I wrote, rewrote and...
August 11, 2015 at 3:09 pm
nadersam (8/11/2015)
I was able to write the attached function but it doesn't work if...
August 11, 2015 at 2:42 pm
Grant Fritchey (8/11/2015)
GilaMonster (8/11/2015)
Grant Fritchey (8/11/2015)
Just saw the news. Congrats Gail.
It's a side effect of the dissertation, my supervisor and I distilled the 160 page dissertation down into 10 pages...
August 11, 2015 at 7:11 am
nadersam (8/11/2015)
No it will return success as order is different.
What should the results be for a string like "XaYdZol"
Here, the matching characters are all there, and in order, but they...
August 11, 2015 at 6:11 am
coolchaitu (8/8/2015)
Wayne Sir,Thanks lot for reply.Actually,I did not understand. As i am junior level dba, could you please explain in simpler way.
In that case, I suggest getting the book in...
August 8, 2015 at 10:08 am
coolchaitu (8/7/2015)
We have log shipping setup several months before i joined. If .trn log file gets corrupted, could you please let me know the fix/solution for this.
Use a differential...
August 7, 2015 at 9:27 pm
Without information of exactly what you're attempting, I'm guessing that you're selecting data from one table to insert into a second table (the archive table). Based upon the message "Text...
August 7, 2015 at 2:06 pm
Welsh Corgi (8/7/2015)
I tried finding a solution but I have not found one.
The table has...
August 7, 2015 at 1:58 pm
How are you setting @StartRow? It looks like it's not being set properly then.
August 7, 2015 at 12:58 pm
serg-52 (8/7/2015)
COUNT(*) OVER (PARTITION BY docnome
...
August 7, 2015 at 10:08 am
For the sample data that you just provided, and including the "Very Low" status, this query:
DECLARE @IssueData TABLE
(
IssueID INT,
IssueTypeID INT,
Value INT
)
INSERT INTO @IssueData VALUES (1, 1, 19), (1,3,1), (1,4,2), (2,2,...
August 6, 2015 at 8:02 pm
ilovedata (8/6/2015)
SELECT 1 AS IssueID, 'Very Low' AS IssueStatus
UNION ALL
SELECT 1, 'Low'
UNION ALL
SELECT 1, 'Medium'
UNION ALL
SELECT 1, 'High'
UNION ALL
SELECT 1,...
August 6, 2015 at 7:49 pm
luissantos (8/6/2015)
I need to build a query that can return only documents where the field "u_DIM4" for the same document have more than one different value:
my script are this...
August 6, 2015 at 7:42 pm
How does this work?
WITH cte AS
(
SELECT d.IssueID,
s.IssueTypeID,
s.IssueTitle,
...
August 6, 2015 at 12:11 pm
Let me work on this a bit and see what I can come up with.
August 6, 2015 at 8:35 am
Viewing 15 posts - 301 through 315 (of 5,590 total)