Share via


TruncateLogOnCheckpoint Property

Microsoft SQL Server의 이후 버전에서는 이 기능이 제거됩니다. 새 개발 작업에서는 이 기능을 사용하지 말고, 현재 이 기능을 사용하는 응용 프로그램은 수정하십시오.

The TruncateLogOnCheckpoint property configures automatic transaction log maintenance activity.

구문

object
.TruncateLogOnCheckpoint [= value]

Parts

  • object
    An expression that evaluates to an object in the Applies To list
  • value
    TRUE or FALSE

Data Type

Boolean

Modifiable

Read/write

Prototype (C/C++)

HRESULT GetTruncateLogOnCheckpoint(LPBOOL pRetVal);
HRESULT SetTruncateLogOnCheckpoint(BOOL NewValue);

주의

Periodically, and on certain user-directed actions, Microsoft SQL Server forces a write of dirty pages, ensuring data integrity at a point in time. The recovery interval option configures periodic dirty page writes. The Transact-SQL statement CHECKPOINT and other user-directed actions, such as initiating a complete database backup, force a dirty page write.

If TRUE, SQL Server removes log entries referencing committed transactions when activity on the database forces a dirty page write.

If FALSE, the forced dirty page writes have no effect on the database transaction log.

ms140715.note(ko-kr,SQL.90).gif중요:
Setting the TruncateLogOnCheckpoint property to TRUE implies that backup-maintained database integrity relies on backup of the database only. If TRUE, you cannot back up a database transaction log, and backup strategies based on differential backup of the log are not available. For more information, see 데이터베이스 옵션 설정.

Applies To:

DBOption Object

참고 항목

참조

RecoveryModel Property

관련 자료

BACKUP(Transact-SQL)
CHECKPOINT(Transact-SQL)
recovery interval 옵션

도움말 및 정보

SQL Server 2005 지원 받기