Viewing 15 posts - 55,411 through 55,425 (of 59,067 total)
I agree... as everyone knows, temp tables live in TempDB. TempDB's recovery mode is set to SIMPLE which uses minimal logging. No performance advantage to shifting temp tables to permanent...
August 10, 2007 at 7:42 am
I agree...BOL is incorrect or, at the very least, misleading here... if you use any decimal math against the time portion, you will many times come up with the wrong...
August 10, 2007 at 7:31 am
Just a list or to generate the actual code to create the constraints?
Also, why do you want to do this? Might be important...
August 10, 2007 at 7:14 am
I could be wrong, but I don't think that anything you do to the hardware or the server settings or indexes is going to fix this one...
As you said, it works...
August 10, 2007 at 7:11 am
Nope... glad to see someone else thinks the same thing, Jacob. ![]()
August 10, 2007 at 6:41 am
You don't like the idea of SELECT 1 instead?
August 10, 2007 at 12:11 am
Good catch, Lowell...
I've seen it where the view totally recalculates for each individual update... kinda drags performance down a bit ![]()
August 9, 2007 at 2:30 pm
And, Peter's fine method works not only for single variables, but for a whole table, as well.
SELECT (ABS(CHECKSUM(NEWID())) % 10000) AS RandomNumber
FROM Master.dbo.Syscolumns
August 9, 2007 at 2:20 pm
Nicely done... but, what if it takes 6 numbers to make the desired total?
August 9, 2007 at 2:14 pm
Yes... don't allow developers to have access to write to production machines. Works for us. Create a new server with snapshots of the production box and use that as the...
August 9, 2007 at 2:09 pm
I don't have access to 2k5, yet, Michael... did they keep the information schema views named the same way?
August 9, 2007 at 2:02 pm
Heh... yeah... Just look for anything that uses MAX(somecolumnname)+1 or @@IDENTITY in the code. If the aren't "in sync", it'll cause Primary Key violations which is the error you're getting.
Also,...
August 9, 2007 at 1:58 pm
I'd also like to throw my hat in the ring with the others that expressed some disappointment in certs... or rather I should say in some of the people that...
August 8, 2007 at 10:33 pm
Viewing 15 posts - 55,411 through 55,425 (of 59,067 total)