Sign in with Microsoft
Sign in or create an account.
Hello,
Select a different account.
You have multiple accounts
Choose the account you want to sign in with.

Symptoms

Assume that you run a Rebuild Index task (Maintenance Plan) in Microsoft SQL Server 2012 or SQL Server 2014 and that the index contains one or more XML, varchar(max), nvarchar(max) or varbinary(max) columns. In this situation, the task is performed as an offline operationeven if you’veselected the Keep index online while reindexing checkbox in Maintenance Plan Wizard

Note Microsoft SQL Server 2012 introduces a new feature that allows indexes containing XML, varchar(max), nvarchar(max), and varbinary(max) columns to be created, rebuilt, and dropped as an online operation.

Cause

This issue occurs because Maintenance Plan does not take account of the new feature.

Each new cumulative update for SQL Server contains all the hotfixes and all the security fixes that were included with the previous cumulative update. Check out the latest cumulative updates for SQL Server:


Workaround

To work around this issue, follow these steps:

  1. Open Maintenance Plan in Management tree view node in Object Explorer in SQL Server Management Studio.

  2. Right-click Rebuild Index Task and then click Edit.

  3. Click View T-SQL and then copy the Transact-SQL statement to a plain text file.

  4. Modify the Transact-SQL statement to use online operation, ONLINE=OFF to ONLINE=ON.

  5. Run the Transact-SQL statement or create a new SQL Server Agent T-SQL job for the Transact-SQL statement and then schedule it.

References

For more information about this new feature in SQL Server 2012, see online index create, rebuild, and drop.

Status

Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section.

Need more help?

Want more options?

Explore subscription benefits, browse training courses, learn how to secure your device, and more.

Communities help you ask and answer questions, give feedback, and hear from experts with rich knowledge.

Was this information helpful?

What affected your experience?
By pressing submit, your feedback will be used to improve Microsoft products and services. Your IT admin will be able to collect this data. Privacy Statement.

Thank you for your feedback!

×