Viewing 4 posts - 1 through 4 (of 4 total)
Sysmessage is the way of the warrior...
declare @err int
select 1/0 from syscolumns
select @err = @@error
select * from master..sysmessages where error = @err
June 28, 2004 at 2:16 pm
There a lot of reasons to have multiple filegroups, but I will make it short and sweet. If you have a lot of data in a single table, you can...
June 28, 2004 at 2:10 pm
You can most likely make this more efficient, but here is a first draft.
Enjoy,
Charaka
select
June 9, 2004 at 9:44 am
Whenever I am performance testing query changes, I always use both FREEPROCCACHE and DROPCLEANBUFFERS (sp?) Otherwise, you end up getting data from memory, which will not reflect the true...
October 31, 2002 at 9:28 am
Viewing 4 posts - 1 through 4 (of 4 total)