启动自动归档模式,通过设置 log_archive_start 并不会起到自动归档的作用反而启动时会报出ORA- 32004: obsolete and/or deprecated parameter(s) specified,操作如下(测试数据库已是自动归 档模式)该方式适合9i数据库开通数据库归档和自动归档模式。查看错误代码相关信息:
- SQL> host oerr ora 12154
-
- 32004, 00000, "obsolete and/or deprecated parameter(s) specified"
- // *Cause: One or more obsolete and/or parameters were specified in
- // the SPFILE or the PFILE on the side.
- // *Action: See alert log for a list of parameters that are obsolete.
- // or deprecated. Remove them from the SPFILE or the server
- // side PFILE.
- SQL>
告诉我们去 alert log 中查看信息。查找...Deprecated system parameters with specified values:log_archive_startEnd of deprecated system parameter listingSQL>ALTER SYSTEM RESET log_archive_start SCOPE=SPFILE SID="*"; 查看一下 10g 中都有那些参数是 deprecated 的:
- SQL> SELECT NAME, description
- FROM v$parameter
- WHERE isdeprecated = "TRUE";
hash partition 平衡分布数据的测试Python自动创建MySQL的从库脚本相关资讯 Oracle错误代码
- Oracle错误代码大全 (02/16/2015 21:31:57)
- Oracle中登陆时报ORA-28000: the (03/06/2013 20:06:23)
- Oracle 11g startup时报ORA-03113 (02/21/2013 17:25:55)
| - Oracle Grid Control OUI-25031错 (03/09/2013 09:01:36)
- ORA-04091:触发器/函数不能读 (02/25/2013 08:28:13)
- Oracle错误 ORA-12514 解决方法 (02/18/2013 08:50:10)
|
本文评论 查看全部评论 (0)