ORA-00977: duplicate auditing option
Cause: AUDIT or NOAUDIT statement specifies an option more than once
Action: Either use ALL with no other auditing options or make sure no option is listed more than once.
ORA-00977错误消息指示您试图使用指定的审核选项已经存在的审核选项。
ORA-00977: 重复审计选项
发生此错误的一般原因是试图在启用审核后,再次启用审核选项,它已经存在。
用户试图在启用审核后,添加完成审核选项时可能会出现此错误消息。
1.使用查询检查已审核操作:
SELECT * FROM dba_stmt_audit_opts;
2.删除审核选项:
noaudit 操作 [操作参数];
例如,在终止系统审核后要删除所有操作,您可以运行以下语句:
noaudit all;