Truncate Method
Esse recurso será removido em uma versão futura do Microsoft SQL Server. Evite usar esse recurso em desenvolvimentos novos e planeje modificar os aplicativos que atualmente o utilizam.
The Truncate method archive-marks transaction log records.
Sintaxe
object.Truncate()
Parts
- object
Expression that evaluates to an object in the Applies To list.
Prototype (C/C++)
HRESULT Truncate();
Comentários
In general, transaction log records are archived by making a backup of records of committed transactions. Space used for archived transaction log records is reclaimed by reuse or by shrinking the operating system file(s) maintaining the transaction log.
Importante |
---|
The Truncate method allows reuse of the space allocated to the operating system file(s) maintaining a transaction log. Log truncation is part of normal transaction log backup. If log backup is part of a database backup strategy, the Truncatemethod should never be called. |