Table analyzed
 
ANALYZE TABLE WMSYS.WM$EVENT_QUEUE_TABLE COMPUTE STATISTICS
 
ORA-38029: 对象统计信息已锁定
 
Table analyzed
 
ANALYZE TABLE WMSYS.SYS_IOT_OVER_10151 COMPUTE STATISTICS
 
ORA-25191: 无法引用索引表的溢出表
 
Table analyzed
不明白,其中的原理
 

解决方案 »

  1.   

    WM_SYS schema是未公开的。统计信息都已锁定。
    虽然可以使用DBMS_STATS包来解锁,但最好别这样做。
    另外数据字典表都不能analyze的。
      

  2.   

    重复发帖了!ORA-38029: object statistics are locked
    有人把table的statistics lock住了,解决方法
    1.unlock table statistics,再收集统计信息
    2.收集统计信息的时候加force=>yStatistics for a table or schema can be locked. Once statistics are locked, no modifications can be made to those statistics until the statistics have been unlocked. These locking procedures are useful in a static environment in which you want to guarantee that the statistics never change.The DBMS_STATS package provides two procedures for locking and two procedures for unlocking statistics:
    LOCK_SCHEMA_STATS
    LOCK_TABLE_STATS
    UNLOCK_SCHEMA_STATS
    UNLOCK_TABLE_STATS