ORA-32004: obsolete and/or deprecated parameter(s) specified

2024-01-15 10:38

本文主要是介绍ORA-32004: obsolete and/or deprecated parameter(s) specified,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1.启动数据库的时候发现如下错误提示:原因是使用了不推荐的或者已经废弃的参数(deprecated
SQL> startup
ORA-32004: obsolete and/or deprecated parameter(s) specified
ORACLE instance started.Total System Global Area  285212672 bytes
Fixed Size                  1218968 bytes
Variable Size              88082024 bytes
Database Buffers          188743680 bytes
Redo Buffers                7168000 bytes
Database mounted.
Database opened.

2.查看错误日志:
SQL> host oerr ora 32004
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 server 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.

3.根据错误提示:查看警告日志
到oracle_home 的admin文件夹下:
[oracle@localhost bdump]$ more alert_orclsid.log 
.....
Starting up ORACLE RDBMS Version: 10.2.0.1.0.
System parameters with non-default values:processes                = 150__shared_pool_size       = 109051904__large_pool_size        = 4194304__java_pool_size         = 4194304__streams_pool_size      = 0sga_target               = 285212672control_files            = /home/oracle/oracle/product/10.2.0/oradata/orcl/con
trol01.ctl, /home/oracle/oracle/product/10.2.0/oradata/orcl/control02.ctl, /home
/oracle/oracle/product/10.2.0/oradata/orcl/control03.ctldb_block_size            = 8192__db_cache_size          = 159383552compatible               = 10.2.0.1.0log_archive_start        = TRUEdb_file_multiblock_read_count= 32db_recovery_file_dest    = /home/oracle/oracle/product/10.2.0/flash_recovery_a
rea/db_recovery_file_dest_size= 2147483648undo_management          = AUTOundo_tablespace          = UNDOTBS1remote_login_passwordfile= EXCLUSIVEdb_domain                = dispatchers              = (PROTOCOL=TCP) (SERVICE=orclsidXDB)job_queue_processes      = 10background_dump_dest     = /home/oracle/oracle/product/10.2.0/db_1/admin/orcl/
bdumpuser_dump_dest           = /home/oracle/oracle/product/10.2.0/db_1/admin/orcl/
udumpcore_dump_dest           = /home/oracle/oracle/product/10.2.0/db_1/admin/orcl/
cdumpaudit_file_dest          = /home/oracle/oracle/product/10.2.0/db_1/admin/orcl/
adumpdb_name                  = orclopen_cursors             = 300star_transformation_enabled= TRUEpga_aggregate_target     = 94371840
Deprecated system parameters with specified values:log_archive_start        
End of deprecated system parameter listing
.....

4.查询到如下信息:
Deprecated system parameters with specified values:log_archive_start 

原来在oracle中 log_archive_start已经是deprecated的:

5.可以查询表:SELECT NAME, DESCRIPTION FROM V$PARAMETER WHERE ISDEPRECATED = 'TRUE';
来查看已经Deprecated的参数:
1	lock_name_space	lock name space used for generating lock names for standby/clone database
2	buffer_pool_keep	Number of database blocks/latches in keep buffer pool
3	buffer_pool_recycle	Number of database blocks/latches in recycle buffer pool
4	max_commit_propagation_delay	Max age of new snapshot in .01 seconds
5	remote_archive_enable	remote archival enable setting
6	log_archive_start	start archival process on SGA initialization
7	parallel_server	if TRUE startup in parallel server mode
8	parallel_server_instances	number of instances to use for sizing OPS SGA structures
9	fast_start_io_target	Upper bound on recovery reads
10	logmnr_max_persistent_sessions	maximum number of threads to mine
11	serial_reuse	reuse the frame segments
12	max_enabled_roles	max number of roles a user can have enabled
13	global_context_pool_size	Global Application Context Pool Size in Bytes
14	plsql_compiler_flags	PL/SQL compiler flags
15	sql_trace	enable SQL trace
16	parallel_automatic_tuning	enable intelligent defaults for parallel execution parameters
17	drs_start	start DG Broker monitor (DMON process)

6.使用下列命令来重置参数:
SQL> alter system reset log_archive_start scope=spfile sid='*';System altered.

7.重启数据库,就不会再有提示了:

SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup
ORACLE instance started.Total System Global Area  285212672 bytes
Fixed Size                  1218968 bytes
Variable Size              92276328 bytes
Database Buffers          184549376 bytes
Redo Buffers                7168000 bytes
Database mounted.
Database opened.

这篇关于ORA-32004: obsolete and/or deprecated parameter(s) specified的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/608605

相关文章

ora-01017 ora-02063 database link,oracle11.2g通过dblink连接oracle11.2g

错误图示: 问题解决 All database links, whether public or private, need username/password of the remote/target database. Public db links are accessible by all accounts on the local database, while private

瑞芯微Parameter File Format解析

Rockchip android系统平台使用parameter文件来配置一些系统参数 主要包含:串口号:nandflash分区 固件版本,按键信息等; 如下是台电P98HD的parameter参数: FIRMWARE_VER:4.1.1        // 固件版本 //固件版本,打包 updata.img 时会使用到,升级工具会根据这个识别固件版本。 //Boot loader 会读取

ORA-25150:不允许对区参数执行ALTERING

在用PL/SQL工具修改表存储报错: 百度一下找到原因: 表空间使用本地管理,其中的表不能修改NEXT MAXEXTENTS和PCTINCREASE参数 使用数据自动管理的表空间,其中的表可以修改NEXT MAXEXTENTS和PCTINCREASE参数

ORA-01861:文字与格式字符串不匹配

select t.*, t.rowid from log_jk_dtl t; insert into log_jk_dtl (rq,zy,kssj,jssj,memo)  values (to_date(sysdate,'yyyy-mm-dd'),'插入供应商', to_char(sysdate,'hh24:mi:ss'),to_char(sysdate,'hh24:mi:ss'),'备注'

利用PL/SQL工具连接Oracle数据库的时候,报错:ORA-12638: 身份证明检索失败的解决办法

找到相对应的安装目录:比如:E:\oracle\product\10.2.0\client_1\NETWORK\ADMIN 在里面找到:SQLNET.AUTHENTICATION_SERVICES= (NTS) 将其更改为:SQLNET.AUTHENTICATION_SERVICES= (BEQ,NONE) 或者注释掉:#SQLNET.AUTHENTICATION_SERVICES= (N

ORA-00600 [1880]

-----环境信息 [oracle@trsen02 bdump]$ uname -a Linux trsen02.yto.com 2.6.18-194.el5 #1 SMP Tue Mar 16 21:52:39 EDT 2010 x86_64 x86_64 x86_64 GNU/Linux SQL> select * from v$version; BANNER ----

ORA-31626/ORA-31638/ORA-39077/ORA-6502

导数据遇到ORA-31626/ORA-31638/ORA-39077/ORA-6502 报错信息如下: [oracle@vm010148 ~]$ expdp system/oracle directory=dir dumpfile=full.dmp logfile=full.log Export: Release 11.2.0.3.0 - Production on Sun Sep

ORA-00600 [504]

ALERT日志: Wed Sep 10 09:00:53 2014 Errors in file /u01/app/oracle/diag/rdbms/trsendb/trsendb2/trace/trsendb2_ora_40371414.trc  (incident=821340): ORA-00600: internal error code, arguments: [504],

【oracle sql错误】ORA-01795: 列表中的最大表达式数为 1000

select SOURCE_ID,FILTER_TEXT from TEXT_CENTER where SOURCE_ID in() in后面的括号里的数目超过1000条。 问题描述: SQL进行IN查询时,IN中的数据量不能超过1000条。 解决办法: 拆分:id in (1,2,3,4,5,,,,999) or id in(1000,1001,1002,1003,1004,,,,,,

Oracl查询报错:ORA-29275: 部分多字节字符

报错描述 --使用oracl的sql查询时候,此sql无误:SELECT DISTINCT MS_BRDA.MZHM as patientId,MS_BRDA.BRXM as name,CASEWHEN MS_BRDA.BRXB = 1 THEN '男'WHEN MS_BRDA.BRXB = 2 THEN '女'ELSE '未知'END