This topic has not yet been rated - Rate this topic

TruncateLog Property (Backup)

This feature will be removed in a future version of Microsoft SQL Server. Avoid using this feature in new development work, and plan to modify applications that currently use this feature.

The TruncateLog property controls log file processing for Backup and BulkCopy objects.


object
.TruncateLog [= value]
object

An expression that evaluates to an object in the Applies To list.

value

A long integer that specifies a database log file operation as described in Settings.

Long, enumerated

Read/write

HRESULT GetTruncateLog(SQLDMO_BACKUP_LOG_TYPE* pRetVal)
HRESULT SetTruncateLog(SQLDMO_BACKUP_LOG_TYPE NewValue)

Constant

Value

Description

SQLDMOBackup_Log_NoLog

2

Records referencing committed transactions are removed. The transaction log is not backed up.

SQLDMOBackup_Log_NoOption

4

SQLDMOBackup_Log_Truncate.

SQLDMOBackup_Log_NoTruncate

1

The transaction log is backed up. Records referencing committed transactions are not removed, providing a point-in-time image of the log.

SQLDMOBackup_Log_Truncate

0

The transaction log is backed up. Records referencing committed transactions are removed.

SQLDMOBackup_Log_/Truncateonly

3

SQLDMOBackup_Log_NoLog.

For Microsoft SQL Server, transaction log backup can perform two distinct database administration tasks:

  • Log backup can be part of a backup strategy allowing incremental recovery to a failure point.

  • Log backup can remove log records referencing committed transactions, freeing space in a log of fixed size or allowing an autoresizing log to shrink.

When using the Backup object to perform administrative maintenance of a database log, set the TruncateLog property to SQLDMOBackup_Log_Truncate or SQLDMOBackup_Log_NoLog.

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.