今日在自己的电脑上舞弄oracle的时候,用命令起oracle.突然间报错如下:
[color=red]ORA-32004: obsolete and/or deprecated parameter(s) specified[/color]
晕,不知道是什么原因导致的?随即网上一查,原来是改动了某些过时参数所致:
本来一直在用9i,但11G已经推出了,岂能不学习学习?
9i版本时,习惯性的执行
alter database archivelog;
再执行
alter system set log_archive_start=true scope=spfile;
后在网上一查10后,log_archive_start参数已作废了。就是说
执行alter database archivelog后,数据库将自动启动原来还需手动设置的参数
log_archive_start了。而且如果你改了这个参数后,发现了原因,即时改回去
alter system set log_archive_start=false scope=spfile;
Orale以后每次启动仍将会报
[color=red]ORA-32004: obsolete and/or deprecated parameter(s) specified[/color]
郁闷,因为数据库还是默认该参数被启用过。 :(
[color=red]ORA-32004: obsolete and/or deprecated parameter(s) specified[/color]
晕,不知道是什么原因导致的?随即网上一查,原来是改动了某些过时参数所致:
本来一直在用9i,但11G已经推出了,岂能不学习学习?
9i版本时,习惯性的执行
alter database archivelog;
再执行
alter system set log_archive_start=true scope=spfile;
后在网上一查10后,log_archive_start参数已作废了。就是说
执行alter database archivelog后,数据库将自动启动原来还需手动设置的参数
log_archive_start了。而且如果你改了这个参数后,发现了原因,即时改回去
alter system set log_archive_start=false scope=spfile;
Orale以后每次启动仍将会报
[color=red]ORA-32004: obsolete and/or deprecated parameter(s) specified[/color]
郁闷,因为数据库还是默认该参数被启用过。 :(