Share via


Propriété MaximumFileSizeUnit

Gets or sets the maximum file size unit that an audit is allowed to reach.

Espace de noms :  Microsoft.SqlServer.Management.Smo
Assembly :  Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)

Syntaxe

'Déclaration
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public Property MaximumFileSizeUnit As AuditFileSizeUnit
    Get
    Set
'Utilisation
Dim instance As Audit
Dim value As AuditFileSizeUnit

value = instance.MaximumFileSizeUnit

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

Valeur de propriété

Type : Microsoft.SqlServer.Management.Smo. . :: . .AuditFileSizeUnit
An AuditFileSizeUnit value specifying the type of the maximum audit file size.

Notes

The MaximumFileSizeUnit property specifies whether the maximum size of the audit log file can be measured in megabytes, gigabytes, or terabytes. When the audit is created, it defaults to the megabytes setting.

Exemples

The following code example shows how to set the maximum file type size of the audit log file to gigabytes.

C#

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

namespace samples
{
    class Program
    {
        static void Main(string[] args)
        {
            //Create the audit 
            Server dbServer = new Server("(local)");
            Audit dbAudit = new Audit(dbServer, "Test Audit");
            dbAudit.DestinationType = AuditDestinationType.File;
            dbAudit.FilePath = "C:\\AuditDirectory";
            dbAudit.Create();

            //Set the audit file size unit
            dbAudit.MaximumFileSizeUnit = AuditFileSizeUnit.Gb;  
        }
    }
}

Powershell

#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.Create()

#Set the audit file size units
$dbAudit.MaximumFileSizeUnit = [Microsoft.SqlServer.Management.Smo.AuditFileSizeUnit]'Gb'