When I add an index in Sybase, is it built automatically or do I need to do something extra? Is there a way to tell?

link|improve this question
feedback

1 Answer

Any DBMS I know does not have any special mechanism to "commit" an index creation.

How to prove that it was created ? Well simply perform an heavy query before and after the index to have been added and see the incredible amount of time difference you have. We are talking of seconds and second, maybe minutes so you don't need any particular tool apart your eyes :)

link|improve this answer
+1. Another way to observe how index creation actually happens is to create index on huge table. It can take hours, and interactive SQL will not accept next statement until create index is complete or fails. – RocketSurgeon Feb 10 '10 at 13:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.