Forum Replies Created

Viewing 15 posts - 16 through 30 (of 342 total)

  • RE: Data base Integrity MSSQL 2005

    SQL Verify from Yohz Software does all of the stuff that clubbavich mentions i.e.

    - compute file checksums

    - copy backup files to secondary locations

    - restore backup files, and optionally run database...

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: Repair model database

    After copying the model data files from a working instance and get your instance started, you could just restore from the backups you made previously.

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: Exception 155, sev 25 when restoring backup of 2005 DB to 2008

    Have you tried restoring the database using SQL Server natively, without SQL Virtual Restore, and see if you get the same error?

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: How can I tell if a database has changed?

    Differential backups? They only back up pages that have changed since the last full backup, and are cumulative. This means that you only need to restore the last...

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: Question about backup files location on server and performance

    dso808 (5/19/2011)


    Which disk is the best place to store the backups from a performance stand point?

    Speeding up backups?

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: full backup failed

    Looks like an error in the script/stored procedure. Suggest you debug the script/stored procedure in a query window, and use PRINT statements liberally around line 256 to see what's...

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: Restore Sequence - Full and transaction log backups

    The backup process is as Steve described, except for point 3

    Now all log pages from 3:00am to 3:25 are added to the backup.

    which will depend on whether there...

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: extremely slow log shipping restore in standby mode

    Any chance it has something to do with the drive where the undo file is located, or perhaps you have some filter drivers that's intercepting the disk calls and performing...

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: Resotre of a database taking long time

    Or run

    DBCC TRACEON(3004, 3605,-1)

    to get detailed progress about the restore process in your SQL Server log file.

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: extremely slow log shipping restore in standby mode

    That's certainly a big difference of 8 hours between the 2 servers to restore that transaction log. I know it's a long shot, but any chance the SQL Server...

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: extremely slow log shipping restore in standby mode

    6 hours does look like an extremely long time to create the undo file, even if the entire 5.5 GB contains uncommitted transactions. Can you compare the restore speed...

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: backup file size incresed.

    As stated by the other guys, a backup file only contains data pages that are actually used. If you run the following script:

    CREATE DATABASE sizetest ON PRIMARY(NAME = 'sizetest_data',...

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: backup file size incresed.

    To add to the above, you can run this query to see exactly how much data is being backed up for your database.

    SELECT database_name, backup_start_date, backup_size, compressed_backup_size

    FROM msdb..backupset

    WHERE...

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: Commvault thinks log chain broken, launches full backup during business day

    Disclaimer: I have no experience using CommVault, and the following is only based on my experience working on SQL Backup for the last 7 years.

    Is it possible that CommVault is...

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: Page verify - Backup with checksum

    GilaMonster (6/17/2010)


    The backup process writes a checksum over the backup file, so if anything damages any portion of the backup file it will be detected if you do a restore...

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

Viewing 15 posts - 16 through 30 (of 342 total)