Metoda Server.EnumDetachedLogFiles
Wylicza listę plików dziennika odłączone.
Przestrzeń nazw: Microsoft.SqlServer.Management.Smo
Zestaw: Microsoft.SqlServer.Smo (w Microsoft.SqlServer.Smo.dll)
Składnia
'Deklaracja
Public Function EnumDetachedLogFiles ( _
mdfName As String _
) As StringCollection
'Użycie
Dim instance As Server
Dim mdfName As String
Dim returnValue As StringCollection
returnValue = instance.EnumDetachedLogFiles(mdfName)
public StringCollection EnumDetachedLogFiles(
string mdfName
)
public:
StringCollection^ EnumDetachedLogFiles(
String^ mdfName
)
member EnumDetachedLogFiles :
mdfName:string -> StringCollection
public function EnumDetachedLogFiles(
mdfName : String
) : StringCollection
Parametry
- mdfName
Typ: System.String
A String wartość, która określa nazwę pliku, który chcesz ograniczyć wyniki.
Wartość zwracana
Typ: System.Collections.Specialized.StringCollection
A StringCollection wartość obiektu system zawierający listę nazw pliku dziennika odłączone.
Uwagi
Ta metoda służy do uzyskiwania nazw odłączony dziennika (.ldf) plików na wystąpienie SQL Server.
Przykłady
C#
Server srv = new Server("(local)");
StringCollection sc = srv.EnumDetachedLogFiles("C:\\Program Files\\Microsoft SQL Server\\MSSQL10_50.MSSQLSERVER\\MSSQL\\DATA\\DetachedDatabase_log.LDF");
foreach (String s in sc)
{
Console.WriteLine(s);
}
PowerShell
$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$sc = $srv.EnumDetachedLogFiles("C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\DATA\DetachedDatabase_log.LDF)
Foreach ($s in $sc)
{
Write-Host $s
}
Zobacz także