Forum Replies Created

Viewing 15 posts - 376 through 390 (of 469 total)

  • RE: SQL DB Performance

    Milu (10/23/2008)


    Sandy (:P),

    My Problem Here is After running this MY DB performance increase but my log file is Increasing as leading to degrade my performance...

    What I wants, is to run...

  • RE: SQL DB Performance

    Do not run DBCC SHRINKDATABASE on a PRODUCTION database :w00t:, especially when it is ONLINE.

    Do a dbcc update_statistics(fullscan)

    Cleaning PROC Cache calls for more compilation time, thereby slowing things down.

    One thing...

  • RE: Maintenance plan jobs failing on SQL 2000.

    Why is the T-Log failing?? :unsure:

  • RE: DBA

    And to be a complete DBA, I would definitely say you would need to have pretty good knowledge of the HARDWARE that is used. If you are to build a...

  • RE: Error Message

    Is the table accessible?

    Why not run this query from the query analyzer and check for the results, if not run a profiler trace while this script is being executed..there are...

  • RE: Truncate Log Files

    Cant you change the RECOVERY MODEL TO BULK LOGGED, and then do the updates. If in Full recovery model, no matter how many T_log backups you take it does not...

  • RE: Error Message

    Google it....:P

    Thanks!!!

  • RE: Maintenance Plan Task

    As a rule of thumb, the indexes need to be re-organised when the fragmentation(logical scan) is higher tha 10% and the Rebuild is done when the fragmentation is greater than...

  • RE: Looking Solution - Log file is not clearing data.

    1.Run the log backup only after you run a full backup

    2.Why the log size is increasing??

    If the Db is active with many DML's then the log would increase certainly.

    If this...

  • RE: Trouble with SQL output to a file

    Do not post a new topic, you could just put a new reply as an updated script you need to be helped out with..my version is same again

    OSQL.EXE /n /S...

  • RE: Trouble with SQL output to a file

    OSQL.EXE /n /S "servername" /E /dDBName /i "input script path" /o "output file path

    Hope this helps

    Thanks!!!

  • RE: Rebilding Indexes on a table with 100Million + rows

    In my case I see most of the tables have a high Extent fragmentation.

    Now, my guess is Logical Fragmentation is what we fix with re-indexing.

    I am back to...

  • RE: how to recovery data without backup?

    Gordon (10/16/2008)


    And how often do you test recovering from those tapes? Nothings worse than going to tape and finding bad or unusable tape....

    Well, for me there was never a...

  • RE: How to debug timeout/deadlock problems on a table in SQL 2000?

    use lock hints and also see if the timeout setting is too low. We ran into this problem where my DB timeout setting was infinite but the application timeout in...

  • RE: ReIndexing without Log File Growth

    Well I wouldn't need to do point in time restore as I am reIndexing while in the maitenance window.Also it would be started after the full backup is taken.Does this...

Viewing 15 posts - 376 through 390 (of 469 total)