ORA-13778: no new name or owner specified for “SQL Tuning Set” ORACLE 报错 故障修复 远程处理
文档解释
ORA-13778: no new name or owner specified for “SQL Tuning Set”
Cause: The user attempted to call remap_stgtab_sqlset without specifying either a new SQL tuning set name or a new SQL tuning set owner
Action: Specify at least one or the other argument as non-NULL
ORA-13778:未为“SQL Tuning Set”指定新名称或所有者
这是一个由Oracle Database在SQL Tuning Set系统中抛出的诊断消息,指示必须为SQL Tuning Set指定新名称或所有者,才能执行定义操作。
此错误主要出现在执行ALTER操作的SQL Tuning Set的情况下。例如,当执行下面的ALTER 语句时:
ALTER sql tuning set “my_sql_tuning_set”;
如果没有指定新名称或新所有者,将会抛出此错误。
正确处理此错误的步骤如下所示:
1.确认当前SQL Tuning Set是否已经存在。
2.指定要修改的新名称或新所有者。
3.使用带值的ALTER语句重新指定SQL Tuning Set的新名称或新所有者,它的值必须是唯一的。
例如:
ALTER sql tuning set “my_new_sql_tuning_set” OWNER “newowner”;