Udostępnij za pośrednictwem


Właściwość Server.SystemMessages

Reprezentuje kolekcja SystemMessage obiektów.Każdy SystemMessage obiekt reprezentuje komunikat systemowy zdefiniowane dla wystąpienie SQL Server.

Przestrzeń nazw:  Microsoft.SqlServer.Management.Smo
Zestaw:  Microsoft.SqlServer.Smo (w Microsoft.SqlServer.Smo.dll)

Składnia

'Deklaracja
<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny,  _
    GetType(SystemMessage))> _
Public ReadOnly Property SystemMessages As SystemMessageCollection
    Get
'Użycie
Dim instance As Server
Dim value As SystemMessageCollection

value = instance.SystemMessages
[SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, 
    typeof(SystemMessage))]
public SystemMessageCollection SystemMessages { get; }
[SfcObjectAttribute(SfcContainerRelationship::ObjectContainer, SfcContainerCardinality::ZeroToAny, 
    typeof(SystemMessage))]
public:
property SystemMessageCollection^ SystemMessages {
    SystemMessageCollection^ get ();
}
[<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, 
    typeof(SystemMessage))>]
member SystemMessages : SystemMessageCollection
function get SystemMessages () : SystemMessageCollection

Wartość właściwości

Typ: Microsoft.SqlServer.Management.Smo.SystemMessageCollection
A SystemMessageCollection reprezentująca wszystkie komunikaty systemowe, zdefiniowane na wystąpienie obiektu SQL Server.

Uwagi

SystemMessages Właściwość wskazuje na SystemMessageCollection obiekt, który odwołuje się komunikaty systemowe na wystąpienie z SQL Server.kolekcja można odwołać wiadomości wstępnie systemu.Użyj UserDefinedMessages właściwość, aby uzyskać dostęp do wiadomości przez użytkownika.

Przykłady

Visual Basic

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Reference an existing system message using the ItemByIdAndLanguage method.
Dim msg As SystemMessage
msg = srv.SystemMessages.ItemByIdAndLanguage(14126, "us_english")
'Display the message ID and  text.
Console.WriteLine(msg.ID.ToString + " " + msg.Text)

PowerShell

$srv = new-object Microsoft.SqlServer.Management.Smo.Server("(local)")
$msg = $srv.SystemMessages.ItemByIdAndLanguage(14126, "us_english")
Write-Host $msg.ID, $msg.Text