> Oh, this is a SQL 2000 SP3 running on Windows 2000. Upgrading to SP4 isn't
> planned as of yet.
[quoted text clipped - 11 lines]
> >
> > I'm not sure what the next step is. I would appreciate any assistance.
John,
Thanks for the reply. Both links are to the same KB.
The one KB that you reference is for SQL 2000 SP4 only, SP3 doesn't support
the
SupportComputedColumn option.
The indexes are as follows:
IX_index nonclustered, unique located on PRIMARY date, PID
PK_index clustered, unique, primary key located on PRIMARY date, PID
I had tried adding the lines:
SET QUOTED_IDENTIFIER ON
SET ARITHABORT ON
GO
Prior to kicking off the maintplan but it had no effect. Neither of the
indexed
fields are computed. I'll have to take a closer look at the statistics.
> Hi Joe
>
[quoted text clipped - 25 lines]
> > >
> > > I'm not sure what the next step is. I would appreciate any assistance.
John Bell - 31 Dec 2007 15:44 GMT
Hi
Sorry about posting the same link twice, I am not sure what I was supposed
to be pasting there possibly http://support.microsoft.com/kb/301292/
You can certainly drop IX_index.
Setting:
SET QUOTED_IDENTIFIER ON
SET ARITHABORT ON
will have no effect as the process that runs SQLMaint is a separate
connection.
Are there any computed columns in the table, not just the indexed ones?
John
> John,
>
[quoted text clipped - 46 lines]
> > > >
> > > > I'm not sure what the next step is. I would appreciate any assistance.
Joe - 31 Dec 2007 16:32 GMT
John,
There is one computed column. It is a Year computed from Start Date.
That column does a have a statistic related to it. I will have to go back
to the
developers to find out if that statistic is needed so I can see if I can
remove
it before the reindexing starts.
Thanks again for all your assistance.
> Hi
>
[quoted text clipped - 64 lines]
> > > > >
> > > > > I'm not sure what the next step is. I would appreciate any assistance.