Forum Replies Created

Viewing 15 posts - 211 through 225 (of 341 total)

  • RE: Cann't take backup on Network Drive

    Red Gate Software has a couple of tools to help you with copying your local files to a remote location. Offers full error logging, has email notification on failure,...

  • RE: log backups fails

    Another possible reason for a log backup to fail is if you have never made a full backup of the database. As suggested, do check the SQL Server logs...

  • RE: Size of files within backup?

    Run RESTORE FILELISTONLY on the file e.g.

    RESTORE FILELISTONLY FROM DISK = ' '

  • RE: Backup Job gives Error

    You are backing up to a network share. Does the SQL Server Agent service startup user have rights to write to that network share?

  • RE: Statistics Missing For This Table

    If the statistics did not exist, they can't be updated.

    To create the statistics, use the CREATE STATISTICS command. Or you could have SQL Server create it automatically by running...

  • RE: Restore space needed

    If space is at a premium, you might want to consider using a third party backup tool that can compress backups and restore from compressed files.

  • RE: Query Cost v. Execution Time

    If both queries retrieve the same data, and you ran them in a batch, there is the possibility that the 2nd query was just fetching data from the buffer pool,...

  • RE: How to test backup?

    From BOL:

    CHECKSUM

    Requests that the backup operation verify each page for checksum

    and torn page, if enabled and available, and also to generate a checksum for the entire backup.

    It isn't...

  • RE: Batch Cost & Actual Time

    Have you tried reversing the order of the queries and compare the timings then? Or run each query individually, preceding each with a DBCC DROPCLEANBUFFERS to clear the buffer...

  • RE: How to test backup?

    In SQL Server 2005, you can create backups with the CHECKSUM option. This generates a checksum for the backup streams. Then instead of running a full restore, you...

  • RE: log backup and diferential backup question(scenario included)

    Yes. Your fastest restore sequence would be as follows:

    - restore full backup taken at 12:00 am

    - restore differential backup taken at 4:00 am

    - restore transaction log taken at 4:30...

  • RE: Performance issue - restored db won't performance unless...

    Did you have a chance to compare the execution plans for that stored procedure, when it was performing well as well as when it was performing poorly? The...

  • RE: Restoring sequences question

    If so, what happens if I restore the second backup (with commited transactions applied) and then restore the log file, which also has those same transactions in it?

    SQL Server knows...

  • RE: Slow query on 1st request

    As mentioned, once the query has been ran, the data that it retrieves is in the buffer cache, hence subsequent queries that retrieve the same data completes much faster, until...

  • RE: Slow Performing query

    The presence of the search argument "LIKE '%ring%'" does not automatically force a table scan. There are 2 other search arguments, both of which could cause the query optimizer...

Viewing 15 posts - 211 through 225 (of 341 total)