Viewing 15 posts - 4,816 through 4,830 (of 7,614 total)
SELECT first_appointment.*, next_appointment.*
FROM (
SELECT customer#, MIN(appoinment_date) AS appointment_date
FROM table_name
GROUP BY customer#
HAVING MIN(appointment_date) >= '20140101'...
September 4, 2015 at 3:30 pm
You have at least one rule missing. For example, in
Text1=
'ABNAGENDRACSURENDRADJITHENDRAXNARENDRABVEERNDARAXDRMNDRAXRVINDRABNAGENDRACSURENDRADJITHEN'
The first A not followed by a B, C or D is "AGENDR". Why is that "A" excluded?
September 4, 2015 at 2:33 pm
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
Viewing 15 posts - 4,816 through 4,830 (of 7,614 total)