Forum Replies Created

Viewing 15 posts - 4,141 through 4,155 (of 5,841 total)

  • RE: Reading the .LDF File in Sql server 2005

    I highly recommend ApexSQL Log and Recover.

    Disclaimer: I have a close relationship with Apex, use their products and recommend them to my clients. Also, if you...

  • RE: Add files to tempdb

    cfradenburg (3/2/2010)


    You should also keep in mind that if one auto grows that SQL will no longer balance the load across the different files properly. Our recommendation to our...

  • RE: memory wait spikes

    Could well be a memtoleave problem, since you are 32bit. -g startup parameter can be used to increase this. You may wish to get a professional involved to...

  • RE: Overusing Identities

    Codd is sputtering...

    Who is this Codd character?? Probably someone related to that Celko character! :w00t:

  • RE: Avoid dynamic SQL

    As a result I have bad habits related to performance that wouldn't be tolerated in shops with large data sets.

    I wouldn't sweat that - you are certainly not alone!...

  • RE: Avoid dynamic SQL

    Jeff Moden (2/26/2010)


    Heh... poor ol' dynamic SQL... nobody loves it anymore.

    Not true!! I am actually a great fan of it and use it where appropriate, which is far more often...

  • RE: System databases on an iSCSI LUN

    1) I advise my clients to avoid NetApp stuff like the plague when dealing with SQL Server servers. Way too many problems historically

    2) I have several clients very heavily...

  • RE: Table level reorg or Shrinking

    Probably some language barriers here, but it sure sounds like you need an expert to review your maintenance practices, ASAP.

  • RE: Overusing Identities

    1) No GUIDs as PKs for me please, sequential or otherwise

    2) I am with another poster on OrderDetails: OrderID + Sequential Line Number as PK...

  • RE: SQL Server 2005 Performance Issue with insertion of 2000 Recs per Second ( 300 KB of Data)

    cjones-956169 (2/26/2010)


    From the perfmon counters, it looks like you are doing 1 insert per transaction.

    Transactions / Sec : 1921 ( For SQL Database)

    Would it be possible for you to batch...

  • RE: 9 Things to Do When You Inherit a Database

    wren.brynn (2/26/2010)


    Good article. What's the best way to determine if an object is obsolete?

    The only reliable way is to have ABSOLUTE control over all sourcecode that is EVER executed against...

  • RE: Help with Blocking

    I would imagine that even SELECT ... (NOLOCK) would take a SCHEMA LOCK that might prevent/be blocked by this type of activity. Important question is why were you trying...

  • RE: Running Tuning Advisor

    Be VERY careful with the 'recommendations' that DTA spits out at you. They can truly devastate your database. WAY too many indexes and WAY too many INCLUDED columns....

  • RE: SQL Server 2005 Performance Issue with insertion of 2000 Recs per Second ( 300 KB of Data)

    2000 record per second steady state capabilities is reasonably high, even in today's world. There are MANY things that can cause your throughput to fluctuate, chiefly among them are...

  • RE: Lock a table during tests

    I wouldn't recommend SELECT * without a WHERE clause for this because it could bring back billions of rows of data. SELECT TOP 1.. will suffice with the TABLOCKX...

Viewing 15 posts - 4,141 through 4,155 (of 5,841 total)