Forum Replies Created

Viewing 15 posts - 181 through 195 (of 342 total)

  • RE: 1130(Not enough server storage is available to process this command)

    During the backup, does the kernel memory values (as viewed using the Windows Task Manager) increase linearly?

    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: Transaction Log & Shrinking doesnt work

    active log record is in the second to last virtual log file

    If you look at the screenshot before the paragraph that contained that statement, you will see that there were...

    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: Transaction Log & Shrinking doesnt work

    See if this document helps.

    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: Log Shipping Restore

    When you restore the transaction logs to the secondary database, you can specify that the database be in one of two modes: offline or read-only (step 7 in this document)....

    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: DBA Administration Question

    You can give them the database role for backup (db_backupadmin) for their database only.

    That would be the (db_backupoperator) role.

    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: Automating restore. How to clear active sessions?

    A kill command, although returning immediately, still rolls back any transactions associated with the killed spid.

    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: Revert database from snapshot

    A snapshot reflects the state of the database at the time the snapshot was made. Subsequent changes to the source database are not reflected in the snapshot.

    To revert the...

    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: AOFO - Veritas to Backup SQL Server MDF and LDF

    From 'Pro SQL Server 2005 High Availability' by Allan Hirt:

    In my experience, 9.9 out of 10 times, an OS-based backup is not equivalent to detaching a database, let alone a...

    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: Automating restore. How to clear active sessions?

    Try setting the database offline just before restoring it e.g.

    USE master

    ALTER DATABASE EXP_TRAIN SET OFFLINE WITH ROLLBACK IMMEDIATE

    RESTORE DATABASE [EXP_TRAIN] FROM [filer04] WITH ...

    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 Issue

    backup's doesnt leave any performance affect on the system.

    Native SQL Server backups utilize very little CPU resources, but disk I/O is another story. While the drive volumes may...

    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 of standby database

    If you are running these backups out of sequence, use the COPY_ONLY command ...

    Not required for the full database backup, as it does not break the log restore chain in...

    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 skips databases

    I've encountered a similar issue with sysdatabases, where running 2 consecutive queries against that catalog view yielded different results, although the state of the databases has not changed. You...

    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: Estimating transaction log size

    In addition to regularly backing up the transaction log, you need to ensure that transactions are committed or rolled back as soon as possible. Otherwise, the active portion of...

    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: Advantages to have mutiple data files

    Having multiple data files on physically different disks will result in faster read throughput during backups(http://www.sqlbackuprestore.com/backupreadsandwrites.htm).

    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: Rebuild of Indexes

    I think you need to distinguish between index statistics and column statistics.

    Index statistics are those statistics for a specific index, that get generated regardless of the AUTO_UPDATE_STATISTICS setting. These...

    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 - 181 through 195 (of 342 total)