Alter Index
Create, alter or drop an index. or unique key. Indexes come in two varieties unique (UniqueKey) and non-unique (Index), you can create, alter, drop, rebuild and analyze them all the same. Indexes are used to improve read performance of the database.
CREATE INDEX IX_LanguageId
(
LanguageId
) ON WordList:WordCREATE UniqueKey IX_Id
(
Id
) ON WordList:WordCREATE INDEX IX_Translation
(
SourceLanguageId,
TargetLanguageId,
) ON WordList:Translation WITH (PARTITIONS = 1000)SQL :: Analyze Index
Analyze or evaluate an indexes physical properties.
SQL::Keywords
A breakdown of all high-level statements available via the query handler.