This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| -- See below for moving a non-clustered file index. Moving a clustered index is the same | |
| -- as moving the data, as each row lives as a leaf somewhere in the index tree. | |
| -- Current syntax for moving a CLUSTERED file index: | |
| PRINT 'Moving PK_dbo.Group index' | |
| CREATE UNIQUE CLUSTERED INDEX | |
| [PK_dbo.Group] | |
| ON | |
| [Group] ( [Id] ) |