Deprecated parameter when enabling archivelog

Hi all,
11gR1
I want to enable archivelog. So I set the ff:
SQL> alter system set log_archive_start=TRUE scope=spfile;
System altered.
SQL> alter system set log_archive_dest_1='location=c:\oracle\apexdb\archivelog' scope=spfile;
System altered.
SQL> shutdown immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup
ORA-32004: obsolete and/or deprecated parameter(s) specified
ORACLE instance started.
Why is this obsolete error? and which parameter is obsolete? the log_archive_dest_1?
Thanks....

867699 wrote:
Hi,
I'm a beginner. I've gone through this thread. But i have a doubt. I don't have an Sp file ..how can i fix it with only p file.
Pls help.
ThnksThen you don't need the step to create a pfile from spfile. You are starting with the pfile, just as if you had created it from spfile.
But after making the correction in your pfile, you really should make an spfile and start using it instead.
1) make a backup copy of the pfile
2) make whatever modifications you need to the pfile
3) set ORACLE_SID
4) sqlplus / as sysdba
5) create spfile from pfile='nameofyourpfile';
6) startup
All this can be done from an idle instance - no need to be bouncing around from nomount, mount, startup, etc. See this:
First, the contents of my dbs directory. Notice the init file initHOUSTON.ora, but there is no spfile (I renamed it to spfileHOUSTON.bak to get it out of the way)
[oracle@vmlnx01 dbs]$ pwd
/ora00/app/oracle/product/10.2.0/db_1/dbs
[oracle@vmlnx01 dbs]$ ls -l
total 6960
-rw-rw---- 1 oracle oinstall    1544 May 21 18:56 hc_HOUSTON.dat
-rw-r--r-- 1 oracle oinstall   12920 May  3  2001 initdw.ora
-rw-r--r-- 1 oracle oinstall    1691 Jun 22 15:00 initHOUSTON.ora
-rw-r----- 1 oracle oinstall    8385 Sep 11  1998 init.ora
-rw-rw---- 1 oracle oinstall      24 May 21 18:56 lkHOUSTON
-rw-r----- 1 oracle oinstall    1536 Jun 21 10:59 orapwHOUSTON
-rw-r----- 1 oracle oinstall 7061504 May 22 18:49 snapcf_HOUSTON.f
-rw-r----- 1 oracle oinstall    4608 Jun 22 11:56 spfileHOUSTON.bakSo check ORACLE_SID
[oracle@vmlnx01 dbs]$ echo $ORACLE_SID
HOUSTONThen connect as sysdba. Notice we connect to an idle instance, meaning we know it is HOUSTON, but it is not started, not even to NOMOUNT
[oracle@vmlnx01 dbs]$ sqlplus / as sysdba
SQL*Plus: Release 10.2.0.4.0 - Production on Wed Jun 22 15:13:41 2011
Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
Connected to an idle instance.and in this idle instance we can go ahead and create the spfile. No need to be in NOMOUNT or MOUNT
SQL> create spfile from pfile='initHOUSTON.ora';
File created.shell out and see the directory to confirm we create the spfile
SQL> !ls -l
total 6968
-rw-rw---- 1 oracle oinstall    1544 May 21 18:56 hc_HOUSTON.dat
-rw-r--r-- 1 oracle oinstall   12920 May  3  2001 initdw.ora
-rw-r--r-- 1 oracle oinstall    1691 Jun 22 15:00 initHOUSTON.ora
-rw-r----- 1 oracle oinstall    8385 Sep 11  1998 init.ora
-rw-rw---- 1 oracle oinstall      24 May 21 18:56 lkHOUSTON
-rw-r----- 1 oracle oinstall    1536 Jun 21 10:59 orapwHOUSTON
-rw-r----- 1 oracle oinstall 7061504 May 22 18:49 snapcf_HOUSTON.f
-rw-r----- 1 oracle oinstall    4608 Jun 22 11:56 spfileHOUSTON.bak
-rw-r----- 1 oracle oinstall    4608 Jun 22 15:13 spfileHOUSTON.oraNow, from the idle instance do a full startup
SQL> startup
ORACLE instance started.
Total System Global Area  285212672 bytes
Fixed Size    1267068 bytes
Variable Size  155191940 bytes
Database Buffers  125829120 bytes
Redo Buffers    2924544 bytes
Database mounted.
Database opened.and check that we used the spfile we just created
SQL> show parameter spfile
NAME     TYPE VALUE
spfile     string /ora00/app/oracle/product/10.2
.0/db_1/dbs/spfileHOUSTON.ora
SQL> exit
Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
[oracle@vmlnx01 dbs]$ exit
logout

Similar Messages

  • Unable to enable archivelog mode and flashback mode

    Hi,
    I have oracle10g installed on Linux machine.
    Everytime i try to enable ARCHIVELOG mode and FLASHBACK through the DB EM console and during the restart of the database, the database just startup and gets mounted, but does not get open. and not able to get the database to archive log mode.
    and when i startup the database through the sqlplus i get this following error:
    ORA-32004: obsolete and/or deprecated parameter(s) specified
    i am not able to enable successfully archive log mode and flashback mode.
    in sqlplus i did the following and got the following:
    SQL> archive log list;
    Database log mode No Archive Mode
    Automatic archival Disabled
    Archive destination USE_DB_RECOVERY_FILE_DEST
    Oldest online log sequence 13585
    Current log sequence 13587
    so i was thinking maybe it is the archive log start sequence that is creating error.
    because long back i had the database in archive log mode and because the archive log files got filled up, i disabled the archive mode and had to delete the archive log files.
    Can someone help me bring the database in archive log mode which i am not able to successfully execute.
    Thanks in advance,
    Philip.

    Hi,
    yes i looked in to the init.ora file and i got this
    orcl.__db_cache_size=1308622848
    orcl.__java_pool_size=167772160
    orcl.__large_pool_size=16777216
    orcl.__shared_pool_size=167772160
    orcl.__streams_pool_size=16777216
    *.audit_file_dest='/home/oracle/oracle/admin/orcl/adump'
    *.background_dump_dest='/home/oracle/oracle/admin/orcl/bdump'
    *.compatible='10.2.0.1.0'
    *.control_files='/u01/oradata/orcl/control01.ctl','/u01/oradata/orcl/control02.ctl','/u01/oradata/orcl/control03.ctl'
    *.core_dump_dest='/home/oracle/oracle/admin/orcl/cdump'
    *.db_block_size=8192
    *.db_domain='mslabs.noaa.gov'
    *.db_file_multiblock_read_count=16
    *.db_name='orcl'
    *.db_recovery_file_dest='/u02/flash_recovery_area'
    *.db_recovery_file_dest_size=64424509440
    *.dispatchers='(PROTOCOL=TCP) (SERVICE=orclXDB)'
    *.java_pool_size=159383552
    *.job_queue_processes=10
    *.open_cursors=300
    *.pga_aggregate_target=562036736
    *.processes=150
    *.log_archive_start=FALSE
    *.remote_login_passwordfile='EXCLUSIVE'
    *.sga_target=1687158784
    *.shared_pool_size=157286400
    *.undo_management='AUTO'
    *.undo_tablespace='UNDOTBS1'
    *.user_dump_dest='/home/oracle/oracle/admin/orcl/udump'
    and there is a
    *.log_archive_start=false
    so do i have to delete it?
    Thanks,
    Philip.

  • What reason ORA-32004: obsolete and/or deprecated parameter(s) specified  ?

    Hi
    ORA-32004: obsolete and/or deprecated parameter(s) specified
    Whenever i changed my test database from noarchive log mode to archive log mode, after i changed ,i startup database the above error occured.
    following steps i do it,
    SQL> archive log list;
    Database log mode           No Archive Mode
    Automatic archival           Disable
    Archive destination:           c:\oracle\ora90\rdbms
    Oldest on-line log sequence     0
    Next log sequence           0
    Current log sequence           0
    Change your database No Archive mode to Archive mode
    Your Database must in mount stage
    SQL>shutdown immediate
    SQL>startup mount
    SQL> archive log list;
    Database log mode           No Archive Mode
    Automatic archival           Disable
    Archive destination:           c:\oracle\ora90\rdbms
    Oldest on-line log sequence     0
    Next log sequence           0
    Current log sequence           0
    SQL> alter database archivelog;
    Database altered.
    SQL> archive log list;
    Database log mode           Archive Mode
    Automatic archival           Disable
    Archive destination:           c:\oracle\ora90\rdbms
    Oldest on-line log sequence     0
    Next log sequence           0
    Current log sequence           0
    SQL>alter database open;
    SQL>archive log list
    Database log mode           Archive Mode
    Automatic archival           Disable
    Archive destination:           c:\oracle\ora90\rdbms
    Oldest on-line log sequence      0
    Next log sequence           0
    Current log sequence           0
    Automatic archival – Disable (the database archive mode but automatic
    archival disable
    So datas not archive.you must enable the automatic archival)
    SQL>archive log start; (session level only enabled not instance level)
    SQL> archive log list;
    Database log mode           Archive Mode
    Automatic archival           Enable
    Archive destination:           c:\oracle\ora90\rdbms
    Oldest on-line log sequence     0
    Next log sequence           0
    Current log sequence           0
    If you want set instance level you change in parameter file
    SQL>show parameter log_archive_start
    Name                    Type           Value
    log_archive_start boolean      FALSE
    SQL>alter system set log_archive_start=true scope=spfile
    System altered.
    SQL>shut immediate
    SQL>startup
    ORA-32004: obsolete and/or deprecated parameter(s) specified
    Database open.
    sql>
    But i resolved the problem
    I want know the reason why the above error occured
    database version : 10g
    os : xp ( my laptop) Not office database
    Regards
    S.Azar
    DBA

    >
    SQL>alter system set log_archive_start=true scope=spfile
    System altered.
    SQL>shut immediate
    SQL>startup
    ORA-32004: obsolete and/or deprecated parameter(s) specified
    >
    Precisely that parameter LOG_ARCHIVE_START is obsolete in 10g. You also don't need to enable the archiving with
    archive log start
    Simply changing into archive mode also brings up archiver processes since 10g :-)
    Kind regards
    Uwe
    http://uhesse.wordpress.com

  • Deprecated parameter PLSQL_DEBUG

    I am compliling a procedure using 11g. I get two warnings:
    Warning(1): PLW-06013: deprecated parameter PLSQL_DEBUG forces PLSQL_OPTIMIZE_LEVEL <= 1
    Warning(1): PLW-06015: parameter PLSQL_DEBUG is deprecated; use PLSQL_OPTIMIZE_LEVER = 1
    What does this mean? Should I do as suggested or should I look for something wrong with my code?

    I had a quick play with this but couldn't reproduce it in 11.2.0.1.
    SQL> alter session set plsql_warnings='enable:all';
    SQL> alter package testit compile plsql_debug=true;
    SP2-0809: Package altered with compilation warnings
    SQL> show errors package testit;
    Errors for PACKAGE TESTIT:
    LINE/COL   ERROR
    0/0        PLW-06013: deprecated parameter PLSQL_DEBUG forces PLSQL_OPTIMIZE_LEVEL <= 1
    0/0        PLW-06015: parameter PLSQL_DEBUG is deprecated; use PLSQL_OPTIMIZE_LEVEL = 1So far so good. But then the issue goes away when I recompile.
    SQL> alter package testit compile;
    Package altered.
    SQL> show errors package testit;
    No errors.I tried setting PLSQL_DBUG at the session level, but still no warnings:
    SQL> alter session set plsql_ccflags = 'PLSQL_DEBUG:TRUE';
    Session altered.
    SQL> alter package testit compile;
    Package altered.
    SQL> show errors package testit;
    No errors.Wondering what I'm missing - perhaps some session or package-level setting that retains the compilation parameter?
    Anything odd in user_plsql_object_settings for the package?

  • ORA-32004: obsolete and/or deprecated parameter(s) specifiedORACLE instance

    Hi friends,
    i am trying to install BIW 3.0b (win-2000, oracle 9.2.0.1.0 (patch 9.1.0.4.1)& j2sdk 1_4_1)
    while installing database instance i am getting this problem.
    INFO 2007-09-26 15:57:09
    Copying file C:/SAPinst ORACLE KERNEL/keydb.xml to: C:/SAPinst ORACLE KERNEL/keydb.1.xml.
    INFO 2007-09-26 15:57:09
    Creating file C:\SAPinst ORACLE KERNEL\keydb.1.xml.
    INFO 2007-09-26 15:58:14
    Processing of host operation t_HostInfo_SHARED succeeded.
    INFO 2007-09-26 15:58:35
    The 'saploc' share exists at directory 'E:\usr\sap'. Choosing drive E: as SAP System drive.
    INFO 2007-09-26 16:00:26
    Copying file C:/dump/export1/DB/ORA/DBSIZE.XML to: DBSIZE.XML.
    INFO 2007-09-26 16:00:26
    Creating file C:\SAPinst ORACLE KERNEL\DBSIZE.XML.
    INFO 2007-09-26 16:00:26
    Copying file system node C:\dump\export1/DB/ORA/DBSIZE.XML with type NODE to DBSIZE.XML succeeded.
    INFO 2007-09-26 16:00:26
    Processing of all file system node operations of table tORA_filecopy succeeded.
    INFO 2007-09-26 16:00:26
    Copying file C:/SAPinst ORACLE KERNEL/DBSIZE.XML to: C:/SAPinst ORACLE KERNEL/DBSIZE.1.XML.
    INFO 2007-09-26 16:00:26
    Creating file C:\SAPinst ORACLE KERNEL\DBSIZE.1.XML.
    INFO 2007-09-26 16:00:26
    Copying file C:/dump/export1/DB/DDLORA.TPL to: DDLORA.TPL.
    INFO 2007-09-26 16:00:26
    Creating file C:\SAPinst ORACLE KERNEL\DDLORA.TPL.
    INFO 2007-09-26 16:00:26
    Copying file system node C:\dump\export1/DB/DDLORA.TPL with type NODE to DDLORA.TPL succeeded.
    INFO 2007-09-26 16:00:26
    Processing of all file system node operations of table tORA_filecopy succeeded.
    INFO 2007-09-26 16:00:33
    Moving file C:/SAPinst ORACLE KERNEL/DDLORA.TPL to: orig_ddl_ora_tmp.tpl.
    INFO 2007-09-26 16:00:33
    Moving file C:/SAPinst ORACLE KERNEL/changed_ddl_ora_tmp.tpl to: DDLORA.TPL.
    INFO 2007-09-26 16:00:33
    Removing file C:/SAPinst ORACLE KERNEL/orig_ddl_ora_tmp.tpl.
    INFO 2007-09-26 16:02:00
    Package table created
    PHASE 2007-09-26 16:02:10
    SAP Business WareHouse
    PHASE 2007-09-26 16:02:10
    SAP Web Application Server
    PHASE 2007-09-26 16:02:10
    Request common parameters of SAP System
    PHASE 2007-09-26 16:02:10
    Create operating system accounts
    INFO 2007-09-26 16:02:10
    Changing account ACCOUNTID=S-1-5-21-1844237615-963894560-725345543-1004 ACCOUNTNAME=biwdev\SAP_LocalAdmin ACCOUNTTYPE=GROUP DESCRIPTION=SAP Local Administration Group MEMBERSHIPSEPARATOR=, OPMODE=CREATE  succeeded.
    INFO 2007-09-26 16:02:10
    Changing account ACCOUNTID=S-1-5-21-1844237615-963894560-725345543-1005 ACCOUNTNAME=biwdev\SAP_BWD_LocalAdmin ACCOUNTTYPE=GROUP DESCRIPTION=SAP Local Administration Group MEMBERSHIPSEPARATOR=, OPMODE=CREATE  succeeded.
    INFO 2007-09-26 16:02:10
    Changing account ACCOUNTID=S-1-5-21-1844237615-963894560-725345543-1006 ACCOUNTNAME=biwdev\SAP_BWD_GlobalAdmin ACCOUNTTYPE=GROUP DESCRIPTION=SAP Global Administration Group MEMBERSHIPSEPARATOR=, OPMODE=CREATE  succeeded.
    INFO 2007-09-26 16:02:10
    Changing account ACCOUNTID=S-1-5-21-1844237615-963894560-725345543-1007 ACCOUNTNAME=ORA_BWD_DBA ACCOUNTTYPE=GROUP CONDITION=YES DESCRIPTION=Database Operator Group MEMBERSHIPSEPARATOR=, OPMODE=CREATE  succeeded.
    INFO 2007-09-26 16:02:10
    Changing account ACCOUNTID=S-1-5-21-1844237615-963894560-725345543-1008 ACCOUNTNAME=ORA_BWD_OPER ACCOUNTTYPE=GROUP CONDITION=YES DESCRIPTION=Database Administration Group MEMBERSHIPSEPARATOR=, OPMODE=CREATE  succeeded.
    INFO 2007-09-26 16:02:10
    Processing of all account operations of table t_SAPComponent_Accounts_Accounts_SHARED succeeded (operation CREATE).
    INFO 2007-09-26 16:02:15
    Changing account ACCOUNTID=S-1-5-21-1844237615-963894560-725345543-1009 ACCOUNTNAME=biwdev\bwdadm ACCOUNTTYPE=USER DESCRIPTION=SAP System Administrator MEMBERSHIP=biwdev\SAP_BWD_GlobalAdmin,biwdev\Users,Administrators,ORA_BWD_DBA,ORA_BWD_OPER,biwdev\SAP_LocalAdmin,biwdev\SAP_BWD_LocalAdmin MEMBERSHIPSEPARATOR=, OPMODE=CREATE USERPASSWORD=*...  succeeded.
    INFO 2007-09-26 16:02:15
    Changing account ACCOUNTID=S-1-5-21-1844237615-963894560-725345543-1010 ACCOUNTNAME=biwdev\SAPServiceBWD ACCOUNTTYPE=USER CONDITION=YES DESCRIPTION=SAP System Service Administrator MEMBERSHIP=biwdev\SAP_BWD_GlobalAdmin,Administrators,ORA_BWD_DBA,ORA_BWD_OPER,biwdev\SAP_LocalAdmin,biwdev\SAP_BWD_LocalAdmin MEMBERSHIPSEPARATOR=, OPMODE=CREATE USERPASSWORD=*...  succeeded.
    INFO 2007-09-26 16:02:15
    Processing of all account operations of table t_SAPComponent_Accounts_Accounts_SHARED succeeded (operation CREATE).
    PHASE 2007-09-26 16:02:16
    Request operating system user information
    PHASE 2007-09-26 16:02:16
    Request operating system user information
    PHASE 2007-09-26 16:02:16
    Request operating system user information
    PHASE 2007-09-26 16:02:16
    Request operating system user information
    PHASE 2007-09-26 16:02:16
    Request operating system user information
    PHASE 2007-09-26 16:02:16
    Request operating system user information
    PHASE 2007-09-26 16:02:16
    Request operating system user information
    PHASE 2007-09-26 16:02:16
    Request operating system user information
    PHASE 2007-09-26 16:02:16
    Request operating system user information
    PHASE 2007-09-26 16:02:17
    Request operating system user information
    PHASE 2007-09-26 16:02:17
    Request operating system user information
    PHASE 2007-09-26 16:02:17
    Request operating system user information
    PHASE 2007-09-26 16:02:17
    Request operating system user information
    PHASE 2007-09-26 16:02:17
    Request operating system user information
    PHASE 2007-09-26 16:02:17
    Request operating system user information
    PHASE 2007-09-26 16:02:17
    Request operating system user information
    PHASE 2007-09-26 16:02:17
    Request operating system user information
    PHASE 2007-09-26 16:02:17
    Request operating system user information
    INFO 2007-09-26 16:02:17
    Successfully added privileges 'SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege' to account 'S-1-5-21-1844237615-963894560-725345543-1009' on host 'biwdev'!
    INFO 2007-09-26 16:02:17
    Successfully added privileges 'SeServiceLogonRight SeNetworkLogonRight' to account 'biwdev\SAPServiceBWD' on host 'biwdev'!
    INFO 2007-09-26 16:02:17
    Successfully added privileges 'SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege' to account 'biwdev\bwdadm' on host 'biwdev'!
    INFO 2007-09-26 16:02:18
    Evaluating all 'tNT_RegistryEntries' table rows succeeded.
    INFO 2007-09-26 16:02:19
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-09-26 16:02:20
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-09-26 16:02:21
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-09-26 16:02:21
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-09-26 16:02:22
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-09-26 16:02:23
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-09-26 16:02:24
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-09-26 16:02:24
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-09-26 16:02:53
    Creating directory E:\oracle\BWD\sapdata1\system_1.
    INFO 2007-09-26 16:02:53
    Creating file system node E:\oracle\BWD/sapdata1\system_1 with type DIRECTORY succeeded.
    INFO 2007-09-26 16:02:53
    Processing of all file system node operations of table tORA_SapdataNodes succeeded.
    INFO 2007-09-26 16:02:53
    Processing of all file system node operations of table tORA_DatabaseServerNodes succeeded.
    INFO 2007-09-26 16:02:53
    Processing of all file system node operations of table tORA_SapdataNodes succeeded.
    INFO 2007-09-26 16:02:55
    Copying file C:/dump/master/NT/COMMON/INSTALL/INITSID.ORA to: E:\oracle\ora92\database\initBWD.ora.
    INFO 2007-09-26 16:02:55
    Creating file E:\oracle\ora92\database\initBWD.ora.
    INFO 2007-09-26 16:02:55
    Copying file system node C:\dump\master/NT/COMMON/INSTALL/INITSID.ORA with type FILE to E:\oracle\ora92\database\initBWD.ora succeeded.
    INFO 2007-09-26 16:02:55
    Copying file C:/dump/master/NT/COMMON/INSTALL/INITSID.SAP to: E:\oracle\ora92\database\initBWD.sap.
    INFO 2007-09-26 16:02:55
    Creating file E:\oracle\ora92\database\initBWD.sap.
    INFO 2007-09-26 16:02:55
    Copying file system node C:\dump\master/NT/COMMON/INSTALL/INITSID.SAP with type FILE to E:\oracle\ora92\database\initBWD.sap succeeded.
    INFO 2007-09-26 16:02:55
    Copying file C:/dump/master/NT/COMMON/INSTALL/INITSID.DBA to: E:\oracle\ora92\database\initBWD.dba.
    INFO 2007-09-26 16:02:55
    Creating file E:\oracle\ora92\database\initBWD.dba.
    INFO 2007-09-26 16:02:55
    Copying file system node C:\dump\master/NT/COMMON/INSTALL/INITSID.DBA with type FILE to E:\oracle\ora92\database\initBWD.dba succeeded.
    INFO 2007-09-26 16:02:55
    Processing of all file system node operations of table tORA_ServerConfig_FORMS succeeded.
    INFO 2007-09-26 16:02:57
    Processing of adapt operation tORA_ServerConfig succeeded.
    INFO 2007-09-26 16:02:59
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-09-26 16:03:02
    Moving file E:/oracle/ora92/database/initBWD.ora to: orig_init_ora_tmp.txt.
    INFO 2007-09-26 16:03:02
    Moving file C:/SAPinst ORACLE KERNEL/changed_init_ora_tmp.txt to: E:\oracle\ora92\database\initBWD.ora.
    INFO 2007-09-26 16:03:02
    Removing file C:/SAPinst ORACLE KERNEL/orig_init_ora_tmp.txt.
    WARNING 2007-09-26 16:03:02
    PROBLEM: 'E:\oracle\ora92/bin/oradim' not found. CAUSE: Unable to find application via absolute path in filesystem. Application could perhaps be found using environment variable path or is really missing. Trying to call the application nevertheless.
    WARNING 2007-09-26 16:03:02
    PROBLEM: 'E:\oracle\ora92/bin/oradim' not found. CAUSE: Unable to find application via absolute path in filesystem. Application could perhaps be found using environment variable path or is really missing. Trying to call the application nevertheless.
    INFO 2007-09-26 16:03:02
    'E:\oracle\ora92/bin/oradim -new -sid BWD -STARTMODE auto' returned with '20'.
    INFO 2007-09-26 16:03:04
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-09-26 16:03:06
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    ERROR 2007-09-26 16:03:13
    CJS-00084  SQL Statement or Script failed. Error Message: ORA-32004: obsolete and/or deprecated parameter(s) specifiedORACLE instance started.
    ERROR 2007-09-26 16:03:13
    FJS-00012  Error when executing script.
    Please let me know, what was tha problem.
    Regards,
    satish

    I suggest you upgrade your Oracle installation to 9.2.0.7 or 9.2.0.8 and then try again.
    Markus

  • Enable archivelog mode while datbase is open

    Hi everybody
    Kindly I need to ask if possible to enable archivelog mode while database in open status for oracle 11g? and if yes .. what is the statment?
    Thanks in advance
    Edited by: user11254543 on Jun 8, 2011 11:51 PM

    You cant enable the archivelog mode when the database is in nomount state because the archive log information is kept in Control file like db in archivelog mode or not,log sequence number,SCNs,logfiles members,etc.. When we start the database in nomount state then only the pfile/spfile is read and sga is allocated and background processes are started but no controlfile is read ..to read the controlfile the database must be started in mount state..Why we require a controlfile is because it stores critical information about the database...If we start the database in mount state then it recognizes whether database is in archivelog mode or not , If it is in archivelog mode then it sees whether an instance recovery is needed or not by verifying the log sequence numbers in controlfile,redologfile & the datafile ..If an instance recovery is required then it performs the instance recovery by calling smon background process or if a datafile header is not up to date then we have to perform the media recovery using the redo logfiles...
    For open state you have to post the reply..it will help you to explore yourself...Good Luck!

  • SAP Security audit log and Profile Parameter rsau/enable

    Does the Profile Parameter rsau/enable have to ="1" for the audit log to be active or is this parameter set to purely allow the maintainance of static profiles. I have been reading into SAP's documentation and they only refer to this parameter in the "Maintaining Static Profiles" section. Therefore I would like to know if the audit log can record when the parameter rsau/enable = "0"?
    Many thanks

    Hi
    I have it running on my NW2004s sneak peak system, whit a dynamic filter and the rsau/enable = 0. So Yes - it's possible to record in the secure audit log with rsau/enable = "0", if your using the dynamic filters
    Regards
    Morten Nielsen

  • Enabling archivelog  in RAC

    Hello dear friends,
    I want to enable archivelog mode in oracle 10.2 in RAC environment.
    who can help me in its steps ?

    Step how to convert noarchive log database in to archive log on ASM
    First take out the one instance from cluster to perform d maintenance tasks
    1)     SQL> alter system set cluster_database=true scope=spfile sid='approd1';
    2)     SQL> shutdown immediate
    3)     Start the single instance database which we took out from cluster pair
    4)     SQL> startup mount;
    5)     Check the log_archive_dest ,if its blank , which is good for us , otherwise we have to clear it values actually log_archive_dest is making archive log in local file system and log_archive_log_n , we can use it for both local , remote and ASM locations,so we will use log_archive_dest_1 instead of log_archive_dest
    6)     SQL >Show parameter log_archive_dest
    NAME TYPE VALUE
    7)     Log_archive_dest string D:\oracle\DB10g\admin\ORCL\arc
    Here in my environment the values of log_archive_dest is not NULL , so I have to reset the current values and put the null values
    8)     SQL> alter system set log_archive_dest='' scope=spfile;
    Any destination changes that you make take effect at the next log switch(automatic or manual) so restart the database and logon again
    9)     SQL> shutdown immediate
    10)     Again start the database in mount mode ( maintenance mode)
    11)     Startup mount
    12)     
    13)     Check the values of t again and make sure log_archive_dest should be blank or unset .We can’t use log_archive_dest or log_archive_dublex with db_recover file parameter , so that why I m using logarchive_log_1 parameter
    14)     SQL> alter system set log_archive_dest_1='LOCATION=+DATA/';
    15)     SQL> alter system set cluster_database=true scope=spfile sid='approd1'
    16)     Start the database
    17)     Startup

  • TS3048 Is there a way to "calibrate" the magic mouse? I have rearranged settings for mouse, air-cleaned, tried different surfaces, however, it seems to be misinterpreting finger movements and randomly trying to open launchpad when enabled.

    Is there a way to "calibrate" the magic mouse? Batteries are good. I have rearranged settings for mouse, air-cleaned, tried different surfaces, however, it seems to be misinterpreting finger movements and randomly trying to open launchpad when enabled-flashing between the app I am in and launchpad. When right-click is enabled I have to go to the extreme upper left of mousepad to click or it is interpreted as right-click. Won't consistently "scroll". Suggestions?

    Here's some things you could try....
    Reset your computer's PRAM
    http://docs.info.apple.com/article.html?path=Mac/10.7/en/mh26871.html
    Intel-based Macs: Resetting the System Management Controller (SMC)
    http://support.apple.com/kb/HT3964
    Mac OS X: Starting up in Safe Mode
    http://support.apple.com/kb/HT1455

  • How to find out when 'enable secret' and username secret' was set/changed

    Hi,
    I was wondering if it is possible to find out when 'enable secret' and username secret' was set or changed last time on an IOS based machine.
    Is there any show command or kind of timestamp or MIB which can be read out?
    tnx Ralf

    Probably your syslog server would give you that info.

  • Is there a way to stop iPhoto storing my photo stream photos on the mac hard drive when enabled? They have not been imported to my library. I have no photos saved on my MacBook Air yet 50gb of Hardrive space is taken up by photos.

    Is there a way to stop iPhoto storing my photo stream photos on the mac hard drive when enabled? They have not been imported to my library. Is there a way to stop iPhoto storing my photo stream photos on the mac hard drive when enabled? They have not been imported to my library. I have no photos saved on my MacBook Air yet 50gb of Hardrive space is taken up by photos. When I turn off photo stream on iCloud preferences the memory is freed up. I like to be able to access my icloud photo streams on
    my macbook but it has a small Hardrive and loosing that much space is annoying and it kind of voids the point of photo streams. Is there a way I can stop
    this ?

    Is there a way I can stop
    this ?
    No, Photo Stream is syncing with iCloud. The most recent 1000 photos in iCloud will be buffered on your mac, even if you do not import them to your photo library, if you enable My Photo Stream.
    See this link:   iCloud: Photo Stream FAQ
    iCloud pushes all your photos to the My Photo Stream album on your devices and computers, and manages them efficiently, so you don’t run out of storage space.

  • In the shared variable properties box, when enabling aliasing, what is the difference between binding to a project variable vs. to a psp url

    In the shared variable properties box, specifically with regard to a the target being an rt target, when enabling aliasing, what is the difference between binding to a project variable vs. to a psp url?

    The difference is in the type of variable you are binding it to.  A project variable is a variable that lives within the specific project in which it was created.  A PSP URL is an address using the Publish-Subscribe Protocol (PSP).  You can learn more about PSP URLs here: http://zone.ni.com/reference/en-XX/help/371361G-01/lvconcepts/using_datasocket_technology/#Specifyin...
    PSP URLs will enable it to communicate between different machines and also between projects which may or may not be open.  The project variable will exist within the project.
    Julian R.
    Applications Engineer
    National Instruments

  • How to find deprecated parameter?

    Hi all,
    11.2.0.3
    Aix 6.1
    I am starting out PROD db and I get this:
    sqlplus / as sysdba
    SQL*Plus: Release 11.2.0.3.0 Production on Mon Jan 13 20:51:29 2014
    Copyright (c) 1982, 2011, Oracle.  All rights reserved.
    Connected to an idle instance.
    SQL> startup
    ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance
    ORACLE instance started.
    Total System Global Area 8551575552 bytes
    Fixed Size                  2238616 bytes
    Variable Size            6224349032 bytes
    Database Buffers         2315255808 bytes
    Redo Buffers                9732096 bytes
    Database mounted.
    Database opened.
    What parameter usually is deprecated in 11.2.0.3?
    Thanks a lot,
    pK

    ORA-32004: obsolete or deprecated parameter(s) specified for string instance
    Cause: Obsolete or deprecated parameters for this instance type 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.
    http://docs.oracle.com/cd/E11882_01/server.112/e17766/e29250.htm#ORA-32004
    and/or:
    select name from v$obsolete_parameter where isspecified='TRUE';
    Ask Tom &amp;quot;ORA-32004: obsolete and&amp;#x2F;or deprecated pa...&amp;quot;

  • ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance

    hi
    how to fix this error??
    ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance
    ORACLE instance started.OS := OEL 5.6
    DB:= 11R2 single instance
    kind regards

    no one wrote:
    hi
    how to fix this error??
    ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance
    ORACLE instance started.OS := OEL 5.6
    DB:= 11R2 single instance
    kind regardsThis parameter is deprecated in Oracle 10g
    This parameter determines if the background process ARCH is started. It can be set to either true or false.
    Of course, it makes no sense, if this parameter is set to true if the database is running in noarchive log mode. If ARCH is started with the database being in noarchive log mode, messages like media recovery disabled will be written into the alert.log file.

  • Obsolete and/or deprecated parameter(s) specified  for plsql_compiler_flags

    Hi All,
    After upgrading the from 10.2.0.1 to 10.2.0.4 on linux. I am getting ORA-32004: obsolete and/or deprecated parameter(s) specified error for plsql_compiler_flags.
    in alert log says
    Deprecated system parameters with specified values:
    plsql_compiler_flags
    End of deprecated system parameter listing
    Could you please help me how to fix this problem.
    Thanks

    Thank you Pavan and oradba.
    even after changing to
    ALTER SYSTEM SET plsql_compiler_flags = 'NATIVE' SCOPE=SPFILE;
    ALTER SYSTEM SET plsql_code_type = "NATIVE" SCOPE=SPFILE;
    still I am getting same error. Could you please help me to fix this problem.
    Thanks

Maybe you are looking for

  • How to add one more user the email notification

    Hi, I would like to know, how I can add 'CC' / One more user to the email notification? Currently system is sending email with From Address, And To address (to the user email). But I need to send email to User and one Administrator. Template: Create

  • URGENT: Adobe Acrobat 7.0:  Can "Bookmarks" be printed (in the left task pane)?

    Urgent Question In Adobe Acrobat 7.0, can Bookmarks or the list of the Bookmarks, in the left task pane, be printed in any way?   If not, is there some other way to print Bookmarks that is not too difficult to achieve - like a list or an Index of all

  • Help in enhancements

    Hi ALL, I believe that all are doing fine! Im new to enhancements(may be like normal report or thru badis) concept and i have got some objects assignment(s) in my company..... I need help from u folks in providing some material and some good real tim

  • Help with deleting multiplied contact.

    Had to get a replacement phone....when I sync'd my Back up Assistant it multiplied 1 contact over a 1000 times.  From BuA I have deleted them and tried to resync  however they have stayed on my phone and keep showing back up in my BuA on my computer.

  • Using iPhoto Book Themes in Aperture

    I would like to use the iPhoto book themes in Aperture. Anyway of importing them. Thanks, Paul. iMac Intel Core Duo 20", 2 GB RAM   Mac OS X (10.4.6)   Nikon Coolscan V ED, Nikon D200, Iomega MiniMax