次の方法で共有


Audit.MaximumFileSize プロパティ

監査の最大サイズを MB 単位で取得または設定します。

名前空間:  Microsoft.SqlServer.Management.Smo
アセンブリ:  Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)

構文

'宣言
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public Property MaximumFileSize As Integer 
    Get 
    Set
'使用
Dim instance As Audit 
Dim value As Integer 

value = instance.MaximumFileSize

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

プロパティ値

型: System.Int32
監査の最大サイズを MB 単位で示す Int64 値。

説明

指定できる最小サイズは 1,024 KB、最大サイズは 2,147,483,647 TB です。 0 も指定できます。これを指定した場合、ファイルのサイズに制限は設定されません。 1024 よりも小さい値を指定した場合は、エラーが生成されます。

使用例

次のコード例では、監査ログ ファイルの最大サイズを 10 MB に設定し、コンソールに表示する方法を示します。

C#

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

namespace samples
{
    class Program
    {
        static void Main(string[] args)
        {
            //Create the audit and set the maximum file size
            Server dbServer = new Server("(local)");
            Audit dbAudit = new Audit(dbServer, "Test Audit");
            dbAudit.DestinationType = AuditDestinationType.File;
            dbAudit.FilePath = "C:\\AuditDirectory";
            dbAudit.MaximumFileSize = (int)10;
            dbAudit.Create()
                       
            //Display the maximum file size on the console
            Console.WriteLine("The maximum size the audit log file is "
                              + dbAudit.MaximumFileSize + " 
                              megabytes.");
        }
    }
}

Powershell

#Create the audit and set the maximum file size
$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 = 10
$dbAudit.Create()

#Display the maximum file size
Write-Host "The maximum size of the audit log file is:" 
           $dbAudit.MaximumFileSize "megabytes."

関連項目

参照

Audit クラス

Microsoft.SqlServer.Management.Smo 名前空間