mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
This separation allows don't pay penalty for each insert during compilation phase. Indexes created at the last step of the compilation process. For profiler application indexes created together with tables.
26 lines
712 B
SQL
26 lines
712 B
SQL
-- Creating non-clustered index for FOREIGN KEY 'FK_AssemblyFileMethod'
|
|
CREATE INDEX [IX_FK_AssemblyFileMethod]
|
|
ON [Methods]
|
|
([AssemblyFileID]);
|
|
|
|
|
|
-- Creating non-clustered index for FOREIGN KEY 'FK_DocumentMethod'
|
|
CREATE INDEX [IX_FK_DocumentMethod]
|
|
ON [Methods]
|
|
([DocumentID]);
|
|
|
|
-- Creating non-clustered index for FOREIGN KEY 'FK_LabelMethod'
|
|
CREATE INDEX [IX_FK_LabelMethod]
|
|
ON [Methods]
|
|
([LabelStartID]);
|
|
|
|
-- Creating non-clustered index for FOREIGN KEY 'FK_LabelMethodEnd'
|
|
CREATE INDEX [IX_FK_LabelMethodEnd]
|
|
ON [Methods]
|
|
([LabelEndID]);
|
|
|
|
|
|
-- Creating non-clustered index for FOREIGN KEY 'FK_MethodIlOpMethod'
|
|
CREATE INDEX [IX_FK_MethodIlOpMethod]
|
|
ON [MethodIlOps]
|
|
([MethodID]);
|