by zgh1970 <george.zhang@[EMAIL PROTECTED]
>
May 1, 2008 at 11:32 AM
On May 1, 1:39=A0pm, Patrick Finnegan <finnegan.patr...@[EMAIL PROTECTED]
>
wrote:
> Tables may be reorg pending or "set integrity pending". =A0Can I run a
> script to determine the status of a table?
you can
select status from syscat.tables where status<>'N';
'C' means check pending. you need to set integrity.
For the reorg, you can use
db2 list utilities to find the table in reorg.
thanks,