Hello
Greetings...!
I have been checking my systems today and found the following status for some of the tables.
Query using to monitor the reorg status:-
cat reorgstatus.txt
SELECT SUBSTR(TABNAME, 1, 15) AS TAB_NAME, SUBSTR(TABSCHEMA, 1, 15) AS TAB_SCHEMA, REORG_PHASE,DATE(REORG_START), SUBSTR(REORG_TYPE, 1, 20) AS REORG_TYPE, REORG_STATUS, REORG_COMPLETION, DBPARTITIONNUM FROM SYSIBMADM.SNAPTAB_REORG WHERE DATE(REORG_START)='24/06/2010' ORDER BY DBPARTITIONNUM;
It is showing the following status for few tables....
taname1 DICT_SAMPLE 24/06/2010 RECLUSTER+OFFLINE+AL STOPPED FAIL 1
taname1 DICT_SAMPLE 24/06/2010 RECLUSTER+OFFLINE+AL STOPPED FAIL 2
taname1 DICT_SAMPLE 24/06/2010 RECLUSTER+OFFLINE+AL STOPPED FAIL 3
taname1 DICT_SAMPLE 24/06/2010 RECLUSTER+OFFLINE+AL STOPPED FAIL 4
There was some data stage loads and data compression yesterday night...
Is there anybody got any clue about this state DICT_SAMPLE to understand the reorg failure reason...?
Thanks in advance..