Forum Replies Created

Viewing 15 posts - 166 through 180 (of 342 total)

  • RE: Backup Size growth

    The 'type' column in msdb..backupset identifies the various different backups that have been made. Either you are not using the SQL Server BACKUP command to perform your backups (perhaps...

    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: Database Log File Size Problem

    Sorry, replication isn't a subject I'm familiar 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: Replicated database backup

    Good question. A reply to a similar question here (last post).

    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 Size growth

    Look in the msdb..backupset table. It contains details of backups (database name, backup type, backup size, backup date etc).

    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 Grows Too Big

    you can also backup the transaction with truncate_only or no_log option:

    That's not going to help as the entire load is performed in a single transaction. The transaction log...

    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: Database Log File Size Problem

    To Stuart:

    Perhaps you have an old transaction that's still open, that's preventing the transaction log from being truncated. Run DBCC OPENTRAN to check if this is the case.

    As to...

    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: Database Restore Problem

    See http://www.sqlbackuprestore.com/backupandrestorerights.htm for required rights.

    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: When will the uncommited transaction flushed out?

    ASSUMING THAT SQL SERVER ALSO STORES THE CONNECTION INFO OF EACH TRANSACION IN THE LOG FILE...........

    Sort of, see here.

    when will sql server perform that activity (that connection is lost...

    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: When will the uncommited transaction flushed out?

    Sorry for the confusion.

    The active part of a transaction log is the portion that cannot be truncated. If you have the following transactions:

    A B C D E F G...

    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: Clearing LOD file (126 GB)

    1 -stay calm.

    2 - what is your database's recovery model? If it's simple, see 3). For full and bulk-logged, see 4).

    3 - two possibilities

    3a. you have an...

    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: Free buffer pool

    Run a checkpoint, followed by DBCC DROPCLEANBUFFERS. That's database wide. I think there is an option to clear the buffer pool per database, but I can't recall 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: Backup job failure

    Could you please post the complete error message? Thanks.

    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: When will the uncommited transaction flushed out?

    ...is the five inserted records are still present in the Transaction Log.

    Yes. See this document on when log records are created in the transaction log.

    ... when will 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.

  • RE: What happend during the Transaction Log backup?

    >> So will the TLog backup contain the transactions between 6:00 & 6:05 or not?

    Yes. A full database backup and a transaction log backup will always contain 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: Transaction Log & Shrinking doesnt work

    which TLog backup should be we keep then, the first backup that removed only the last logical file , or the second backup that shrinks the size

    I'm not following 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.

Viewing 15 posts - 166 through 180 (of 342 total)