Description
Clustered index created by a primary key constraint.
Index properties
| name | value |
|---|
| name | [HumanResources].[JobCandidate].[PK_JobCandidate_JobCandidateID]
|
| description | clustered, unique, primary key located on PRIMARY |
| table | JobCandidate
|
| size (kb) | 16
|
| clustered | True
|
| unique | True
|
| fill factor | 0
|
| filegroup | PRIMARY
|
| ignore duplicate keys | False
|
| index key type | DriPrimaryKey
|
| disallowPageLocks | False
|
| disallowRowLocks | False
|
| full text key | True
|
| 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 |
|---|
| JobCandidateID
| ascending | False
| False
|
Dependency graph
Objects that [HumanResources].[JobCandidate].[PK_JobCandidate_JobCandidateID] depends on
| name | object type | database | server | level |
|---|
Code
ALTER TABLE [HumanResources].[JobCandidate] ADD CONSTRAINT [PK_JobCandidate_JobCandidateID] PRIMARY KEY CLUSTERED
(
[JobCandidateID] 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]