ORA-02069: global_names

Hi hussein.

insert into TransactionReport@apex_lnk
(Customer_Id,
Customer_Number,
Client_name,
Address,
RevDate,
Grosshold)
Select
Cust.customer_id,
Cust.customer_number,
Cust. Customer_name,
addr.concatenated_address,
GH.revdate,
GH.grosshold
of ar_customers cust, addr ar_addresses_v.
pwcus.pwcus_pos_grosshold gh
"where to_date(gh.revdate,'DD-MON-YY') between June 1, 2009"-June 10, 2009.
and addr.customer_id = cust.customer_id
and gh.customer_number (+) = cust.customer_number
and cust.attribute5 is not null;

addr.concatenated_address,
*
ERROR on line 12:
ORA-02069: global_names must be set to true for this operation parameter

How to solve this error?

Thank you very much

Hello

You define GLOBAL_NAMES = TRUE in the init.ora file (see Note: 19351.1) or try one of the workarounds (if any) according to the following documents.

Note: 1047673.6 - ORA-02069 FOR DISTANCE a LOCAL SEQUENCE INSERTION
https://metalink2.Oracle.com/MetaLink/PLSQL/ml2_documents.showDocument?p_database_id=not&P_ID=1047673.6

Note: 467787.1 - insertion of data to view mapped Via Dblink to remote Table returns Ora-02069
https://metalink2.Oracle.com/MetaLink/PLSQL/ml2_documents.showDocument?p_database_id=not&P_ID=467787.1

Note: 342320.1 - Ora-02069 when you use a local function by updating a remote Table
https://metalink2.Oracle.com/MetaLink/PLSQL/ml2_documents.showDocument?p_database_id=not&P_ID=342320.1

Kind regards
Hussein

Tags: Oracle Applications

Similar Questions

  • ORA-02069 global_names parameter must be set

    Gentlemen met,


    I am facing problem ora-02069 global_names parameter must be defined when I try to

    insert into t10@database1
    Select function_chk_date (to_date ('12-05-2011', ' dd-mm-yyyy')) of double;

    I saw a few global_names = true suggestion, but this affects on another link to db.

    If I'm on fire after the statement then the inserted rows.

    insert into t10@database1 values ('xuyz');

    so you can help me how to solve the error...

    I'll wait for your favorable reply...

    Salvation;

    Please see:

    ORA-02069 when you use a local function by updating a remote Table [ID 342320.1]
    ORA-02069 when you use a local function by updating a remote Table [ID 342320.1]

    Respect of
    HELIOS

  • ORA-02069: global_names must be set to true for this operation parameter

    I'm trying to insert into a table with a database link. my selection is a database view. I get this error.

    ORA-02069: global_names must be set to true for this operation parameter

    When I create a table based on select * view and then try the insert, it copies.

    Is there something I'm missing when I try to insert a view?

    Thank you

    In addition to read below note metalink
    Insertion of data to view mapped Via Dblink to remote Table returns Ora-02069 [ID 467787.1] *.

  • ORA-28536 & ORA-28508 & global_names

    Hi all

    I put global_names to TRUE. I'm working on db_link between Oracle and MS sql server.

    The init file:

    HS_FDS_CONNECT_INFO = MyHost 1433/master

    HS_FDS_TRACE_LEVEL = debug

    HS_FDS_RECOVERY_ACCOUNT = RECOVERY

    HS_FDS_RECOVERY_PWD = RECOVERY

    HS_DB_DOMAIN = mydomain

    HS_DB_NAME = SQLEXPRESS


    alter session set global_names = TRUE;

    drop public database link sqlexpress. MyDomain;

    CREATE THE DATABASE PUBLIC LINK "SQLEXPRESS. Mydomain' CONNECT to 'HIS' IDENTIFIED BY 'xxxxxx' USING 'dg4msql ';

    Select * from [email protected]; When I try to run this query, I get the below error

    ORA-28536: treatment of the impact of the heterogeneous services settings error

    ORA-28508: invalid value SQLEXPRESS pour the init parameter. heterogeneous services HS_DB_NAME

    ORA-02063: preceding 2 lines of SQLEXPRESS.

    you have an idea how can I fix?

    Thank you

    Hi sb92075,

    I found that the cause of this error HS_DB_NAME cannot exceed 8 characters.

    Your suggestion about capital letters is true

    "

    HS_FDS_CONNECT_INFO = MyHost 1433/master

    HS_DB_DOMAIN = MYDOMAIN

    HS_DB_NAME = MASTER

    HS_FDS_TRACE_LEVEL = debug

    HS_FDS_RECOVERY_ACCOUNT = RECOVERY

    HS_FDS_RECOVERY_PWD = RECOVERY

    ALTER system set global_names = true;

    CREATE THE DATABASE LINK 'MASTER. MYDOMAIN. "

    CONNECT to 'HIS' IDENTIFIED BY 'xxxxxxx '.

    With the HELP of "dg4msql";

    Select * from dual@"MASTER. MYDOMAIN';

    "

    Thanks for your help

  • Error in the Merge statement using dblink

    Hello

    I am facing the following error when you use the merge statement using the dblink.

    ORA-02069: global_names must be set to true for this operation parameter.

    I can use the same dblink in my select insert and update statements but when I try to use merge then he invites the error said, is also not any syntax error as same statement can be used on the same tables of database instead of dblink.

    Please suggest any help will be much appreciated.

    Thanks in advance

    Hi Aqeel

    If insert and update statements work well through links db, then it should not be a problem with the merge statement. But if you are faced with the question, so please check the entire sql statement with tnsnames on both sides. Please share the tnsnames for the two dbs with dblink ddl.

    Concerning

    Jihane Narain Sylca

  • Call a procedure and a function over a db link

    I feel a few errors with the following and would be very happy in the view of some experts here.

    My use case is to insert records into a table via a database link. Inserted records will be interviewed for a same table in the local data dictionary. Everything works, but sometimes, I get a unique constraint violation if I'm trying to insert a duplicate record, so I wrote a simple function to check for the scenario. My problem is that I can run my procedure using the link to the db and I can run my function using the db link, but I can't use the two together without errors.

    My test scenario uses only the standard emp table:

    create or replace procedure test_insert(p_instance varchar2)
    IS
    l_sql varchar2(4000);
    begin
        l_sql := 'insert into EMP@'||p_instance||' (EMPNO, ENAME, JOB, MGR, SAL, DEPTNO) (Select EMPNO, ENAME, JOB, MGR, SAL, DEPTNO from EMP)';
    execute immediate l_sql;
    END;
    
    

    BEGIN
    test_insert('myLink');
    END;
    
    

    It works very well and the insert occurs without any problem.

    If I run the same process a second time, I get:

    00001 00000 - "forced single (s.%s) violated" which is what I've been waiting for EMPNO has a unique constraint. So far so good.

    Now, I create a function to check if the record exists:

    create or replace function record_exists(p_empno IN NUMBER, p_instance IN varchar2) return number
    IS
    l_sql varchar2(4000);
    l_count number;
    BEGIN
    l_sql := 'select count(*) from EMP@'||p_instance||' where empno = '||p_empno;
    execute immediate l_sql into l_count;
    IF
    l_count > 0
    THEN return 1;
    ELSE
    return 0;
    END IF;
    END;
    
    

    I test this situation as follows:

    select record_exists(8020, 'myLink') from dual;
    
    

    RECORD_EXISTS(8020,'myLink')

    -------------------------------------------

    1

    That works well, so now I'll add this feature to my procedure:

    create or replace procedure test_insert(p_instance varchar2)
    IS
    l_sql varchar2(4000);
    begin
        l_sql := 'insert into EMP@'||p_instance||' (EMPNO, ENAME, JOB, MGR, SAL, DEPTNO) (Select EMPNO, ENAME, JOB, MGR, SAL, DEPTNO from EMP WHERE record_exists( EMPNO, '''||p_instance||''') = 0)';
    execute immediate l_sql;
    END;
    
    

    I test this situation as follows:

    BEGIN
    test_insert('myLink');
    END;
    
    

    As a result:

    Error report:
    ORA-02069: global_names parameter must be set to TRUE for this operation
    ORA-06512: at "FUSION.TEST_INSERT", line 6
    ORA-06512: at line 2
    02069. 00000 -  "global_names parameter must be set to TRUE for this operation"
    *Cause:    A remote mapping of the statement is required but cannot be achieved
               because global_names should be set to TRUE for it to be achieved
    *Action:   Issue alter session set global_names = true if possible
    
    

    I don't know why I'm getting this. The function works, the works of the procedure, but when I combine I get an error. If I set the global setting to true names and then run again I get:

    
    02085. 00000 -  "database link %s connects to %s"
    *Cause:    a database link connected to a database with a different name.
               The connection is rejected.
    *Action:   create a database link with the same name as the database it
               connects to, or set global_names=false.
    
    

    All opinions are appreciated. I do not understand why I can run the procedure and function of each separately on the db connection, but they don't work together.

    Thank you

    John

    The procedure depends on what how would you define failure and it should mean - error to the caller, sign and continue, just continue. Constraints are created to ensure if it receives no invalid data in a table. Generally, they provide the most effective mechanism for the verification of the invalid data and return useful exceptions that can deal with the appellant. You also double the workload of the checking uniqueness by adding your own control.

    In general I would say use Exceptions, they are your friend

  • ORA-02019 - need another set of eyes

    It must be fair in my driveway, but something is cheating on me.

    Try to use db link returns the equivalent of ora-12154/tns-03505 but tnsping says its there

    Connected to:

    Oracle Database 11 g Release 11.2.0.2.0 - 64 bit Production

    SQL > select count (*) in the attendee@epm;

    Select count (*) in attendee@epm

    *

    ERROR on line 1:

    ORA-02019: description of the connection to the remote database not found

    SQL > select host dba_db_links where db_link = 'EMP ';

    HOST

    --------------------------------------------------------------------------------

    epmdev. World

    SQL >! epmdev.World tnsping

    AMT Ping utility for Linux: Version 11.2.0.2.0 - Production on 16 July 2015 10:21:47

    Copyright (c) 1997, 2010, Oracle.  All rights reserved.

    Use settings files:

    /U01/app/Oracle/product/11.2.0.2/PS/network/admin/SQLNET.ora

    TNSNAMES adapter used to resolve the alias

    Try to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = xxsqlsrvrxx) (port = 1521)) (CONNECT_DATA = (SID = epmdev)) (HS = OK))

    OK (0 msec)

    SQL > show the global_names parameter

    VALUE OF TYPE NAME

    ------------------------------------ ----------- ------------------------------

    global_names boolean FALSE

    SQL > show the db_domain parameter

    VALUE OF TYPE NAME

    ------------------------------------ ----------- ------------------------------

    db_domain chain

    A private DB link? I forgot once when I ORA-02019

  • The ORA-12514 error when you try to connect remotely

    I am trying to connect remotely to the 12 c with SQL Developer Oracle database. In order to connect remotely from another computer, on the server that is running Oracle, I opened a port in the firewall of Windows 7. The listener.ora file, as you can see below, has its default listening port set to localhost.  So, I created second listener called REMOTE_LISTENER, to listen on a different port to 1521.  I put it in place of 1531.  That part worked, but now the listener isn't me in due to this error IN what ORA-12514 earphone does not currently of service required to connect descriptor.

    This is the setting of the SQL Developer on the remote computer:

    CONNECT.JPG

    It's the side server, listener.ora file:

    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = C:\app\Owner\product\12.1.0\dbhome_1)
    (= Extproc PROGRAM)
    (ENVS = "EXTPROC_DLLS=ONLY:C:\app\Owner\product\12.1.0\dbhome_1\bin\oraclr12.dll")
    )
    )

    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = CIP)(KEY = EXTPROC1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost) (PORT = 1521))
    (SERVICE_NAME = editor)
    )
    )

    REMOTE_LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP) (HOST = 192.168.2.19)(PORT = 1531))
    (SERVICE_NAME = editor)
    )
    )

    It's the tnsnames.ora file:

    PUBLISHER =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP) (HOST = 192.168.2.19)(PORT = 1531))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = editor)
    )
    )

    LISTENER_EDITOR =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost) (PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = editor)
    )
    )


    ORACLR_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = CIP)(KEY = EXTPROC1521))
    )
    (CONNECT_DATA =
    (SID = CLRExtProc)
    (PRESENTATION = RO)
    )
    )

    As you can see, I edit the file tnsnames.ora slightly to allow a connection to the database of the editor, but my edit does not seem to fix anything. You will notice that I also updated the port 1531 to match the listener in the listeners.ora file.  I can not connect with SQL Developer on the client side. I am able to connect locally with the SQL Developer on the server, but I need to access the database from a different computer.   I am able to connect to the database using SQL more on the server.

    I ran lsnrctl service from the command prompt. Here is the output of this command:

    Connection to (DESCRIPTION = (ADDRESS = (PROTOCOL = IPC) (KEY = EXTPROC1521)) (SERVICE_NAM

    E = editor))

    Summary of services...

    Service 'CLRExtProc' has 1 instance (s).

    Instance of 'CLRExtProc', status UNKNOWN, has 1 operation for this service...

    Managers:

    "DEDICATED" set up: 0 denied: 0

    LOCAL SERVER

    Service "Editor" has 1 instance (s).

    Instance "editor", State LOAN, has 1 operation for this service...

    Managers:

    "DEDICATED" set up: 0 denied: 0 status: ready

    LOCAL SERVER

    Service 'editorXDB' has 1 instance (s).

    Instance "editor", State LOAN, has 1 operation for this service...

    Managers:

    "D000" put in place: 0 denied: current: 0 0 max: 1022 State: loan

    DISPATCHER < machine: PC SHIERS, pid: 1580 >

    (ADDRESS = (PROTOCOL = tcp) (HOST = Shiers-PC)(PORT=49367))

    Service 'pdborcl' has 1 instance (s).

    Instance "editor", State LOAN, has 1 operation for this service...

    Managers:

    "DEDICATED" set up: 0 denied: 0 status: ready

    LOCAL SERVER

    The command completed successfully

    As you can see, it shows a service instance named "editor."  It comes, it does not say which port.  You will also notice a service named "editorXDB". Where it went out, I don't know.  It is certainly not in the tnsnames.ora file, and whenever I run the lsnrctl services command port number changes.  In any case, this part, I think, is a red herring.  I've been spinning my wheels on this one for a few days.  If anyone can help me with the steps to connect to a remote computer via SQL Developer, it would be greatly appreciated.

    So now what would be better, it's if we could get the database to dynamically register with the listener as it should so that I get the READY State.  Could help you with this please, then I think we're done.


    What is the setting for the LOCAL_LISTENER parameter in your database?  To keep things simple, it must be null, which allows the DB to-default - use the 1521 port to communicate with the listener for the record.

    See: (exploring the-local_listener-parameters)

    (SID_DESC =

    (SID_NAME = editor)

    (ORACLE_HOME = C:\app\Owner\product\12.1.0\dbhome_1)

    (GLOBAL_NAME = editor)

    )

    )


    BTW, * if * you insist on using a listener.ora and you insist on the use of the SID_LIST section in this document, you should really use SERVICE_NAME instead of SID_NAME.

  • ORA-24248: DB XML extensible security not installed

    Oracle: 11.2.0.3

    OS: Linux

    Issue when I open it as sys

    SQL > SELECT global_name, utl_inaddr.get_host_address FROM global_name;

    GLOBAL_NAME

    --------------------------------------------------------------------------------

    GET_HOST_ADDRESS

    --------------------------------------------------------------------------------

    VDLEO002.COMPSEC.com

    125.102.136.220

    While when I run as a user

    SQL > SELECT global_name, utl_inaddr.get_host_address FROM global_name;

    SELECT global_name, utl_inaddr.get_host_address FROM global_name

    *

    ERROR on line 1:

    ORA-24248: DB XML extensible security not installed

    ORA-06512: at "SYS." UTL_INADDR', line 19

    ORA-06512: at "SYS." UTL_INADDR', line 40

    ORA-06512: at line 1

    SQL > show user

    The USER is 'OSDBA '.

    What could be the reason?

    subsidies of public privilege or missing synonym to create?

    SQL > select computername in dba_registry;

    COMPUTERNAME

    --------------------------------------------------------------------------------

    Oracle database catalog views

    Types and Packages of oracle database

    Fix. This role is created as part of the installation XMLDB.

    SY.

  • ERROR: ORA-01017: name of user and password invalid. connection refused

    Hi all

    I need your help.

    I have installed Oracle Audit Vault Server Release 10.2.3.2 in agent collection and Linux system in Windows system. Adding and start collecting DBAUD went fine however adding AGAIN collector back return errors when executing command avorcldb add_collector as follows

    [oracle@avsrv ~] $

    [oracle@avsrv ~] $ avorcldb add_collector - SrcName orcl nom_agent - avagent01 - colltype REDO - av Lugaopc:1521:orcl

    collector REDO_Collector for orcl source already exists

    the initialization of the REDO Collector

    ERROR: could not get by using jdbc connection AV source user:oracle:oci:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=Lugaopc)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=orcl)))

    ERROR: ORA-01017: name of user and password invalid. connection refused

    [oracle@avsrv ~] $

    Here are the contents of the avorcldb.log file

    09/09/13 16:58:44 [INFO] command add_collector treatment

    09/09/13 16:58:44 [INFO] treatment arg - FromName = orcl

    09/09/13 16:58:44 [INFO] treatment arg - nom_agent = avagent01

    09/09/13 16:58:44 [INFO] treatment arg - colltype = REDO

    09/09/13 16:58:44 [INFO] treatment arg - av = Lugaopc:1521:orcl

    09/09/13 16:58:44 [INFO] connect information: Lugaopc:1521:orcl

    09/09/13 16:58:45 [INFO] connecting administration AV got using jdbc:oracle:oci:@AVDB

    09/09/13 16:58:45 [INFO] execution SQL like [ADM@AV] select s.host |': ' | A1.num_value |': ' | avsys.av A2.char_value $attrvalue a1, a2 avsys.av$ attrvalue, avsys.av$ s source, avsys.av$ attrdef ad1, ad2 avsys.av$ attrdef where source_name =: 1 and a1.inst_id = s.source_id and a2.inst_id = s.source_id and a1.attr_id = ad1.attr_id and ad1.attr_name = 'PORT' and a2.attr_id = ad2.attr_id and ad2.attr_name = 'DB_SERVICE. '

    09/09/13 16:58:45 [INFO] using bind value orcl

    09/09/13 16:58:45 [INFO] Return value = Lugaopc:1521:orcl

    09/09/13 16:58:45 [INFO] connect information: Lugaopc:1521:orcl

    09/09/13 16:58:45 [INFO] execution SQL like [ADM@AV] select to_char (source_id) in the avsys.av$ source where source_name =: 1

    09/09/13 16:58:45 [INFO] using bind value orcl

    09/09/13 16:58:45 [INFO] return value = 1

    09/09/13 16:58:46 [INFO] got the source user connection using jdbc:oracle:oci:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=Lugaopc)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=orcl)))

    09/09/13 16:58:46 [INFO] executing SQL in [ADM@AV] select decode (c.status, 1, 'active', 0, 'fallen', null) of avsys.av$ collector c, avsys.av$ s source where source_name =: 1 and collector_name =: 2 and c.source_id = s.source_id

    09/09/13 16:58:46 [INFO] using bind value orcl

    09/09/13 16:58:46 [INFO] bind Using REDO_Collector value

    09/09/13 16:58:46 [INFO] Return value = active

    09/09/13 16:58:46 [MESG] collector REDO_Collector for orcl source already exists

    09/09/13 16:58:46 [INFO] executing SQL in [ADM@AV] select decode (c.status, 1, 'active', 0, 'fallen', null) of avsys.av$ collector c, avsys.av$ s source where source_name =: 1 and collector_name =: 2 and c.source_id = s.source_id

    09/09/13 16:58:46 [INFO] using bind value orcl

    09/09/13 16:58:46 [INFO] bind Using REDO_Collector value

    09/09/13 16:58:46 [INFO] Return value = active

    09/09/13 16:58:46 [MESG] initialization REDO Collector

    09/09/13 16:58:46 [INFO] execution SQL like [ADM@AV] select the username of avsys.av$ source where source_name =: 1

    09/09/13 16:58:46 [INFO] using bind value orcl

    09/09/13 16:58:46 [INFO] Return value = AVSRCUSR1

    09/09/13 16:58:46 [INFO] as [ADM@AV] SQL execution {? = call avsys.dbms_audit_vault.reset_source_user (?)}

    09/09/13 16:58:46 [INFO] adding user password mask

    09/09/13 16:58:46 [INFO] execution SQL like [USR@SRC] select table_name from user_tables where upper (table_name) = upper(:1)

    09/09/13 16:58:46 [INFO] bind Using STREAMS_HEARTBEAT value

    09/09/13 16:58:46 [INFO] Return value = STREAMS_HEARTBEAT

    09/09/13 16:58:46 [INFO] execution as [USR@SRC] SQL drop table streams_heartbeat

    09/09/13 16:58:46 [INFO] execution as [USR@SRC] SQL create table streams_heartbeat (src_dbname varchar2 (4000), job_number number, heartbeat_time timestamp)

    09/09/13 16:58:46 [INFO] execution SQL like [USR@SRC] declare dbs_name varchar2 (4000); start selecting rename in dbs_name from global_name; insert into streams_heartbeat values (dbs_name, 0, SYSTIMESTAMP); end;

    09/09/13 16:58:46 [INFO] SQL execution as [USR@SRC] create or replace procedure update_heartbeat IS start update streams_heartbeat set heartbeat_time = (select systimestamp from double); commit; end;

    09/09/13 16:58:46 [INFO] execution SQL like [USR@SRC] select table_name from user_tables where upper (table_name) = upper(:1)

    09/09/13 16:58:46 [INFO] bind Using CAPTURE_RULES value

    09/09/13 16:58:46 [INFO] Return value = CAPTURE_RULES

    09/09/13 16:58:46 [INFO] execution as [USR@SRC] SQL drop table capture_rules

    09/09/13 16:58:46 [INFO] execution as [USR@SRC] SQL create table capture_rules (nom_regle varchar2 (50), rule_scope varchar2 (6), rule_type VARCHAR2 (3), obj_name varchar2 (100))

    09/09/13 16:58:46 [INFO] execution SQL like [ADM@AV] select Rename global_name

    09/09/13 16:58:46 [INFO] Return value is AVDB. AVSRV

    09/09/13 16:58:46 [INFO] execution SQL like [USR@SRC] select db_link in user_db_links where db_link =: 1

    09/09/13 16:58:46 [INFO] Using AVDB bind value. AVSRV

    09/09/13 16:58:46 [INFO] Return value is AVDB. AVSRV

    09/09/13 16:58:46 [INFO] the Execute SQL as database link [USR@SRC] drop "AVDB. AVSRV ".

    09/09/13 16:58:46 [INFO] execution SQL like [USR@SRC] select the version of v$ instance

    09/09/13 16:58:46 [INFO] Return value = 11.2.0.1.0

    09/09/13 16:58:46 [INFO] creating DB link using AVDB. AVSRV, AVSRCUSR1, {avsrcusr_pwd}, Lugaopc, 1521, orcl

    09/09/13 16:58:46 [INFO] login as srcuser_ora01 to @(DESCRIPTION = (ADDRESS = (PROTOCOL = tcp)(HOST=Lugaopc) (PORT = 1521)) (CONNECT_DATA = (SERVICE_NAME = orcl)))

    09/09/13 16:58:46 [INFO] output of SQLPlus

    09/09/13 16:58:46 [INFO]

    09/09/13 16:58:46 [INFO] Package created.

    09/09/13 16:58:46 [INFO]

    09/09/13 16:58:46 [INFO] no error.

    09/09/13 16:58:47 [INFO]

    09/09/13 16:58:47 [INFO] package body created.

    09/09/13 16:58:47 [INFO]

    09/09/13 16:58:47 [INFO] no error.

    09/09/13 16:58:47 [INFO]

    09/09/13 16:58:47 [INFO] Package created.

    09/09/13 16:58:47 [INFO]

    09/09/13 16:58:47 [INFO] no error.

    09/09/13 16:58:47 [INFO]

    09/09/13 16:58:47 [INFO] package body created.

    09/09/13 16:58:47 [INFO]

    09/09/13 16:58:47 [INFO] no error.

    09/09/13 16:58:47 [INFO] execution SQL like [USR@SRC] select distinct name of user_errors, whose name =: 1

    09/09/13 16:58:47 [INFO] bind Using DBMS_SRC_STREAMS_COLLECTOR value

    09/09/13 16:58:47 [INFO] Return value = null

    09/09/13 16:58:47 [ERROR] could not get by using jdbc connection AV source user:oracle:oci:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=Lugaopc)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=orcl)))

    09/09/13 16:58:47 [ERROR] ORA-01017: name of user and password invalid. connection refused

    java.sql.SQLException: ORA-01017: name of user and password invalid. connection refused

    at oracle.jdbc.driver.T2CConnection.checkError(T2CConnection.java:765)

    at oracle.jdbc.driver.T2CConnection.logon(T2CConnection.java:414)

    to oracle.jdbc.driver.PhysicalConnection. < init > (PhysicalConnection.java:546)

    to oracle.jdbc.driver.T2CConnection. < init > (T2CConnection.java:162)

    at oracle.jdbc.driver.T2CDriverExtension.getConnection(T2CDriverExtension.java:53)

    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:521)

    at java.sql.DriverManager.getConnection(DriverManager.java:525)

    at java.sql.DriverManager.getConnection(DriverManager.java:140)

    to oracle.av.avca.jdbc.JdbcConnection. < init > (JdbcConnection.java:87)

    at oracle.av.orcldb.DAO.initConnection(DAO.java:79)

    to oracle.av.orcldb.DAO. < init > (DAO.java:64)

    at oracle.av.orcldb.commands.AddCollector.setupCollector(AddCollector.java:746)

    at oracle.av.orcldb.commands.AddCollector.execute(AddCollector.java:230)

    at oracle.av.orcldb.Command.process(Command.java:89)

    at oracle.av.orcldb.Main.process(Main.java:118)

    at oracle.av.orcldb.Main.main(Main.java:132)

    I searched the forum at my best level without clear solution

    Concerning

    Sadik

    avorcldb add_collector - REDO SrcName orcl nom_agent - avagent01 - colltype - av Lugaopc:1521:orcl

    Specify the connection string to the Vault check server not in the source database



  • JDBC connection does not with ORA-12514

    Hi all

    I also have problems with the connection to the DB CARS because the listener does not recognize the name of the service. I read many messages from the forum itself here and elsewhere and I just can't understand it. Everything seems in order, so I'm a little confused as to why it does not work.

    Thus, some specifications: I actually use SAP as advanced application to connect to the DB.

    DB is RAC 11203, two nodes.

    OS: Linux RH6

    Headphones and remote headphones are a race to the top.

    JDBC connection string fails:

    JDBC:Oracle:Thin:@(Description=(Address=(Protocol=TCP)(Host=virtualhost1)(port=1527))(Address=(Protocol=TCP)(Host=virtualhost2)(port=1527)) (CONNECT_DATA = (SERVICE_NAME = MYSERVICENAME. «"" WORLD)))»»»

    I check that the service is available in the cluster:

    ORA. < dbname >. myServiceName.svc online on physicalhostname1

    When I check the status of the listener on node1 he mentions the MYSERVICENAME downstairs so it's here

    [oracle@physicalhost1 bin] $ lsnrctl serv < DBNAME >. WORLD

    LSNRCTL for Linux: Version 11.2.0.3.0 - Production on 2013-SEP-07 16:43:11

    Copyright (c) 1991, 2011, Oracle.  All rights reserved.

    Connection to (DESCRIPTION = (SDU = 32768) (ADDRESS = (= SAP COMMUNITY. (World) (Protocol = TCP (port = 1527))(Host=virtualhost1)) (LOAD_BALANCE = OFF)(Failover=on) (CONNECT_DATA = (GLOBAL_NAME = < DBNAME >. WORLD) (SERVICE_NAME = < DBNAME >. «"" WORLD)))»»»
    Summary of services...
    Service '< DBNAME >' has 1 instance (s).
    Instance ' < DBNAME > 001 ", State LOAN, has 1 operation for this service...
    Managers:
    "DEDICATED" set up: 0 denied: 0 status: ready
    LOCAL SERVER
    Service ' < DBNAME > 001 "has 2 occurrences.
    Instance ' < DBNAME > 001 ', status UNKNOWN, has 1 operation for this service...
    Managers:
    "DEDICATED" set up: 0 denied: 0
    LOCAL SERVER
    Instance ' < DBNAME > 001 ", State LOAN, has 1 operation for this service...
    Managers:
    "DEDICATED" set up: 0 denied: 0 status: ready
    LOCAL SERVER
    Service ' < DBNAME > 002 "a 2 occurrences.
    Instance ' < DBNAME > 001 ", State LOAN, has 1 operation for this service...
    Managers:
    "DEDICATED" set up: 0 denied: 0 status: ready
    LOCAL SERVER
    Instance ' < DBNAME > 002 ", status UNKNOWN, has 1 operation for this service...
    Managers:
    "DEDICATED" set up: 0 denied: 0
    LOCAL SERVER
    Service "MYSERVICENAME" has 1 instance (s).
    Instance ' < DBNAME > 001 ", State LOAN, has 1 operation for this service...
    Managers:
    "DEDICATED" set up: 0 denied: 0 status: ready
    LOCAL SERVER
    The command completed successfully

    When I check the node database in sqlplus

    SQL > show the service_name parameter

    VALUE OF TYPE NAME
    ------------------------------------ ----------- ------------------------------
    service name string < DBNAME > 002, < DBNAME > 001, < DBNAME >, myservicename

    That's where. The database is running.

    I am spent days on this and I am unable to understand. I tried to re - register the name of service to SIR with lowercase, uppercase. In fact, when I joined the service I used capital letters, do not know why crsstat it shows always lowercase. Also in sqlplus I see lowercase. I do know that if it's case sensitive at all, but shows the despair that I really tried everything. I think that the fact that I am using SAP is not serious as long as any application - what is uses the thin JDBC connection string.

    Help, please.

    Your JDBC connection string requires a service MYSERVICENAME. WORLD, it should be MYSERVICENAME.

  • ORA-12505 error ensures

    I tried to create the day before without the DG broker. However, I get this error in the primary alert log which I am not able to solve.
    Heartbeat PING [ARC6]: Unable to connect to the day before "to_standby". The error is 12505.
    Mon Jul 04 12:41:35 2011
    Logging of 12505 errors received on the eve
    Mon Jul 04 12:41:35 2011
    Errors in the d:\oracle\p11\saptrace\background\p11_arc6_1904.trc file:
    ORA-12505: TNS:listener is not currently of SID given in connect descriptor

    Heartbeat PING [ARC6]: Unable to connect to the day before "to_standby". The error is 12505.

    The primary server pFile
    * ._B_TREE_BITMAP_PLANS = FALSE
    * ._IN_MEMORY_UNDO = FALSE
    * ._INDEX_JOIN_ENABLED = FALSE
    * ._OPTIM_PEEK_USER_BINDS = FALSE
    * ._OPTIMIZER_MJC_ENABLED = FALSE
    * ._SORT_ELIMINATION_COST_RATIO = 10
    * ._TABLE_LOOKUP_PREFETCH_SIZE = 0
    * .archive_lag_target = 0
    * .background_dump_dest = a: \oracle\P11\saptrace\background'
    * full = '10.2.0'
    * .control_file_record_keep_time = 30
    *.control_files='d:\oracle\P11\origlogA\cntrl\cntrlP11.dbf','d:\oracle\P11\origlogB\cntrl\cntrlP11.dbf','d:\oracle\P11\sapdata1\cntrl\cntrlP11.dbf '
    * .core_dump_dest = a: \oracle\P11\saptrace\background'
    * .db_block_size = 8192
    * .db_cache_size = 260938137
    * .db_files = 254
    * .db_name = "P11".
    * .db_unique_name = "P11_primary".
    * .dml_locks = 4000
    * .event = 10191 trace the context of name forever, level 1'
    *. FAL_Client = "to_primary."
    *. FAL_Server = "to_standby."
    *. FILESYSTEMIO_OPTIONS = "setall".
    * .job_queue_processes = 1
    * .local_listener ='(ADRESSE = (PROTOCOL = TCP) (HOST = 10.0.1.104)(PORT = 1521))'
    * .log_archive_config = 'dg_config = (P11_disaster, P11_primary)'
    *. Log_archive_dest_1 = 'LOCATION = C:\oracle\P11\oraarch\P11arch VALID_FOR =(ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME = P11_primary'
    * .log_archive_dest_2 = "SERVICE = to_standby LGWR ASYNC DELAY = 5 VALID_FOR = (ONLINE_LOGFILES, PRIMARY_ROLE) DB_UNIQUE_NAME = P11_disaster'"
    * .log_archive_dest_state_1 = 'enable '.
    * .log_archive_dest_state_2 = 'ENABLE '.
    * .log_archive_max_processes = 10
    * .log_archive_min_succeed_dest = 1
    * .log_buffer = 1048576
    * .log_checkpoint_interval = 0
    * .log_checkpoints_to_alert = true
    * .open_cursors = 800
    * .parallel_execution_message_size = 16384
    * .pga_aggregate_target = 347917516
    * runoff = 80
    * .query_rewrite_enabled = "false".
    * .recyclebin = "off".
    * .remote_login_passwordfile = "exclusive."
    * .remote_os_authent = true
    * .replication_dependency_tracking = false
    * Once = 96
    * .sga_max_size = 521876275
    * .shared_pool_reserved_size = 26093813
    * .shared_pool_size = 300938137
    * .sort_area_retained_size = 0
    * .sort_area_size = 2097152
    * .standby_file_management = "AUTO".
    * .star_transformation_enabled = 'true '.
    * .undo_management = "AUTO".
    * .undo_retention = 43200
    * .undo_tablespace = "PSAPUNDO".
    * .user_dump_dest = a: \oracle\P11\saptrace\usertrace'

    Standby server pFile

    * ._B_TREE_BITMAP_PLANS = FALSE
    * ._IN_MEMORY_UNDO = FALSE
    * ._INDEX_JOIN_ENABLED = FALSE
    * ._OPTIM_PEEK_USER_BINDS = FALSE
    * ._OPTIMIZER_MJC_ENABLED = FALSE
    * ._SORT_ELIMINATION_COST_RATIO = 10
    * ._TABLE_LOOKUP_PREFETCH_SIZE = 0
    * .background_dump_dest = a: \oracle\P11\saptrace\background'
    * full = '10.2.0'
    * .control_file_record_keep_time = 30
    *.control_files='d:\oracle\P11\origlogA\cntrl\control01.ctl','d:\oracle\P11\origlogB\cntrl\control02.ctl','d:\oracle\P11\sapdata1\cntrl\control03.CTL '
    * .core_dump_dest = a: \oracle\P11\saptrace\background'
    * .db_block_size = 8192
    * .db_cache_size = 155870822
    * .db_files = 254
    * .db_name = "P11".
    * .db_unique_name = "P11_disaster".
    * .dml_locks = 4000
    * .event = 10191 trace the context of name forever, level 1'
    *. FAL_Client = "to_standby."
    *. FAL_Server = "to_primary."
    *. FILESYSTEMIO_OPTIONS = "setall".
    * .job_queue_processes = 1
    * .local_listener ='(ADRESSE = (PROTOCOL = TCP) (HOST = 10.0.1.102)(PORT = 1521))'
    * .log_archive_config = 'DG_CONFIG = (P11_primary, P11_disaster)'
    *. Log_archive_dest_1 = 'LOCATION = C:\oracle\P11\oraarch\P11arch VALID_FOR =(ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME = P11_disaster'
    * .log_archive_dest_2 = "SERVICE = to_primary LGWR ASYNC DELAY = 5 VALID_FOR = (ONLINE_LOGFILES, PRIMARY_ROLE) DB_UNIQUE_NAME = P11_primary'"
    * .log_archive_dest_state_1 = 'enable '.
    * .log_archive_dest_state_2 = 'enable '.
    * .log_archive_max_processes = 10
    * .log_buffer = 1048576
    * .log_checkpoint_interval = 0
    * .log_checkpoints_to_alert = true
    * .open_cursors = 800
    * .parallel_execution_message_size = 16384
    * .pga_aggregate_target = 207827763
    * runoff = 80
    * .query_rewrite_enabled = "false".
    * .recyclebin = "off".
    * .remote_login_passwordfile = "exclusive."
    * .remote_os_authent = true
    * .replication_dependency_tracking = false
    * Once = 96
    * .sga_max_size = 311741644
    * .shared_pool_reserved_size = 15587082
    * .shared_pool_size = 300870822
    * .sort_area_retained_size = 0
    * .sort_area_size = 2097152
    * .standby_file_management = "AUTO".
    * .star_transformation_enabled = 'true '.
    * .undo_management = "AUTO".
    * .undo_retention = 43200
    * .undo_tablespace = "PSAPUNDO".
    * .user_dump_dest = a: \oracle\P11\saptrace\usertrace'

    Primary file TNSnames

    ################
    # File...: tnsnames.ora
    # Created...: created by SAP AG, R/3 rel. > = 6.10
    # Name...:
    # Date of...:
    # @(#) $Id: / / bc/700-1_REL/src/ins/SAPINST/impl/NPT/ora/ind/TNSNAMES. ORA #4 $
    ################
    P11. WORLD =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (= SAP COMMUNITY. WORLD)
    (PROTOCOL = TCP)
    (HOST = 10.0.1.104)
    (PORT = 1527)
    )
    )
    (CONNECT_DATA =
    (SID = P11)
    (GLOBAL_NAME = P11. WORLD)
    )
    )
    TO_STANDBY. WORLD =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (= SAP COMMUNITY. WORLD)
    (PROTOCOL = TCP)
    (HOST = 10.0.1.102)
    (PORT = 1527)
    )
    )
    (CONNECT_DATA =
    (SID = P11)
    (GLOBAL_NAME = P11_DISASTER. WORLD)

    )

    )
    TO_PRIMARY. WORLD =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (= SAP COMMUNITY. WORLD)
    (PROTOCOL = TCP)
    (HOST = 10.0.1.104)
    (PORT = 1527)
    )
    )
    (CONNECT_DATA =
    (SID = P11)
    (GLOBAL_NAME = P11_PRIMARY. WORLD)

    )

    )

    LISTENER_P11. WORLD = (address = (protocol = tcp (port = 1527))(host=10.0.1.104))

    Primary listener.ora
    ################
    # File...: listener.ora
    # Created...: created by SAP AG, R/3 rel. > = 6.10
    # Name...:
    # Date of...:
    # @(#) $Id: / / bc/700-1_REL/src/ins/SAPINST/impl/NPT/ora/ind/LISTENER. ORA #4 $
    ################
    ADMIN_RESTRICTIONS_LISTENER = we
    LISTENER =
    (ADDRESS_LIST =
    (ADDRESS =
    (PROTOCOL = IPC)
    (KEY = P11. WORLD)
    )
    (ADDRESS =
    (PROTOCOL = IPC)
    (KEY = P11)
    )
    (ADDRESS =
    (= SAP COMMUNITY. WORLD)
    (PROTOCOL = TCP)
    (HOST = prod104)
    (PORT = 1527)
    )
    )
    STARTUP_WAIT_TIME_LISTENER = 0
    CONNECT_TIMEOUT_LISTENER = 10
    TRACE_LEVEL_LISTENER = OFF


    Tnsnames.ora standby
    ################
    # File...: tnsnames.ora
    # Created...: created by SAP AG, R/3 rel. > = 6.10
    # Name...:
    # Date of...:
    # @(#) $Id: / / bc/700-1_REL/src/ins/SAPINST/impl/NPT/ora/ind/TNSNAMES. ORA #4 $
    ################
    ################
    # File...: tnsnames.ora
    # Created...: created by SAP AG, R/3 rel. > = 6.10
    # Name...:
    # Date of...:
    # @(#) $Id: / / bc/700-1_REL/src/ins/SAPINST/impl/NPT/ora/ind/TNSNAMES. ORA #4 $
    ################
    P11. WORLD =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (= SAP COMMUNITY. WORLD)
    (PROTOCOL = TCP)
    (HOST = 10.0.1.104)
    (PORT = 1527)
    )
    )
    (CONNECT_DATA =
    (SID = P11)
    (GLOBAL_NAME = P11. WORLD)
    )
    )
    TO_STANDBY. WORLD =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (= SAP COMMUNITY. WORLD)
    (PROTOCOL = TCP)
    (HOST = 10.0.1.102)
    (PORT = 1527)
    )
    )
    (CONNECT_DATA =
    (SID = P11)
    (GLOBAL_NAME = P11_STANDBY. WORLD)

    )

    )
    TO_PRIMARY. WORLD =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (= SAP COMMUNITY. WORLD)
    (PROTOCOL = TCP)
    (HOST = 10.0.1.104)
    (PORT = 1527)
    )
    )
    (CONNECT_DATA =
    (SID = P11)
    (GLOBAL_NAME = P11_PRIMARY. WORLD)

    )

    )


    LISTENER_P11. WORLD = (address = (protocol = tcp (port = 1527))(host=10.0.1.102))



    Standby listener.ora

    ################
    # File...: listener.ora
    # Created...: created by SAP AG, R/3 rel. > = 6.10
    # Name...:
    # Date of...:
    # @(#) $Id: / / bc/700-1_REL/src/ins/SAPINST/impl/NPT/ora/ind/LISTENER. ORA #4 $
    ################
    ADMIN_RESTRICTIONS_LISTENER = we
    LISTENER =
    (ADDRESS_LIST =
    (ADDRESS =
    (PROTOCOL = IPC)
    (KEY = P11. WORLD)
    )
    (ADDRESS =
    (PROTOCOL = IPC)
    (KEY = P11)
    )
    (ADDRESS =
    (= SAP COMMUNITY. WORLD)
    (PROTOCOL = TCP)
    (HOST = 10.0.1.102)
    (PORT = 1527)
    )
    )
    STARTUP_WAIT_TIME_LISTENER = 0
    CONNECT_TIMEOUT_LISTENER = 10
    TRACE_LEVEL_LISTENER = OFF

    Please advice.

    Concerning

    Published by: dharm.singh on July 4, 2011 12:33 AM

    As you can see on the lsnrctl status output doesn't support any service

    Try adding the SID_LIST_LISTENER parameter in listener.ora file

    Check out this link and SID_LIST_LISTENER parameter

    http://www.Oracle-base.com/articles/9i/DataGuard.php

  • ORA-01017: name of user and password invalid. connection refused - Database Link

    Hi guys,.

    Could you help me, I have a problem connecting to a different database using the database link:

    * 1. I have added in the database 'customer' DEV2 tnsnanes.ora *.

    DEV =
    + (DESCRIPTION = +
    + (ADDRESS = (PROTOCOL = TCP) (HOST = 192.168.100.85)(PORT = 1521)) +.
    + (CONNECT_DATA = +
    + (SID = DEVDB) +.
    +)+
    +)+

    * 2. I tested my connection using tnsping *.

    Oracle@dev > tnsping dev

    AMT Ping utility for Linux: Version 10.2.0.1.0 - Production on July 10, 2010 14:35:35

    Copyright (c) 1997, 2005, Oracle.  All rights reserved.

    Use settings files:
    +/opt/Oracle/product/10.2/Db_1/network/admin/SQLNET.ora+


    TNSNAMES adapter used to resolve the alias
    Try to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP) (HOST = 192.168.100.85)(PORT = 1521)) (CONNECT_DATA = (SID = DEVDB)))
    OK (0 msec)
    Oracle@dev >

    * 3. In SQLPLUS of DEV2 I connect to my database using the tnsnames entry *.

    SQL > conn devuser/pwd001@dev
    Connected.

    * 4. I then create a database of link.*

    SQL > Create Database Link dev_Link
    + 2 Connect devuser +.
    + 3 identified by pwd001 +.
    + 4 using "DEV"; +

    Database link created.

    SQL >

    * 5. When I try to connect to the database using the database link, I get an error, but I'm sure that the password and user name are ok.*

    SQL > select * from global_name@dev_link;
    Select * from global_name@dev_link
    *+
    ERROR on line 1:
    ORA-01017: name of user and password invalid. connection refused
    ORA-02063: preceding the line of DEV_LINK


    SQL >


    What could be wrong...?

    Try to connect to the database via SQLPlus target using the tnsnames.ora entry: sqlplus bob@remote.

    If the target db is 11g, then breaking the password may be the matter. Try placiing the password in quotes when you create the database link.

    HTH - Mark D Powell.

  • ORA-02083 sqlplus: name of a illegal character data '-'

    Hello

    my database is 9.2.0.1.0

    I have a problem with this error ORA-02083 sqlplus: name of the database a illegal character '-' and my problem is:
    -one made database link between two servers and it works OK
    -If I run select of SQLPLUS of all tables in this database link he also works OK

    - But if I try to create the package (by using the same query of tables which work with the select statement in SQLPUS) I get this error
    ORA-02083 sqlplus: name of a illegal character data '-'

    I tried SELECT * FROM DBA_DB_LINKS;
    and I get:
    OWNER, DB_LINK SERVICE USER CREATED

    DILERJI PUBLIC DILER DILERJI 30.06.10

    so it's only the database link and I checked if it's open maby
    ALTER SESSION CLOSE DATABASE LINK dilerji;
    and it is not
    ORA-02081: database link is not open



    If anyone can help me? Thank you

    Published by: Jero on June 30, 2010 12:49

    ORA-02083: name of the database a illegal character 'string. '
    Cause: the database name provided can only contain A - Z, 0-9, '_', ' # ', ' $' '.' and ' @' characters.
    Action: no
    http://download.Oracle.com/docs/CD/E11882_01/server.112/e10880/E1500.htm#sthref1249

    Have you checked the GLOBAL_NAME of the remote database?
    (SQL > select * from global_name ;))

  • Start little problem-ORA-07446: sdnfy: incorrect value "for parameter

    what I am doing wrong?

    SQL > startup nomount pfile=/oracle/product/9.2.0.6/dbs/initncersp.ora;
    ORA-00444: background process 'PMON' failed during startup
    ORA-07446: sdnfy: incorrect value "for the parameter.

    -rw - r - r - 1 oracle dba 466 Jan 21 11:11 initncersp.ora
    Oracle: tulppwradb02:ncersp > pwd
    /Oracle/product/9.2.0.6/DBS

    *************
    Oracle: tulppwradb02:ncersp > vi initncersp.ora
    "initncersp.ora" 127 lines, 3788 characters
    ##############################################################################
    # Copyright (c) 1991, 2001, 2002 by Oracle Corporation
    ##############################################################################

    ###########################################
    # Archive
    ###########################################
    Log_archive_dest = ' / archive_nmarket/ncersp.
    log_archive_format='arch.ncersp.%s_%t.log'
    log_archive_start = true

    ###########################################
    IO and cache memory #.
    ###########################################
    DB_BLOCK_SIZE = 8192
    db_cache_size = 25165824
    db_file_multiblock_read_count = 16
    DB_FILES = 400

    ###########################################
    # The library Cache and sliders
    ###########################################
    open_cursors = 500

    ###########################################
    # Identification of the database
    ###########################################
    db_domain =""
    db_name = ncersp
    # Global Naming - apply as a dblink has same name as the db, that it connects
    global_names = TRUE

    ###########################################
    # Diagnostic and statistical
    ###########################################
    background_dump_dest = / oracle/admin/ncersp/bdump
    core_dump_dest = / oracle/admin/ncersp/cdump
    user_dump_dest = / oracle/admin/ncersp/udump
    TIMED_STATISTICS = TRUE

    ###########################################
    # Configuration file
    ###########################################
    control_files = ("/ db01/oradata/ncersp/ncerspcontrol01.ctl","/db01/oradata/ncersp/ncerspcontrol02.ctl", "/ db01/oradata/ncer")
    SP/ncerspcontrol03. CTL")

    ###########################################
    # Identification of the instance
    ###########################################
    instance_name = ncersp

    ###########################################
    # Work queue
    ###########################################
    JOB_QUEUE_PROCESSES = 0 #zero for maintenance


    ###########################################
    # Optimizer
    ###########################################
    hash_join_enabled = TRUE
    #query_rewrite_enabled = TRUE
    #query_rewrite_integrity = "trusted."
    #star_transformation_enabled = FALSE

    ###########################################
    # Pools
    ###########################################
    JAVA_POOL_SIZE = 51200
    LARGE_POOL_SIZE = 8388608
    shared_pool_size = 55343360

    ###########################################
    # Process and Sessions
    ###########################################
    process = 100

    ###########################################
    Recovery and # redo Log
    ###########################################
    fast_start_mttr_target = 300

    ###########################################
    # Security and audit
    ###########################################
    Remote_login_passwordfile = 'EXCLUSIVE '.
    AUDIT_TRAIL = DB

    ###########################################
    # Sort, hash joins, index Bitmap
    ###########################################
    pga_aggregate_target = 25165824
    sort_area_size = 1024000

    #######################################################
    # Need Varification for under parameters of primary s/n
    #######################################################
    ###########################################
    # Various
    ###########################################
    aq_tm_processes = 1
    compatible = 9.2.0.0.0
    log_buffer = 32768
    log_checkpoint_interval = 10000
    log_checkpoints_to_alert = TRUE
    max_dump_file_size = '10240'
    OS_ROLES = FALSE
    remote_os_roles = FALSE
    os_authent_prefix = "

    ###########################################
    # System managed Undo and Rollback Segments
    ###########################################
    UNDO_MANAGEMENT = AUTO
    UNDO_RETENTION = 10800
    undo_tablespace = UNDOTBS1
    #utl_file_dir ='* '



    ###########################################
    # OLD SETTINGS DB
    ###########################################
    #db_block_buffers = 550
    #resource_limit = true
    #parallel_max_servers = 5 # SMALL
    #global_names = TRUE
    #job_queue_interval = 60

    There may be additional or better clues in file alert_SID.log

Maybe you are looking for