ORA-13755: invalid “SQL Tuning Set” name

文档解释

ORA-13755: invalid “SQL Tuning Set” name

Cause: The user attempted to specify a SQL Tuning Set name that is invalid. A name must not contain wildcards and its length must be less than 30 characters.

Action: Adjust the name and retry the operation.

ORA-13755是一个基于SQL的数据库服务器特定的错误,表示提供的SQL Tuning Set名字无效。SQL Tuning Set是一个保存一个或多个SQL语句和相关的执行环境信息的集合,允许DBA通过定期收集这些SQL,以便使用他们来评价和执行优化。

官方解释

常见案例

正常处理方法及步骤

1.检查您是否有正确指定的SQL Tuning Set名称;

2.使用DBMS_SQLTUNE.CREATE_SQLSET函数,正确创建SQL Tuning Set;

3.使用DBMS_SQLTUNE.EXECUTE_SQLSET函数执行SQL Tuning Set。

你可能感兴趣的