Forum Replies Created

Viewing 15 posts - 21,376 through 21,390 (of 22,195 total)

  • RE: How do I reuse Transactional Logs?

    The key word and tricky phrase to take away from the description of this column in books online is: "... reuse of transaction log space..." This means that it will...

  • RE: How do I reuse Transactional Logs?

    Me too. I've never heard the phrase "reuse logs" applied to SQL Server.

    I mean, we "reuse" them all the time. The same log file is cleaned out, whether you're in...

  • RE: Deadlock Errors

    If it's that severe, you might want to try "turning off" parallelism by setting the MAXDOP to 1 for the server, but it's just a band-aid at this point.

    If this...

  • RE: Deadlock Errors

    It's an advanced setting within the properties of the server. The default is usually zero.

    This is the script from BOL

    sp_configure 'show advanced options', 1;

    GO

    RECONFIGURE WITH OVERRIDE;

    GO

    sp_configure 'max degree of parallelism',...

  • RE: How do I reuse Transactional Logs?

    ALTER DATABASE dbname

    SET RECOVERY SIMPLE

  • RE: SQL IDE options

    2008 does have intellisense. So far, I've found RedGate's to be better.

  • RE: DML Triggers

    That's just what I was going to point out. I even went & checked it in BOL.

  • RE: FASTFIRSTROW hint

    No. This wouldn't be helpful to you at all. In fact, it would probably hurt performance.

  • RE: FASTFIRSTROW hint

    You're operating under a slight misconception. FAST 'n' (or FASTFIRSTROW) doesn't give you faster response time. It gives you slower response time with the appearance of faster responses. The hint...

  • RE: Trace Flags 1204 and 1205 :crazy:

    That's certainly not a ringing endorsement. Anything in particular force the change back?

  • RE: SQL IDE options

    Still sounds like you might want to try out VSDB.

  • RE: SQL IDE options

    First off, get out of the monolithic file. That's going to create headaches no matter what tool you use.

    After that, talking about this stuff is almost like talking about religion...

  • RE: Deadlock Errors

    Oh, one other option, you could look at increasing the Parallelism Threshold for the server so that it's less likely to put this query into a parallel operation. That's another...

  • RE: Dead lock issue

    What you've done with sp_getapplock is completely lock down all the resources used by all the transactions within a given connection. It's a very harsh method for eliminating deadlocks. I...

  • RE: Deadlock Errors

    Whoops. Assumptions will get you. Sorry.

    BOL = Books Online. The documentation that comes with SQL Server.

    If you can't modify the code directly, but you're getting this error, you may want...

Viewing 15 posts - 21,376 through 21,390 (of 22,195 total)