Viewing 15 posts - 10,576 through 10,590 (of 26,489 total)
Sean beat me to it, but here is a setup that also creates a 1,000,000 row data set to test.
CREATE TABLE #Transactions
(
ID INT IDENTITY PRIMARY KEY,
CardID INT,
TranDate DATETIME
);
create index CardID_TranDate...
July 20, 2012 at 3:18 pm
Anyone know why the pulled Database Mail from Standard Edition? Doesn't make sense to me.
July 20, 2012 at 1:31 pm
Looks good, but I am going to quibble a bit here. The semicolon (;) is a statement terminator, not a statement begininator. The following snippet from your post:
CREATE...
July 20, 2012 at 12:56 pm
tmitchelar (7/20/2012)
Ok, I apologize in advance. It is giving me an out-of-range error on the following type of values:0012-12-01 00:00:00
0015-01-01 00:00:00
0020-01-01 00:00:00
0010-12-01 00:00:00
0016-08-01 00:00:00
0016-01-01 00:00:00
0018-12-01 00:00:00
0015-12-01 00:00:00
Valid values for...
July 20, 2012 at 11:44 am
Steve Jones - SSC Editor (7/20/2012)
July 20, 2012 at 10:55 am
Not going to try and convince you it is right or better. I can see why your Senior DBA wants it done that way, I would not have a...
July 20, 2012 at 10:46 am
Four separate threads for the same problem and none of them have an answer. Why? Because you won't provide the information requested in the format needed to help you.
Read...
July 20, 2012 at 10:33 am
Is this the part you are asking about?
fetch NameOfFirstCursor into @parms
select @t_status = @@fetch_status <<--- specifically this immediately after the fetch?
while (@t_status = 0)
Actually,...
July 20, 2012 at 10:30 am
sqlfriends (10/17/2011)
But one problem I often comes with how to select to backup all user databases but to exclude one or more...
July 20, 2012 at 10:24 am
Steve Jones - SSC Editor (10/17/2011)
July 20, 2012 at 10:20 am
I can't recreate the problem using the date you provided.
Can you post a script that actually fails for you?
July 20, 2012 at 10:09 am
Separate query and change the computation to include dividing the time by 15 to give you the portion of the route (or whatever you called it).
July 20, 2012 at 9:10 am
The problem looks to be the scalar functions. Unfortunately, we can't see what you see, so all we can give you is a shot in the dark.
I would look...
July 20, 2012 at 9:01 am
Could be one of those used to be type situations. Perhaps in an older versions of the software (meaning the optimizer) people found that the order of the values...
July 20, 2012 at 7:35 am
Okay, forget you getting frustrated, I'm frustrated. Just how many different threads do you need for the same problem????
July 20, 2012 at 12:50 am
Viewing 15 posts - 10,576 through 10,590 (of 26,489 total)