Index.IsUnique Property
Gets or sets the Boolean property value that specifies whether the index is unique or not.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
<SfcPropertyAttribute(SfcPropertyFlags.ReadOnlyAfterCreation)> _
Public Property IsUnique As Boolean
Get
Set
'Usage
Dim instance As Index
Dim value As Boolean
value = instance.IsUnique
instance.IsUnique = value
[SfcPropertyAttribute(SfcPropertyFlags.ReadOnlyAfterCreation)]
public bool IsUnique { get; set; }
[SfcPropertyAttribute(SfcPropertyFlags::ReadOnlyAfterCreation)]
public:
property bool IsUnique {
bool get ();
void set (bool value);
}
[<SfcPropertyAttribute(SfcPropertyFlags.ReadOnlyAfterCreation)>]
member IsUnique : bool with get, set
function get IsUnique () : boolean
function set IsUnique (value : boolean)
Property Value
Type: System.Boolean
A Boolean value that specifies whether the index is unique or not.
If True, the index is unique.
If False (default), the index is not unique.
Remarks
This property cannot be modified by using the Alter() method. To change the property, the index must be rebuilt or re-created.
See Also