Forum Replies Created

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

  • RE: How DO I Work with DBCC TRACEOn(1204) FLAG

    You also have to switch on trace flag 3605, in order to get the deadlock information sent to the SQL Server error log.

    I generally use the following statement;

    DBCC TRACEON (1204,...

  • RE: More NULLs - need help BAD !

    Not sure if this is helpful, but could you make use of the fact that count(*) includes nulls, whereas count(field1) will exclude them, and then exclude groups where the result...

  • RE: Generate SQl Script

    Sorry, I defer to the previous 2 posters, pipped at the post!

  • RE: Generate SQl Script

    Just MIGHT be possible, but could get very messy.

    A simpler way would be to write a little VB applet and add a reference to the SQLDMO object library to do...

  • RE: Execution Plans

    Not sure whether this has been verified, but are both SQL Servers at the same service pack level?

    The query optimizer has had minor tweaks between SPs, especially where parallel queries...

  • RE: Using T-SQL to display stored procedure

    quote:


    Thanks Jpipes, it worked great!


    BTW, this is exactly what I do as well, but...

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