Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)

  • RE: How does @@ERROR work?

    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

     

  • RE: sql question

    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...

  • RE: Round function

    You can most likely make this more efficient, but here is a first draft.

    Enjoy,

    Charaka

    select

  • RE: DBCC DROPCLEANBUFFERS

    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...

Viewing 4 posts - 1 through 4 (of 4 total)