Viewing 15 posts - 4,801 through 4,815 (of 7,597 total)
tobe_ha (9/4/2015)
ScottPletcher (9/4/2015)
September 4, 2015 at 1:28 pm
Jacob Wilkins (9/4/2015)
So it seems 2008 (not R2) is the same as the others...
September 4, 2015 at 1:23 pm
Does the log table have an identity column? Did you try removing that column and see if the table is still locked? Typically multiple tasks should be able...
September 4, 2015 at 10:31 am
You certainly don't need a calendar table for that simple a calculation! All you need is:
SELECT (DATEDIFF(MONTH, 0, @enddate) / 3) - (DATEDIFF(MONTH, 0, @startdate) / 3) + 1
declare...
September 4, 2015 at 10:24 am
Hrothgar (9/4/2015)
As the results seem to come out in an arbitrary order, or at least in an order that I...
September 4, 2015 at 8:19 am
Jacob Wilkins (9/1/2015)
ScottPletcher (9/1/2015)
Jacob Wilkins (9/1/2015)
ScottPletcher (9/1/2015)
Jacob Wilkins (9/1/2015)
SELECT...
September 3, 2015 at 4:38 pm
I can't see the screenshot. A screenshot is pretty useless anyway. Actual text would be much better.
But, in short, here's the approach I recommend:
1) encode the large varchar...
September 3, 2015 at 2:29 pm
Lynn Pettis (9/3/2015)
ScottPletcher (9/3/2015)
September 3, 2015 at 12:47 pm
Very busy at work, just now was able to complete the code. I'll go ahead and post it as an alternative. I prefer a "template" approach, so that...
September 3, 2015 at 12:36 pm
ben.brugman (9/3/2015)
More elegant, more compact and it did uncover a mistake in my solution.
(My parent_column was not correct, I had not noticed that yet.).
Thanks,
Ben
Edit:
Second check,
, COL_NAME(parent_object_id, parent_column_id) as Parent_column
Does...
September 3, 2015 at 9:27 am
When you concatenate strings, you must insure that higher-precedence data types are first converted to strings. Try something like this:
SET @Q1 = N'exec RPT_MailOps '''+CAST(@ID...
September 2, 2015 at 12:51 pm
Lynn Pettis (9/2/2015)
ScottPletcher (9/2/2015)
Lynn Pettis (9/2/2015)
ScottPletcher (9/2/2015)
Once people are properly convinced that NOLOCK is a bad idea in many, many cases, they simply...
September 2, 2015 at 9:58 am
Lynn Pettis (9/2/2015)
ScottPletcher (9/2/2015)
Once people are properly convinced that NOLOCK is a bad idea in many, many cases, they simply remove those specific...
September 2, 2015 at 9:46 am
Don't disagree with other comments. But maybe I can give you a quick fix, and maybe not.
First, you need an index on CSV_Details keyed first by Mark_Rev_No_fab that contains...
September 2, 2015 at 9:44 am
Finally, there's the cost to fix each issue.
Once people are properly convinced that NOLOCK is a bad idea in many, many cases, they simply remove those specific bytes -- "WITH...
September 2, 2015 at 9:00 am
Viewing 15 posts - 4,801 through 4,815 (of 7,597 total)