Viewing 9 posts - 1 through 9 (of 9 total)
I wanted the identity column to look like the order the records should have been entered in. Going forward the identity column will work fine since it will represent the...
January 30, 2007 at 4:32 pm
Adding the clustered index worked. Unfortunately I already had a clustered index on the table as well as many constraints so I had to do a lot of dropping and...
January 30, 2007 at 3:23 pm
I have tried three of the suggestions against my database:
declare @find varchar(1000),
@sp_prefix varchar(1000)
set @find = 'unitxref'-- enter search string here
set @sp_prefix = isnull(@sp_prefix,'') + '%'
set @find = '%' + @find...
January 11, 2007 at 12:27 pm
Thank you Mark! I will add this to my list of tools.
January 9, 2007 at 5:33 pm
Actually... I have three queries that I am comparing. I have been running them with those two commands in between over an over. I get different times each time (for...
December 30, 2004 at 9:33 am
Thank you Frank. Just what I was looking for!
Happy New Year!
Deborah
December 30, 2004 at 9:23 am
Thanks for the response. Speed is definitely an issue though. On further study, I did find two databases that did have Auto Close On. I changed both of them and...
January 12, 2004 at 8:48 pm
Viewing 9 posts - 1 through 9 (of 9 total)