Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
ajbharani
Starting Member
2 Posts |
Posted - 2010-03-17 : 06:08:41
|
HiI am using Windows Server 2003 SP 2 and SQL Server 2005 Enterprise editionI am creating a "Rebuild Index" job for a particular database and I am successfully able to run the job.But when I try to enable the "Keep index online while rebuilding" option, the job does not execute successfully and throws out errors.I have attached the screenshots. Any help would be apphttp://img535.imageshack.us/gal.php?g=error1r.pngThanks. |
|
Kristen
Test
22859 Posts |
Posted - 2010-03-17 : 07:03:37
|
ONLINE indexing is only supported in the Enterprise version (well ... and also the Developer version ).You cannot use ONLINE if your index (or there is an index on the table which) is XML or SPATIAL; nor on Clustered indexes if the table contains LOB data types (image, text, ntext, varchar(max), nvarchar(max), varbinary(max), and XML); nor on Non-clustered indexes that explicitly index LOB data-type columns |
 |
|
Kristen
Test
22859 Posts |
Posted - 2010-03-17 : 07:08:02
|
Does anyone actually index LOB data types? |
 |
|
ajbharani
Starting Member
2 Posts |
Posted - 2010-03-17 : 08:03:57
|
Yeah some of my tables have LOB types. Is there an alternate way to do this? |
 |
|
Kristen
Test
22859 Posts |
Posted - 2010-03-17 : 08:19:04
|
Defrag the indexes, rather than Rebuilding them.Or Rebuild them offline. |
 |
|
|
|
|