Udostępnij za pośrednictwem


Właściwość Table.HasClusteredIndex

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

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 HasClusteredIndex As Boolean
    Get
'Użycie
Dim instance As Table
Dim value As Boolean

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

Wartość właściwości

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

Uwagi

W drzewie b poziom liścia poziom indeks klastrowany jest wiersze danych.

Przykłady

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

C#

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

Foreach (Table tb in db.Tables) 
{
   Console.WriteLine("The " + tb.Name + " table has a clustered index:" + tb.HasClusteredIndex.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 a clustered index:" $tb.HasClusteredIndex
}