Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This question was a mistake, based on a misconception. Feel free to delete it, or leave it here in case someone else makes a similar mistake!

On a database I have set online rebuilding of some indices via a statement such as the following. My understanding is that the online rebuild setting is a permanent setting of an index i.e. it is not a one time operation. This is the misconception, a rebuild, regardless of how it is run, is a one time operation. Scheduling a regular cleaning is an entirely different topic

ALTER INDEX ALL ON REBUILD WITH (ONLINE = ON);

What I would now like to do is list which indexes do and do not currently have this setting - and I am having difficulty working out how.

So far I have looked at

  • the properties of an index in SQL Server Management Studio
  • the column names in the sys.indexes table
share|improve this question
Rebuilding an index is a single operation, where did you get the information that it's a property of the index? – Pondlife Nov 20 '12 at 14:45
My understanding of the "online" rebuild mode is that it would regularly and automatically tidy up the index if it was fragmented enough to need this. Your comment suggests otherwise :) – Matt T Nov 20 '12 at 14:57
Online rebuilds are an action, not a mode. The documentation I linked to explains more background: indexes are automatically maintained, but they still may require periodic extra maintenance. It's common to schedule a regular task to do this, but that goes beyond the scope of this question and would be better discussed on dba.stackoverflow.com – Pondlife Nov 20 '12 at 15:08

closed as too localized by C. A. McCann, raina77ow, NullPoiиteя, ecatmur, Steve Nov 20 '12 at 18:53

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.