obsolete and/or deprecated parameter(s) specified

obsolete and/or deprecated parameter(s) specified


SQL> startup
ORA-32004: obsolete and/or deprecated parameter(s) specified
ORACLE instance started.

Total System Global Area  599785472 bytes
Fixed Size              2098112 bytes
Variable Size            322964544 bytes
Database Buffers       268435456 bytes
Redo Buffers              6287360 bytes
Database mounted.
Database opened.



SQL>show paramter log_arcvhive_start
NAME                         TYPE     VALUE
------------------------------------ ----------- ------------------------------
log_archive_start               boolean     TRUE
解决方法:
10g中丢弃了log_arvhive_start 参数 不能置为true

SQL> alter system reset log_archive_start scope=spfile sid='*';

System altered.

SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.

SQL> startup
ORACLE instance started.

Total System Global Area  599785472 bytes
Fixed Size              2098112 bytes
Variable Size            322964544 bytes

Database Buffers       268435456 bytes
Redo Buffers              6287360 bytes
Database mounted.
Database opened.


------------------服务名不识别
原因:用户不对,没有在sysdba用户下建立DB_LINK连接

SQL> select * from dual@jssweb;
select * from dual@jssweb
                   *
ERROR at line 1:
ORA-02019: connection description for remote database not found

conn stradmin/stradmin  
OK  ------------------------> OK

你可能感兴趣的:(obsolete and/or deprecated parameter(s) specified)