Audit.ReserveDiskSpace 속성

Gets or sets the Boolean property value that specifies whether disk space is reserved for the audit file.

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

구문

‘선언
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public Property ReserveDiskSpace As Boolean 
    Get 
    Set
‘사용 방법
Dim instance As Audit 
Dim value As Boolean 

value = instance.ReserveDiskSpace

instance.ReserveDiskSpace = value
[SfcPropertyAttribute(SfcPropertyFlags.Standalone)]
public bool ReserveDiskSpace { get; set; }
[SfcPropertyAttribute(SfcPropertyFlags::Standalone)]
public:
property bool ReserveDiskSpace {
    bool get ();
    void set (bool value);
}
[<SfcPropertyAttribute(SfcPropertyFlags.Standalone)>]
member ReserveDiskSpace : bool with get, set
function get ReserveDiskSpace () : boolean 
function set ReserveDiskSpace (value : boolean)

속성 값

유형: System.Boolean
A Boolean value that specifies whether disk space is reserved for the audit file.If True, disk space equal to the maximum file size, is reserved in advance; otherwise, False (default).

주의

This setting cannot be used when the MaximumFileSize property is set to unlimited.

The following code example demonstrates how to set maximum file size to 5 MB and reserve disk space in advance.

C#

using System;
using Microsoft.SqlServer.Management.Smo;

namespace samples
{
    class Program
    {
        static void Main(string[] args)
        {
            //Set the maximum file size to a definite value, reserve
            //that amount of space, and then create the audit
            Server dbServer = new Server("(local)");
            Audit dbAudit = new Audit(dbServer, "Test Audit");
            dbAudit.DestinationType = AuditDestinationType.File;
            dbAudit.FilePath = "C:\\AuditDirectory";
            dbAudit.MaximumFileSize = 5;
            dbAudit.ReserveDiskSpace = true;
            dbAudit.Create();
        }
    }
}

Powershell

#Set the maximum file size to a definite value, reserve that amount of #space, and then create the audit
$dbServer = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$dbAudit = New-Object Microsoft.SqlServer.Management.Smo.Audit($dbServer, "Test Audit")
$dbAudit.DestinationType = [Microsoft.SqlServer.Management.Smo.AuditDestinationType]'File'
$dbAudit.FilePath = "C:\AuditDirectory"
$dbAudit.MaximumFileSize = 5
$dbAudit.ReserveDiskSpace = $TRUE
$dbAudit.Create()

참고 항목

참조

Audit 클래스

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