Oracle ORA-00604



--ORA-00604: error occurred at recursive SQL level 1
--ORA-01654: unable to extend index SYS.I_PLSCOPE_SIG_ACTION$ by 128 in tablespace SYSAUX
--00604. 00000 -  "error occurred at recursive SQL level %s"
--*Cause:    An error occurred while processing a recursive SQL statement
--           (a statement applying to internal dictionary tables).
--*Action:   If the situation described in the next error on the stack
--can be corrected, do so; otherwise contact Oracle Support.

ALTER SESSION SET PLSCOPE_SETTINGS = 'IDENTIFIERS:NONE';

show parameter

--plscope_settings
--PL/Scope is a tool that collects data about identifiers in PL/SQL source code at compilation time, and makes this data available in static dictionary views (*_IDENTIFIERS). The identifier data collections is disabled by default. Collection can be set on system, session or per-library unit basis.
--Valid options: identifiers:none, identifiers:all
--Default: identifiers:none

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章