ORA-13787: missing SQL profile for statement object “string” for tuning task “string” ORACLE 报错 故障修复 远程处理

文档解释

ORA-13787: missing SQL profile for statement object “string” for tuning task “string”

Cause: The user attempted to accept a SQL profile for an object that has not a SQL profile associated to it.

Action: Check the identifier of the object and retry the operation.

ORA-13787 是Oracle数据库报错代码。

官方解释

ORA-13787:”缺少SQL配置文件(即SQL Profile),用于语句对象”string”的优化任务”string”。

常见案例

此错误通常发生在客户正在试图使用Oracle的优化器库中的SQL Profiles解决性能问题时,但却缺少SQL Profile。

正常处理方法及步骤

1. 确定SQL Profile是否真的缺失:在数据库的library cache中检查当前的SCRIPT是否存在SQL Profile的引用。

2. 使用DBMS_SQLTUNE.IMPORT_SQL_PROFILE将缺少的SQL Profile导入到数据库中。

3. 检查语句对象。

4. 重新运行优化任务,查看SQL Profile是否正确导入。

5. 使用DBMS_SQLTUNE.EVALUATE_SQL_PROFILE检查优化参数是否正确。


数据运维技术 » ORA-13787: missing SQL profile for statement object “string” for tuning task “string” ORACLE 报错 故障修复 远程处理