Database reference - AdventureWorks2008

AdventureWorks2008 -  indexes -  [HumanResources].[Employee].[IX_Employee_OrganizationLevel_OrganizationNode]

Description

Unique nonclustered index. 

Index properties

namevalue
name[HumanResources].[Employee].[IX_Employee_OrganizationLevel_OrganizationNode] 
descriptionnonclustered located on PRIMARY
tableEmployee 
size (kb)16 
clusteredFalse 
uniqueFalse 
fill factor
filegroupPRIMARY 
ignore duplicate keysFalse 
index key typeNone 
disallowPageLocksFalse 
disallowRowLocksFalse 
full text keyFalse 
on computedTrue 
on tableTrue 
system namedFalse 
no automatic recomputationFalse 
pad indexFalse 
sort in tempdbFalse 
compact large objectsTrue 
disabledFalse 
partitionedFalse 
xml indexFalse 
max degree of parallelism-1 
online index operationFalse 
parent xml index 
secondary xml index typeNone 
partition scheme 

Columns

namesort ordercomputedincluded
OrganizationLevel  ascendingTrue  False 
OrganizationNode  ascendingFalse  False 

Dependency graph

EmployeeIX_Employee_OrganizationLevel_OrganizationNode

Objects that [HumanResources].[Employee].[IX_Employee_OrganizationLevel_OrganizationNode] depends on

nameobject typedatabaseserverlevel

Code

SET ARITHABORT ON
SET CONCAT_NULL_YIELDS_NULL ON
SET ANSI_PADDING ON
SET ANSI_WARNINGS ON
SET NUMERIC_ROUNDABORT OFF
CREATE NONCLUSTERED INDEX [IX_Employee_OrganizationLevel_OrganizationNode] ON [HumanResources].[Employee] 
(
    [OrganizationLevel] ASC,
    [OrganizationNode] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]



Documentation generated by SqlSpec