Description
Clustered index created by a primary key constraint.
Index properties
| name | value |
|---|
| name | [Purchasing].[ShipMethod].[PK_ShipMethod_ShipMethodID]
|
| description | clustered, unique, primary key located on PRIMARY |
| table | ShipMethod
|
| size (kb) | 8
|
| clustered | True
|
| unique | True
|
| fill factor | 0
|
| filegroup | PRIMARY
|
| ignore duplicate keys | False
|
| index key type | DriPrimaryKey
|
| disallowPageLocks | False
|
| disallowRowLocks | False
|
| full text key | False
|
| on computed | False
|
| on table | True
|
| system named | False
|
| no automatic recomputation | False
|
| pad index | False
|
| sort in tempdb | False
|
| compact large objects | True
|
| disabled | False
|
| partitioned | False
|
| xml index | False
|
| max degree of parallelism | -1
|
| online index operation | False
|
| parent xml index |
|
| secondary xml index type | None
|
| partition scheme |
|
Columns
| name | sort order | computed | included |
|---|
| ShipMethodID
| ascending | False
| False
|
Dependency graph
Objects that [Purchasing].[ShipMethod].[PK_ShipMethod_ShipMethodID] depends on
Code
ALTER TABLE [Purchasing].[ShipMethod] ADD CONSTRAINT [PK_ShipMethod_ShipMethodID] PRIMARY KEY CLUSTERED
(
[ShipMethodID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]