Viewing 9 posts - 31 through 39 (of 39 total)
2 integer fields vs 1 integer field. I know a DBA without a job who was using GUID's on each record! Sorry without identifying the fields it is not clear. ...
December 31, 2004 at 9:04 am
Joe, thanks for printing the rant, I see where you are comming from. I don't want to get into a debate, about the purity of compuer generated id fields vs...
December 30, 2004 at 2:05 pm
Journeyman, perhaps you could shed light on the Identity column issue, or tell me where to find your "rants".
We have tables that need 3 or four fields to define...
December 30, 2004 at 12:49 pm
Thanks a lot! All is well now.
December 27, 2004 at 1:20 pm
I used scope_identity once and it diddnt work. I was sending 100's of sql statements up to the server using ADO from VB like this (forgive the pseudo code):
dim SQL...
December 27, 2004 at 11:36 am
In 7 years, this never deadlocked and it always retrieves a unique next number. This is just an exerpt of a function, but it finds a unique @iBatch (integer batch...
December 8, 2004 at 5:12 pm
In some cases adding appropriate indexing can decrease the memory growth. You might have some queries that are doing a lot more work, generating temporary tables, or doing full table...
December 7, 2004 at 3:29 pm
I think comparing the time as floats might be a performance optimization
SELECT CAST(GetDate() AS FLOAT) - FLOOR(CAST(GetDate() AS FLOAT))
returns
0.50975181327521568
December 7, 2004 at 12:24 pm
Try to avoid regular expressions for obvious speed reasons, but when necessary or speed isnt an issue they are great. Here is a link to a way to use them...
October 5, 2004 at 2:40 pm
Viewing 9 posts - 31 through 39 (of 39 total)