February 27, 2013 at 8:35 pm
If I create an INDEX like the following
CREATE NONCLUSTERED INDEX [IX_table_col1_col2] ON [dbo].
(
[col1] ASC,
[col2] ASC
)
WITH (SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = ON) ON [PRIMARY]
How do I check up on it to see when it's 100% completed
February 27, 2013 at 10:06 pm
Jon.Morisi (2/27/2013)
If I create an INDEX like the following
CREATE NONCLUSTERED INDEX [IX_table_col1_col2] ON [dbo].
(
[col1] ASC,
[col2] ASC
)
WITH (SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = ON) ON [PRIMARY]
How do I check up on it to see when it's 100% completed
You'll get the following message when it's completed if you're running this from SSMS... just like any other query.
Command(s) completed successfully.
--Jeff Moden
Change is inevitable... Change for the better is not.
February 27, 2013 at 11:23 pm
Oh, well... I guess it was just too fast for me to believe 🙂
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply