Forum Replies Created

Viewing 15 posts - 61 through 75 (of 275 total)

  • RE: out of disk space.

    Usually the C drive should only be reserved for Windows. Any other Application, including SQl should be installed on, lets say D with the Database files on others.

    You...

  • RE: Drop and recreate vs alter stored procedure

    We have a database DDL trigger in place that records any changes made to any object. This allows to rapidly go back to a previous version if something breaks. Developers...

  • RE: production database log full

    homebrew01 (4/26/2010)


    Lynn Pettis (4/26/2010)


    Also, I hope you duly noted that I RECOMMENDED AGAINST changing the recovery model to SIMPLE and back to FULL.

    So ... you would advise against creating a...

  • RE: Performance issue due to index fragmentation.

    ... just realized that when I saw your post... 🙂

    In any event, seems the OP has other issues at hand here....

  • RE: Performance issue due to index fragmentation.

    You might want try running that dmv with the 'LIMITED' option:

    FROM sys.dm_db_index_physical_stats (DB_ID(' DB '),OBJECT_ID(' Table'A' '),NULL, NULL, 'LIMITED')

    as it will have better performance, specially if it is a big...

  • RE: Reporting Services Disaster Recovery

    Dave, great article. very detailed and nicely outlined. Kudo's......

  • RE: Selective Backups

    You can also use 3rd party backup software like Quest LiteSpeed, Red Gate SQL Backup Pro or Idera SQL Safe backup which allow you to get a compression of about...

  • RE: 2008 Vs LiteSpeed

    I know that, but when you have a TB database size, compressed down to about 207GB... that still would be about 52 files!!!!

  • RE: 2008 Vs LiteSpeed

    Toby White (4/12/2010)


    Redgate and quest also provide object level restores with their backup solutions. Additionally Quest offers the ability to save a backup as a self extracting .exe file that...

  • RE: Trust Differential with 30+ days since last Full backup

    Gary,

    what disks are those? 30 hours for 550GB seems to be EXTREMELY slow. We backup natively with SQL 1 TB in about 2.5 hours on our SAN.

    ...

  • RE: Trust Differential with 30+ days since last Full backup

    ....an even scarier thought is such a long database recovery chain.... if any of the log backups in the interim is kaputt, you can only go back as far as...

  • RE: how to separate the mem into another column

    You should probably just leave the default format and pick out the columns you need:

    DECLARE @tasklist TABLE (taskname NVARCHAR (500))

    INSERT INTO @tasklist

    EXEC xp_cmdshell 'tasklist'

    DELETE FROM @tasklist WHERE taskname IS NULL...

  • RE: Understanding and Using APPLY (Part 1)

    Great article Paul! Looking forward to next weeks article.

  • RE: processor/licensing

    For 80 CALs + Server License you'd probably pay more than 2 CPU Licenses....

    If it is only 1 CPU, then per CPU license is definitively the way to go.\So, in...

  • RE: Checking fragmentation taking forever

    The way you are running it, it will still do it on all the objects in that database and then only return the results for the Invoice table.

    You might want...

Viewing 15 posts - 61 through 75 (of 275 total)