文档解释 ORA-02404: specified plan table not found Cause: The specified plan table does cannot be found. Action: Create the
ORA-02404: specified plan table not found
Cause: The specified plan table does cannot be found.
Action: Create the specified plan table or use an existing plan table.
ORA-02404错误发生,是指指定的计划表未找到。
该错误表示指定的计划表不存在。执行以下操作以检查是否存在指定的计划表:
1.使用sql*Plus登录:
SQL> CONNECT / AS sysdba
2.查找指定的计划表:
SQL> SELECT table_name FROM dba_tables WHERE owner in (‘SYS’) AND table_name = ‘PLAN_TABLE’;
3.如果没有找到指定的PLAN_TABLE,可以创建PLAN_TABLE:
SQL> @$oracle_HOME/rdbms/admin/utlxplan.sql;
ORA-02404常见于执行EXPLaiN PLAN语句时引发,因为缺少PLAN_TABLE表。
1.确认数据库的字符集是否支持创建PLAN_TABLE表。
2.确认用户是否拥有CREATE TABLE权限。
3.确保字符集utf8及排序规则是正确的;
4.使用$ORACLE_HOME/rdbms/admin/utlxplan.sql脚本创建PLAN_TABLE表。
--结束END--
本文标题: ORA-02404: specified plan table not found ORACLE 报错 故障修复 远程处理
本文链接: https://lsjlt.com/news/526813.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0