Database.TruncateLog 메서드

Truncates the database log.

네임스페이스:  Microsoft.SqlServer.Management.Smo
어셈블리:  Microsoft.SqlServer.Smo(Microsoft.SqlServer.Smo.dll)

구문

‘선언
Public Sub TruncateLog
‘사용 방법
Dim instance As Database

instance.TruncateLog()
public void TruncateLog()
public:
void TruncateLog()
member TruncateLog : unit -> unit
public function TruncateLog()

주의

Truncating the log means that records of completed transactions that make up the inactive part of the log are deleted. The remaining incomplete transactions in the active part of the log are not deleted. The log is usually truncated after a backup.

VB

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server

'Reference the AdventureWorks2012 database.
Dim db As Database
db = srv.Databases("AdventureWorks2012")

'Shrink the database without truncating the log.
db.Shrink(20, ShrinkMethod.NoTruncate)

'Truncate the log.
db.TruncateLog()

PowerShell

$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$db = New-Object Microsoft.SqlServer.Management.Smo.Database
$db = $srv.Databases.Item("AdventureWorks2012")

$db.Shrink(20, [Microsoft.SqlServer.Management.Smo.ShrinkMethod]'NoTruncate')

$db.TruncateLog()

참고 항목

참조

Database 클래스

Microsoft.SqlServer.Management.Smo 네임스페이스

관련 자료

데이터베이스 개체 작업

트랜잭션 로그 잘림

ALTER DATABASE(Transact-SQL)