Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • 07:00 (Patrick) I've rebuilt the TA tables with current data and the synonyms now point there. The job completed at 7am.
  • 12:20 (Prabhu) I disable monitor when tables dropped and enable when new ones created as below.
    • No Format
      
      ---Enable monitoring
      SQL> alter index sakai_external.CM_INST_TA_PERSON_IDX monitoring usage;
      Index altered.
      SQL> alter index sakai_external.CM_SECTION_TA_EID_IDX monitoring usage;
      Index altered.
      SQL> select index_name, table_name, monitoring, used, end_monitoring from v$object_usage;
      no rows selected
      
      ---Disable monitoring
      alter index sakai_external.CM_INST_TB_PERSON_IDX nomonitoring usage;
      alter index sakai_external.CM_SECTION_TB_EID_IDX nomonitoring usage;
      

Saturday 10-06-2007

  • 06:58 (Patrick) I switched to the recreated TB tables. The job started at 6:58am and completed at 7:06.
    • I checked the problem query on both the TA and TB tables and it looks like the indexes are still being used.
    • I noticed that there are 151 pairs of duplicate EID's in the SECTION table. Have we considered changing the view to weed those out?
  • 24:00 (Oracle) run stats

...