Viewing 15 posts - 46,321 through 46,335 (of 59,095 total)
noeld (12/29/2008)
I know I am going to get some heat because of it but hey USA is a free country.
Only if you've never had to fight for her... 😉
--Jeff Moden
Change is inevitable... Change for the better is not.
December 29, 2008 at 6:48 pm
WHY? WHY do you want to drop the IDENTITY attribute? It's served you quite well for a hundred million rows... why are you trying to change horses in...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 29, 2008 at 6:44 pm
Uoumph! I once wished I could sing like Burl Ives... BWAA-HAA!!! Now I wish you could! 😛
Merry Christmas and Happy New Year!
--Jeff Moden
Change is inevitable... Change for the better is not.
December 29, 2008 at 6:40 pm
Without more information, I'd have to say "like you would anywhere else". Insert from one table to the other using Insert/Select... then, delete the rows you just moved from...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 29, 2008 at 6:34 pm
Dunno if this will work on 64 bit... but I think you'll like it if it does...
/**********************************************************************************************************************
Purpose:
Returns a single result set similar to sp_Space used for all user...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 29, 2008 at 6:26 pm
If the file is a "continuous" log instead of a file to be created on the fly, look into the simplicity of making a Text based linked server... a pretty...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 29, 2008 at 6:13 pm
PhilPacha (12/29/2008)
Example 1: 2009 + 1 + 2 = 2012 (January 2, 2009)
Example 2: 2009...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 29, 2008 at 6:06 pm
Heh... I guess I don't use WHERE EXISTS for the same reason I don't use Try/Catch... I know the database and I know the DRI... when I join on something,...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 29, 2008 at 6:00 pm
RBarryYoung (12/29/2008)
Matt Miller (12/29/2008)
--Jeff Moden
Change is inevitable... Change for the better is not.
December 29, 2008 at 5:56 pm
Matt Miller (12/29/2008)
Matt Miller (12/29/2008)
Jeff Moden (12/26/2008)
Steve Jones - Editor (12/26/2008)
Congrats!Hey, pick up running as a new vice, that's what I did 🙂
Just bought a nice new Calypso Cruiser (bicycle)......
--Jeff Moden
Change is inevitable... Change for the better is not.
December 29, 2008 at 5:52 pm
RBarryYoung (12/29/2008)
--Jeff Moden
Change is inevitable... Change for the better is not.
December 29, 2008 at 5:43 pm
Dang... sorry Grant... wasn't directed at you. It was directed at folks that somehow think it's OK in any way, shape, or form, to have unecrypted SSN's and the...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 29, 2008 at 6:36 am
Just so you know... storing dates in a database like that is a form of "Death by SQL"... it will bite you sometime in the future.
The only reason you should...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 29, 2008 at 5:39 am
For the record, here's how I'd do it... very very fast because there's only 1 conversion and the rest is all integer math...
SELECT ABS(CHECKSUM(NEWID()))%900000 + 100000
--Jeff Moden
Change is inevitable... Change for the better is not.
December 29, 2008 at 5:31 am
I wouldn't use RAND() to generate the random number because if more than one row is returned in a given Select that uses it, ALL of the supposedly random numbers...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 29, 2008 at 5:28 am
Viewing 15 posts - 46,321 through 46,335 (of 59,095 total)