Udostępnij za pośrednictwem


Właściwość Table.HasIndex

Pobiera Boolean wartości właściwość, który określa, czy w tabela ma co najmniej jeden indeks.

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

Składnia

'Deklaracja
<SfcPropertyAttribute(SfcPropertyFlags.None Or SfcPropertyFlags.Standalone Or SfcPropertyFlags.SqlAzureDatabase)> _
Public ReadOnly Property HasIndex As Boolean
    Get
'Użycie
Dim instance As Table
Dim value As Boolean

value = instance.HasIndex
[SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Standalone|SfcPropertyFlags.SqlAzureDatabase)]
public bool HasIndex { get; }
[SfcPropertyAttribute(SfcPropertyFlags::None|SfcPropertyFlags::Standalone|SfcPropertyFlags::SqlAzureDatabase)]
public:
property bool HasIndex {
    bool get ();
}
[<SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Standalone|SfcPropertyFlags.SqlAzureDatabase)>]
member HasIndex : bool
function get HasIndex () : boolean

Wartość właściwości

Typ: System.Boolean
A Boolean wartość, która określa, czy jest co najmniej jeden indeks zdefiniowane w tabela.
Jeśli True, istnieje indeks definiowany w tabela.W przeciwnym razie False (domyślnie).

Przykłady

Poniższy przykład kodu pokazuje jak sprawdzić każdą tabela AdventureWorks2008R2 bazy danych, aby sprawdzić, czy ma indeks.

C#

Server srv = new Server("(local)");
Database db = srv.Databases["AdventureWorks2008R2"];

Foreach (Table tb in db.Tables) 
{
   Console.WriteLine("The " + tb.Name + " table has an index:" + tb.HasIndex.ToString());
}

PowerShell

$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$db = New-Object Microsoft.SqlServer.Management.Smo.Database
$db = $srv.Databases.Item("AdventureWorks2008R2")

Foreach ($tb in $db.Tables) 
{
   Write-Host "The" $tb.Name "table has an index:" $tb.HasIndex
}