NLS problem with sqlplus

Hi there,
I have a 9i database running on a windows machine, and I am trying to connect from another windows machine using sqlplus. When I try to login I get the error message:
ORA-12705: invalid or unknown NLS parameter value specified
I don't really know what it means or what I have to do? is it a problem on the server or on the client?
Can someone help me on this one?
Regards
Johnny

ORA-12705 invalid or unknown NLS parameter value specified
Cause: There are two possible causes: Either an attempt was made to issue an ALTER SESSION statement with an invalid NLS parameter or value; or the NLS_LANG environment variable contains an invalid language, territory, or character set.
Action: Check the syntax of the ALTER SESSION statement and the NLS parameter, correct the syntax and retry the statement, or specify correct values in the NLS_LANG environment variable. For more information about the syntax of the ALTER SESSION statement, see the Oracle9i SQL Reference
you have to correct that value in NLS_LANG enviroment variable of your OS.
Query NLS_LANG value in your server and put it equal in
your client.
Joel P�rez

Similar Messages

  • Strange problem with SQLPLUS when client and server on the same box

    Hi,
    I have the problem with SQLPLUS when clinet and server on the same machine.
    With client and server on the same machine i am running the command
    sqlplus -l username/password@connect_identifier as SYSDBA.
    With this command, even if you pass in wrong username or wrong password or both as wrong you can able to connect to database and execute queries.
    Once Connect_identifier is correct and trying to log in as SYSDBA ,sqlplus will log in to DB with any username and password.
    How to get rid of this behaviour. Is there any way to do this.
    I am running this command by creating a process in C#
    Edited by: user11000236 on Jun 16, 2009 10:31 AM

    user11000236 wrote:
    Thanks for the info.
    How does Oracle/SQLPLUS allows any username or password to log in to DB with SYSDBA Privillages? What is the concept behind this.?
    This is explainted in the above mentioned link:
    Operating system authentication takes precedence over password file authentication. If you meet the requirements for operating system authentication, then even if you use a password file, you will be authenticated by operating system authentication.

  • Problem with sqlplus with whitespace in the path of the @ command

    I'm running Oracle 11g on Linux and I'm trying to run a script which will create my database. This script runs fine on windows, but when I test it on Linux, I get the following error:
    SP2-0556: Invalid File NameThe problem may be that the path to the file name has a space in it. I'm going to simplify the problem down to one of the many commands I run in the file to make it simple. The sample command I'm trying to run looks like this:
    sqlplus [uname]/[pw] @'../database/My Schema/create_sequence.sql'the create_sequence.sql file has two simple create sequence commands that run fine by themselves. I strongly suspect it is due to the white space because when I change the directory name from My Schema to MySchema and alter the above sqlplus command accordingly, the script runs fine.
    Like I said, this script works in windows with the spaces, but not in Linux. I suspect spaces may not be supported, but I was wondering if anyone knew any different or it there is a work-around?
    side note: running a command like:
    more ../database/My\ Schema/create_sequence.sqlor
    more '../database/My Schema/create_sequence.sql'prints the contents of the file to the console as you would expect. So, I think this is sqlplus (and linux) specific.
    Edited by: user10887698 on Jul 28, 2009 4:21 PM
    code markup!!!

    user10887698 wrote:
    I'm running Oracle 11g on Linux ...
    ..when I change the directory name from My Schema to MySchema and alter the above sqlplus command accordingly, the script runs fine.i really can't see why you are considering this as a problem.
    On linux, you can't create directory that contains spaces between letters, like let say : fol der. Doing a mkdir fol der would create two folders,
    one named fol and the other named der.
    By information you provided , it's obvious that the exact and the correct full path to the create_sequence.sql file is ...database/MySchema/create_sequence.sql.
    Can you position yourself in the directory where create_sequence.sql file is and type pwd to confirm the correct path?

  • Problem with SQLPlus while retriving the data.

    Hi all,
    SQL Plus while accessing one table named invdet(having around 900000 records) with line size option increased to 1000 it was showing error(application error : access voilation) after getting around 100-200 records.
    Platform : Windows NT on a P-III machine.
    Plz. give me the solution.
    Thanks
    Vijaykumar.

    Vijaykumar,
    You should work with Oracle Support on this. If the problem is not already known, they will log a bug for you.
    They will want to know which version of SQL*Plus and the database you are using and will want a testcase.
    - CJ

  • Problem with sqlplus when called from forms

    Dear friends,
    I have the following problem, we are using forms 10g and database 10g,we are using client_host command to call sqlplus from form and the query which is being run by sqlplus is supposed to take an input from the client and return results. there is no problem in that. but the problem is the sqlplus window opens only in minimized mode and the users wants it open in maximized mode by default.
    this is the code i am using to do this
    pat:='sqlplusw -s'||:global.text||'@i:\sqls\codewise.sql'
    client_host(pat);
    please help me
    prawin

    I'm not sure allowing end users access to a sqlplus session is such a good idea. A savvy user having a bad hair day and becoming disgruntled could wreak havoc on your database if he/she has the right permissions. Besides, I've heard rumors that Forms is really good at accepting user input, querying the database, and displaying the results :P

  • Problem with sqlplus copy command

    When I try to use the SQLPlus Copy command (with Append or Insert action) with a 8.1.7 source DB and a 9.2.0.4 destination DB, I receive the "CPY0006: Select list has more columns than destination table" error.
    The tables are identical in both DBs so I am confused.
    Just to make sure the tables were identical, I then used the Copy command with the Create option and used a new table name.
    That worked, however if I then try to use the Copy with an Insert or Append action against the table I just created, I get the error again.
    I am using SQLPlus 8.1.6.0.0
    Output from SQL*Plus:
    NTEG> SET COPYCOMMIT 40;
    NTEG> SET ARRAYSIZE 1000;
    NTEG> COPY FROM xxxxx/xxxxx@nteg -
    TO xxxxx/xxxxx@DEV -
    INSERT sysadm.PS_ANIMAL_TBL -
    USING select * FROM sysadm.PS_ANIMAL_TBLArray fetch/bind size is 1000. (arraysize is 1000)
    Will commit after every 40 array binds. (copycommit is 40)
    Maximum long size is 80. (long is 80)
    CPY0006: Select list has more columns than destination table
    Descr from both DBs
    NTEG> descr ps_animal_tbl
    Name
    ANIMAL_CD
    DESCR50
    DESCRSHORT
    DEV> descr ps_animal_tbl;
    Name
    ANIMAL_CD
    DESCR50
    DESCRSHORT

    SQL> help copy
    COPY
    COPY copies data from a query to a table in a local or remote
    database.
    COPY {FROM database | TO database | FROM database TO database}
    APPEND destination_table
    [(column, column, column, ...)] USING query
    where database has the following syntax:
    username[password]@connect_identifier
    SQL>
    Joel P�rez

  • Problem with round

    Hi!!!
    I have a dude. When I use select round((9013.99/12)*6,2) from dual; the result is 4506.99. Why?? I think it should be 4507. Is it a problem with sqlplus? or I should set a parameter?
    Regards.

    Just assuming, these might be the reasons for differing in results. Not sure, what oracle is doing inside! Check below scenarios.
    -- Check 1(Pass computation value then change it to NUMBER for assuring ROUND() of understanding to treat the exact display value!)
    select val, round(to_number(val), 2) res
    from
    (select (9013.99/12)*6 val from dual)
           VAL        RES
      4506.995       4507
    -- Check 2 ( Pass a static number)
    select val, round(val, 2) res
    from
    (select 4506.995 val from dual)
           VAL        RES
      4506.995       4507
    -- Check 3 ( Initial oracle computation might not be the exact number value which round is getting here as parameter!)
    select val, round(val, 2) res
    from
    (select (9013.99/12)*6 val from dual)
           VAL        RES
      4506.995    4506.99

  • Starting DB NLS problem

    Hi
    I had installed Oracle 9iR2.0.4.0 on SuSE 9.0.
    When I try to strat up the database from the 'sqlplus'
    "$sqlplus /nolg
    SQL>conn / as sysdba"
    I always get an error saying that I have wrong NLS value with error code "ORA-12705"
    Same also from the dbastudio
    my NLS_LANG is ARABIC_EGYPT.AR8MSWIN1256
    and I had tried these values too
    ARABIC_EGYPT.AR8ISO8856P5
    AMERICAN_AMERICA.WE8MISO8856P1
    it is exported and inserted in the '.bashrc'
    We didn't face such problem on 9iR2.0.1 either with RH9 or SuSE 9.0
    How we can start the database?

    Hi,
    Problem starting DB and not able to use sqlplus is two different thing.
    Assuming you have right now problem using sqlplus.
    Please check if your Environment variable like %PATH, %ORACLE_HOME is properly set. I suppose you have more than 1 oracle installed on that box.
    Regards
    Anurag Tibrewal.

  • Problem with dba_fga_audit_trail

    Hi All
    I am facing a problem with dba_fga_audit_trail
    I have a package which selects from this table.
    When I try to compile the package it gives an error
    saying "Insufficient privilges"
    If I run the same Select statement in SQLPLUS, it gives the output. I have got select, insert, update, delete permissions on this table.
    Any clues as to what is happening
    Please help !!
    Thanks
    Ashwin N.

    Note that role based privs. will not be available within the stored procedures. You have to explicitly grant the SELECT on dba_fga_audit_trail to the user who is creating the package.
    When you exported and imported the data from the other server, the grants on dba_fga_audit_trail would not have been transferred (since it is owned by SYS not the schema that you would have exported).
    Check the privs. on this SYS owned view on the database where it is working and give the same privs. to this user on the other database where you have an issue.

  • Problem with Roles and Triggers

    I'm having a strange problem with Roles and Triggers in Oracle. It's a little difficult to describe, so bear with me...
    I'm trying to create a trigger that inserts records into a table belonging to a different user/owner. Of course, the owner of this trigger needs rights to insert records into this other table. I find that if I add these rights directly to the owner of the trigger, everything works okay and the trigger compiles successfully.
    However, if I first create a Role and grant the "insert" rights to it, and then assign this role to the owner of the trigger, the trigger does not compile successfully.
    To illustrate this, here's an example script. I'm using Oracle 10g Release 2...
    -- Clean up...
    DROP TABLE TestUser.TrigTable;
    DROP TABLE TestUser2.TestTable;
    DROP ROLE TestRole;
    DROP TRIGGER TestUser.TestTrigger;
    DROP USER TestUser CASCADE;
    DROP USER TestUser2 CASCADE;
    -- Create Users...
    CREATE USER TestUser IDENTIFIED BY password DEFAULT TABLESPACE "USERS" TEMPORARY TABLESPACE "TEMP" QUOTA UNLIMITED ON "USERS";
    CREATE USER TestUser2 IDENTIFIED BY password DEFAULT TABLESPACE "USERS" TEMPORARY TABLESPACE "TEMP" QUOTA UNLIMITED ON "USERS";
    CREATE TABLE TestUser.TrigTable (TestColumn VARCHAR2(40));
    CREATE TABLE TestUser2.TestTable (TestColumn VARCHAR2(40));
    -- Grant Insert rights on TestTable to TestRole...
    CREATE ROLE TestRole NOT IDENTIFIED;
    GRANT INSERT ON TestUser2.TestTable TO TestRole;
    -- Add TestRole to TestUser. TestUser should now have rights to INSERT on TestTable
    GRANT TestRole TO TestUser;
    ALTER USER TestUser DEFAULT ROLE ALL;
    -- Now, create the trigger. This compiles unsuccessfully...
    CREATE TRIGGER TestUser.TestTrigger AFTER INSERT ON TestUser.TrigTable
    BEGIN
    INSERT INTO TestUser2.TestTable (TestColumn) VALUES ('Test');
    END;
    When I do a "SHOW ERRORS;" after this, I get:
    SQL> show errors;
    Errors for TRIGGER TESTUSER.TESTTRIGGER:
    LINE/COL ERROR
    2/3 PL/SQL: SQL Statement ignored
    2/25 PL/SQL: ORA-00942: table or view does not exist
    SQL>
    As I said above, if I just add the Insert rights directly to TestUser, the trigger compiles perfectly. Does anyone know why this is happening?
    Thanks!
    Adrian

    Hi Raghu,
    If the insert rights exist only on TestRole, and TestRole is assigned to TestUser, I can do the INSERT statement you suggest with no problems if I just execute it from SQLPlus (logged in as TestUser).
    The question is, why does the same INSERT fail when it's inside the trigger?

  • Problem with Application Login after upgrading to Oracle 11g

    I have a home-grown application with Oracle 10g database running under Windows XP Pro. Recently, I installed Oracle 11g and imported the application database from 10g to 11g (still want to keep the 10g running for a while). However, I now having problem with the application logging into the new 11g database. (Keep getting invalid user/name message).
    BTW, I have no problem accessing the 11g database through SQLPlus (logging in with the same name and password that I use for the application), and the connection test of NetManager (again using the same name and password that I use for the application) was successful.
    The application itself uses the old Borland BDE (Borland Database Engine) to access the 10g and 11g database. Testing confirms that BDE can access Oracle 11g with no problems.
    Any idea about the probable cause(s) of the problem?
    Thanks in advance,
    sg2000

    11g by default is case sensitive username/password.
    You can disable that with setting parameter SEC_CASE_SENSITIVE_LOGON to false.
    SQL> SHOW PARAMETER SEC_CASE_SENSITIVE_LOGON
    SQL> ALTER SYSTEM SET SEC_CASE_SENSITIVE_LOGON = FALSE;

  • Problem with date conversion

    I have read some topics about it, but still have problem :-(((
    When I insert data, I don't have any problem with a date. It looks like this:
         Statement stmt = con.createStatement();
              stmt.executeUpdate("BEGIN " +
                        "INSERT INTO employee VALUES (" +
                        "employee_t(idnum.nextval,'John','Double'," +
                        "to_date('21.01.1975','DD.MM.YYYY'), 20000))" +
                        "END;"); Now I am trying to update, and get the error:
      String query = "BEGIN UPDATE employee SET " +
    "first_name ='"+getJtxtfldFirst_name().getText()+"', "+
    "last_name = '"+getJtxtfldLast_name().getText()+"', "+
    "date_of_birth = to_date('1982-03-11','YYYY-MM-DD'), "+
                                     "END; ";
    Statement stmt = con.createStatement();
                   int rs = stmt.executeUpdate(query);
                   stmt.close();The error:
    java.sql.SQLException: ORA-06550: line 1, column 149:
    PLS-00338: unable to resolve "DATE_OF_BIRTH" as a column or row expression
    ORA-06550: line 1, column 7:
    PL/SQL: SQL Statement ignoredI have tried different variants, tried to parse... Just can't find where I make the error.
    If I comment this line, with a date, there are no any exceptions.
    This code in sqlplus works fine.

    And besides that, you don't need to wrap your SQL
    with the PL/SQL "BEGIN" and "END" tags; why invoke
    the PL/SQL parser if you're not using any PL/SQL
    features?
    I suspect your underlying problem is that the column
    isn't actually named "date_of_birth".You are quete right. It was my faulf. There was a field date_of_birthday. The oracle could say it more preciesly.
    With the statement it works fine also.
    Thank you for the answer and sorry for disturbing, I have forgotten to update the database and was sure I copied the new files... But updated the old one.

  • Problem with Java Stack- dev_w2 log mentioned.

    Hi everyone, I have a problem with Java Stack, I could not connect to XI home page,
    I am unable to login to j2ee engine using visual Administrator.
    Please go through the log below. And help me out to resolve this issue and let me know what could be the problem.
    trc file: "dev_w2", trc level: 1, release: "640"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\SXI\SYS\exe\run\dboraslib.dll' ...
    B  Library 'C:\usr\sap\SXI\SYS\exe\run\dboraslib.dll' loaded
    B  Version of 'C:\usr\sap\SXI\SYS\exe\run\dboraslib.dll' is "640.00", patchlevel (0.39)
    B  New connection 0 created
    M systemid   560 (PC with Windows NT)
    M relno      6400
    M patchlevel 0
    M patchno    43
    M intno      20020600
    M make:      multithreaded, Unicode
    M pid        4140
    M
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 2 4140) [dpxxdisp.c   1160]
    I  MtxInit: -2 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: JAVA is not active
    M  DpShMCreate: sizeof(wp_adm)          13160     (1316)
    M  DpShMCreate: sizeof(tm_adm)          2780232     (13832)
    M  DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    M  DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    M  DpShMCreate: sizeof(comm_adm)          290000     (580)
    M  DpShMCreate: sizeof(vmc_adm)          0     (372)
    M  DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 060A0040, size: 3195320)
    M  DpShMCreate: allocated sys_adm at 060A0040
    M  DpShMCreate: allocated wp_adm at 060A1B58
    M  DpShMCreate: allocated tm_adm_list at 060A4EC0
    M  DpShMCreate: allocated tm_adm at 060A4EE8
    M  DpShMCreate: allocated wp_ca_adm at 0634BB30
    M  DpShMCreate: allocated appc_ca_adm at 063518F0
    M  DpShMCreate: allocated comm_adm_list at 06353830
    M  DpShMCreate: allocated comm_adm at 06353848
    M  DpShMCreate: allocated vmc_adm_list at 0639A518
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 0639A540
    M  DpShMCreate: allocated wall_adm at 0639A548
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 2 initializing ....
    X  <ES> InitFreeList
    X  Using implementation flat
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.

    M  calling db_connect ...
    C  Got ORACLE_HOME=c:\oracle\ora92 from environment
    C  Client NLS settings: AMERICAN_AMERICA.UTF8
    C  Logon as OPS$-user to get SAPSXI's password
    C  Connecting as /@SXI on connection 0 ...
    C  Attaching to DB Server SXI (con_hdl=0,svchp=04494404,svrhp=04495074)

    C  Starting user session (con_hdl=0,svchp=04494404,srvhp=04495074,usrhp=0449D8AC)

    C  Now I'm connected to ORACLE
    C  Got SAPSXI's password from OPS$-user
    C  Disconnecting from connection 0 ...
    C  Closing user session (con_hdl=0,svchp=04494404,usrhp=0449D8AC)
    C  Now I'm disconnected from ORACLE
    C  Connecting as SAPSXI/<pwd>@SXI on connection 0 ...
    C  Starting user session (con_hdl=0,svchp=04494404,srvhp=04495074,usrhp=0449D8AC)
    C  Now I'm connected to ORACLE
    C  Database NLS settings: AMERICAN_AMERICA.UTF8
    C  Database instance sxi is running on STARXI with ORACLE version 9.2.0.5.0 since 20081020
    B  Connection 0 opened
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost         
    B  000 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20081020 123752 STARXI         
    M  db_connect o.k.
    I  MtxInit: 2 0 0
    M  SHM_PRES_BUF               (addr: 08230040, size: 4400128)
    M  SHM_ROLL_AREA          (addr: 62E40040, size: 77594624)
    M  SHM_PAGING_AREA          (addr: 08670040, size: 39845888)
    M  SHM_ROLL_ADM               (addr: 0AC80040, size: 775412)
    M  SHM_PAGING_ADM          (addr: 0AD40040, size: 525344)
    M  ThCreateNoBuffer          allocated 540152 bytes for 1000 entries at 0ADD0040
    M  ThCreateNoBuffer          index size: 3000 elems
    M  ThCreateVBAdm          allocated 12160 bytes (50 server) at 0AE60040
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 2 initializing ....
    X  Using implementation flat
    X  ES initialized.

    B  db_con_shm_ini:  WP_ID = 2, WP_CNT = 10
    B  dbtbxbuf: Buffer TABL  (addr: 103D00C8, size: 30000128, end: 1206C4C8)
    B  dbtbxbuf: Profile: max_objects = 5000, displace = 1, reorg = 1
    B  dbtbxbuf: request_unit = 2000, sync_reload = 5, inval_reload = 5
    B  dbtbxbuf: protect_shm = 0, force_checks = 0
    B  dbtbxbuf: tsize_retry = 14302848
    B  ***LOG BB0=> buffer TABL       started with length 30000128   bytes [dbtbxbuf#7 @ 15714] [dbtbxbuf1571 4]
    B  dbtbxbuf: Buffer TABLP (addr: 0E4000C8, size: 10240000, end: 0EDC40C8)
    B  dbtbxbuf: Profile: max_objects = 500, displace = 1, reorg = 1
    B  dbtbxbuf: request_unit = 2000, sync_reload = 5, inval_reload = 5
    B  dbtbxbuf: protect_shm = 0, force_checks = 0
    B  dbtbxbuf: tsize_retry = 5046656
    B  ***LOG BB0=> buffer TABLP      started with length 10240000   bytes [dbtbxbuf#7 @ 15714] [dbtbxbuf1571 4]
    B  dbtbxbuf: Reading TBX statistics:
    B  dbtbxbuf: 41 object entries precreated
    B  Layout of EIBUF buffer shared memory:
    B  0: 1 * 4 = 4
    B  1: 1 * 344 = 344
    B  2: 10 * 20 = 200
    B  3: 4001 * 48 = 192048
    B  4: 2000 * 232 = 464000
    B  5: 4001 * 4 = 16004
    B  6: 1 * 200 = 200
    B  7: 65 * 4 = 260
    B  8: 13754 * 256 = 3521024
    B  Tracing = 0, Shm Protection = 0, Force checks = 0
    B  dbexpbuf: Buffer EIBUF (addr: 0EDE00D0, size: 4194304, end: 0F1E00D0)
    B  ***LOG BB0=> buffer EIBUF      started with length 4096k      bytes [dbexpbuf#5 @ 2322] [dbexpbuf2322 ]
    B  Layout of ESM   buffer shared memory:
    B  0: 1 * 4 = 4
    B  1: 1 * 344 = 344
    B  2: 10 * 20 = 200
    B  3: 4001 * 48 = 192048
    B  4: 2000 * 232 = 464000
    B  5: 4001 * 4 = 16004
    B  6: 1 * 200 = 200
    B  7: 65 * 4 = 260
    B  8: 13754 * 256 = 3521024
    B  Tracing = 0, Shm Protection = 0, Force checks = 0
    B  dbexpbuf: Buffer ESM   (addr: 0F1F00D0, size: 4194304, end: 0F5F00D0)
    B  ***LOG BB0=> buffer ESM        started with length 4096k      bytes [dbexpbuf#5 @ 2322] [dbexpbuf2322 ]
    B  Layout of CUA   buffer shared memory:
    B  0: 1 * 4 = 4
    B  1: 1 * 344 = 344
    B  2: 10 * 20 = 200
    B  3: 3001 * 48 = 144048
    B  4: 1500 * 232 = 348000
    B  5: 3001 * 4 = 12004
    B  6: 1 * 200 = 200
    B  7: 193 * 4 = 772
    B  8: 5012 * 512 = 2566144
    B  Tracing = 0, Shm Protection = 0, Force checks = 0
    B  dbexpbuf: Buffer CUA   (addr: 0F6000D0, size: 3072000, end: 0F8EE0D0)
    B  ***LOG BB0=> buffer CUA        started with length 3000k      bytes [dbexpbuf#5 @ 2322] [dbexpbuf2322 ]
    B  Layout of OTR   buffer shared memory:
    B  0: 1 * 4 = 4
    B  1: 1 * 344 = 344
    B  2: 10 * 20 = 200
    B  3: 4001 * 48 = 192048
    B  4: 2000 * 232 = 464000
    B  5: 4001 * 4 = 16004
    B  6: 1 * 200 = 200
    B  7: 81 * 4 = 324
    B  8: 13754 * 256 = 3521024
    B  Tracing = 0, Shm Protection = 0, Force checks = 0
    B  dbexpbuf: Buffer OTR   (addr: 0F8F00D0, size: 4194304, end: 0FCF00D0)
    B  ***LOG BB0=> buffer OTR        started with length 4096k      bytes [dbexpbuf#5 @ 2322] [dbexpbuf2322 ]
    B  ***LOG BB0=> buffer CALE       started with length 500000     bytes [dbcalbuf#1 @ 2206] [dbcalbuf2206 ]
    B  dbtran INFO (init_connection '<DEFAULT>' [ORACLE:640.00]):
    B   max_blocking_factor =  15,  max_in_blocking_factor      =   5,
    B   min_blocking_factor =  10,  min_in_blocking_factor      =   5,
    B   prefer_union_all    =   0,  prefer_union_for_select_all =   0,
    B   prefer_fix_blocking =   0,  prefer_in_itab_opt          =   1,
    B   convert AVG         =   0,  alias table FUPD            =   0,
    B   escape_as_literal   =   1,  opt GE LE to BETWEEN        =   0,
    B   select *            =0x0f,  character encoding          = STD / <none>:-,
    B   use_hints           = abap->1, dbif->0x1, upto->2147483647, rule_in->0,
    B                         rule_fae->0, concat_fae->0, concat_fae_or->0

    M  PfHIndInitialize: memory=<0AEEC488>, header=<0AEEC488>, records=<0AEEC4D0>
    M  SecAudit(init_sel_info): init of SCSA completed: 02 slots used
    M  ***LOG AV6=> 02& [rsauwr1.c    1619]
    M  SsfSapSecin: automatic application server initialization for SAPSECULIB
    N  SsfSapSecin: Looking for PSE in database
    N  SsfPseLoad: started...(path=C:\usr\sap\SXI\DVEBMGS00\sec, AS=starxi, instanceid=00)

    N  SsfPseLoad: Downloading file C:\usr\sap\SXI\DVEBMGS00\sec\SAPSYS.pse (client:    , key: SYSPSE, len: 1078)
    N  SsfPseLoad: ended (1 of 1 sucessfully loaded, 1 checked...
    N  MskiCreateLogonTicketCache: Logon Ticket cache created in shared memory.
    N  MskiCreateLogonTicketCache: Logon Ticket cache pointer registered in shared memory.
    M  rdisp/reinitialize_code_page -> 0
    M  icm/accept_remote_trace_level -> 0
    M  rdisp/no_hooks_for_sqlbreak -> 0

    S  *** init spool environment
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 121963B0
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  1 spool work process(es) found
    S  frontend print via spool service enabled
    S  printer list size is 150
    S  printer type list size is 50
    S  queue size (profile)   = 300
    S  hostspool list size = 3000
    S  option list size is 30
    S      intervals: query=50, rescan=1800, global=300 info=120
    S      processing queue enabled
    S  creating spool memory service RSPO-RCLOCKS at 0FEB00A8
    S  doing lock recovery
    S  setting server cache root
    S  using server cache size 100 (prof=100)
    S  creating spool memory service RSPO-SERVERCACHE at 0FEB0370
    S    using messages for server info
    S  size of spec char cache entry: 297028 bytes (timeout 100 sec)
    S  size of open spool request entry: 2132 bytes
    S  immediate print option for implicitely closed spool requests is disabled


    A  -PXA--
    A  PXA INITIALIZATION
    A  PXA: Fragment Size too small: 73 MB, reducing # of fragments
    A  System page size: 4kb, admin_size: 5032kb.
    A  PXA allocated (address 67850040, size 150000K)
    A  System name
    A  ORACLE...........................SXI........20081004121019.....................................
    A  is used for RFC security.
    A  Sharedbuffer token: 41534050...33 (len: 111)====== 2b61c190857e36a8681ef39a...
    A  abap/pxa = shared protect gen_remote
    A  PXA INITIALIZATION FINISHED
    A  -PXA--

    A  ABAP ShmAdm initialized (addr=579F4000 leng=20955136 end=58DF0000)
    A  >> Shm MMADM area (addr=57E69DF0 leng=126176 end=57E88AD0)
    A  >> Shm MMDAT area (addr=57E89000 leng=16150528 end=58DF0000)
    A  RFC rfc/signon_error_log = -1
    A  RFC rfc/dump_connection_info = 0
    A  RFC rfc/dump_client_info = 0
    A  RFC rfc/cp_convert/ignore_error = 1
    A  RFC rfc/cp_convert/conversion_char = 23
    A  RFC rfc/wan_compress/threshold = 251
    A  RFC rfc/recorder_pcs not set, use defaule value: 2
    A  RFC rfc/delta_trc_level not set, use default value: 0
    A  RFC rfc/no_uuid_check not set, use default value: 0
    A  RFC Method> initialize RemObjDriver for ABAP Objects
    A  Hotpackage version: 9
    M  ThrCreateShObjects          allocated 10568 bytes at 0FFD0040
    M  ThVBStartUp: restart pending update requests

    M  ThVBAutoStart: update-auto-delete
    N  SsfSapSecin: putenv(SECUDIR=C:\usr\sap\SXI\DVEBMGS00\sec): ok
    N  SsfSapSecin: PSE C:\usr\sap\SXI\DVEBMGS00\sec\SAPSYS.pse found!

    N  =================================================
    N  === SSF INITIALIZATION:
    N  ===...SSF Security Toolkit name SAPSECULIB .
    N  ===...SSF trace level is 0 .
    N  ===...SSF library is C:\usr\sap\SXI\SYS\exe\run\sapsecu.dll .
    N  ===...SSF hash algorithm is SHA1 .
    N  ===...SSF symmetric encryption algorithm is DES-CBC .
    N  ===...sucessfully completed.
    N  =================================================
    N  MskiInitLogonTicketCacheHandle: Logon Ticket cache pointer retrieved from shared memory.
    N  MskiInitLogonTicketCacheHandle: Workprocess runs with Logon Ticket cache.
    W  =================================================
    W  === ipl_Init() called
    W    ITS Plugin: Path dw_gui
    W    ITS Plugin: Description ITS Plugin - ITS rendering DLL
    W    ITS Plugin: sizeof(SAP_UC) 2
    W    ITS Plugin: Release: 640, [6400.0.43.20020600]
    W    ITS Plugin: Int.version, [31]
    W    ITS Plugin: Feature set: [3]
    W    ===... Calling itsp_Init in external dll ===>
    W  === ipl_Init() returns 0, ITSPE_OK: OK
    W  =================================================
    M  MBUF info for hooks: MS component UP
    M  ThSetEnqName: set enqname by profile
    M  ThISetEnqname: enq name = >starxi_SXI_00                           <

    E  *************** EnqId_EN_ActionAtMsUpHook ***************
    E  Hook on upcoming Ms (with EnqSrv), get auth EnqId and check it locally
    E  Enqueue Info: enque/disable_replication = 2
    E  Enqueue Info: replication disabled


    E  *************** ObjShMem_CheckAuthoritativeEnqId ***************
    E  Checking authoritative EnqId from EnqSrv into ObjShMem
    E  ObjShMem_CheckAuthoritativeEnqId: ObjShMem ...
    E  EnqId.EnqTabCreaTime    = -999
    E  EnqId.RandomNumber      = -999
    E  ReqOrd.TimeInSecs       = -999
    E  ReqOrd.ReqNumberThisSec = -999
    E  ObjShMem_CheckAuthoritativeEnqId: ObjShMem ...
    E  EnqId.EnqTabCreaTime    = -999
    E  EnqId.RandomNumber      = -999
    E  ReqOrd.TimeInSecs       = -999
    E  ReqOrd.ReqNumberThisSec = -999
    E  ObjShMem_CheckAuthoritativeEnqId: EnqId is initial in ShMem
    E  ObjShMem_CheckAuthoritativeEnqId: Overwrite incoming auth EnqId, continue
    E  EnqId inscribed into initial ObjShMem: (ObjShMem_CheckAuthoritativeEnqId)
    E  -SHMEM--
    E  EnqId:          EnqTabCreaTime/RandomNumber    = 20.10.2008 12:38:10  1224486490 / 4140
    E  ReqOrd at Srv:  TimeInSecs/ReqNumberThisSec    = 20.10.2008 12:38:11  1224486491 / 1
    E  ReqOrd at Cli:  TimeInSecs/ReqNumberThisSec    = 20.10.2008 12:38:11  1224486491 / 1
    E  Status:         STATUS_OK
    E  -
    M  ThActivateServer: state = STARTING
    L  Begin of BtcSysStartRaise
    L  Raise event SAP_SYSTEM_START with parameter <starxi_SXI_00       >
    L  End of BtcSysStartRaise

    I  MPI<c>9#3 Peak buffer usage: 5 (@ 64 KB)

    M  *** WARNING => ThCheckReqInfo: req_info & DP_CANT_HANDLE_REQ
    M  return number range rc 12
    M  *** WARNING => ThNoGet: get from object (cli/obj/subobj/range = 000/ALAUTOUID /      /01) returned rc 12

    S  server @>SSRV:starxi_SXI_00@< appears or changes (state 1)
    B  table logging switched off for all clients

    S  server @>SSRV:starxi_SXI_00@< appears or changes (state 1)

    M  hostaddrlist return 0

    M  hostaddrlist return 0

    M  hostaddrlist return 0
    M  hostaddrlist return 0
    M  hostaddrlist return 0
    Regards,
    Varun.

    You probably made the same mistake as I did and added the tables manually to the "sample" database instead of the "sun-appserv-samples" database.
    marc

  • Oracle 10gR2 RAC EE 10.2.0.5 problem with one node.

    Hi, I have an Oracle Rac 10gR2 10.2.0.5 EE on SLES 10 on ibm ppc. My problem is that in crs don't appear that database is start in one instance. However the database is start when I use srvctl or sqlplus
    crsctl query crs softwareversion
    CRS active version on the cluster is [10.2.0.5.0]
    crsctl query crs activeversion
    CRS active version on the cluster is [10.2.0.5.0]
    oracle@agripa:/u01/oracle/app/product/102_64/crs/bin> ./srvctl config database
    ELIO3
    oracle@agripa:/u01/oracle/app/product/102_64/crs/bin> ./srvctl status database -d ELIO3
    La instancia ELIO32 se está ejecutando en el nodo julia
    La instancia ELIO31 no se está ejecutando en el nodo agripa
    agripa:/u01/oracle/app/product/102_64/crs/bin # ./crs_stat -t
    Nombre         Tipo           Destino   Estado    Host
    ora....31.inst application    ONLINE    OFFLINE
    ora....32.inst application    ONLINE    ONLINE    julia
    ora.ELIO3.db   application    ONLINE    ONLINE    julia
    ora....PA.lsnr application    ONLINE    OFFLINE
    ora....PA.lsnr application    ONLINE    OFFLINE
    ora.agripa.gsd application    ONLINE    OFFLINE
    ora.agripa.ons application    ONLINE    OFFLINE
    ora.agripa.vip application    ONLINE    ONLINE    agripa
    ora....IA.lsnr application    ONLINE    ONLINE    julia
    ora.julia.gsd  application    ONLINE    ONLINE    julia
    ora.julia.ons  application    ONLINE    ONLINE    julia
    ora.julia.vip  application    ONLINE    ONLINE    julia
    oracle@agripa:/u01/oracle/app/product/102_64/app/bin> ./srvctl start instance -d ELIO3 -i ELIO31
    PRKP-1001 : Error al iniciar la instancia ELIO31 en el nodo agripaThis command show an error, however the database is up.
    oracle@agripa:/u01/oracle/app/product/102_64/app/bin> sqlplus / as sysdba
    SQL*Plus: Release 10.2.0.5.0 - Production on Mié Sep 26 09:32:25 2012
    Copyright (c) 1982, 2010, Oracle.  All Rights Reserved.
    Conectado a:
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - Production
    With the Partitioning, Real Application Clusters, OLAP, Data Mining
    and Real Application Testing options
    SQL> select * from v$active_instances;
    INST_NUMBER INST_NAME
              2 julia:ELIO32
              4 agripa:ELIO31
    SQL>But crs, don't show it.
    agripa:/u01/oracle/app/product/102_64/crs/bin # ./crs_stat -t
    Nombre         Tipo           Destino   Estado    Host
    ora....31.inst application    ONLINE    OFFLINE
    ora....32.inst application    ONLINE    ONLINE    julia
    ora.ELIO3.db   application    ONLINE    ONLINE    julia
    ora....PA.lsnr application    ONLINE    OFFLINE
    ora....PA.lsnr application    ONLINE    OFFLINE
    ora.agripa.gsd application    ONLINE    OFFLINE
    ora.agripa.ons application    ONLINE    OFFLINE
    ora.agripa.vip application    ONLINE    ONLINE    agripa
    ora....IA.lsnr application    ONLINE    ONLINE    julia
    ora.julia.gsd  application    ONLINE    ONLINE    julia
    ora.julia.ons  application    ONLINE    ONLINE    julia
    ora.julia.vip  application    ONLINE    ONLINE    juliaSome logs...
    oracle@agripa:/u01/oracle/app/product/102_64/app/log/agripa/racg> cat ora.ELIO3.ELIO31.inst.log
    2012-09-26 09:35:45.108: [ COMMCRS][53473856]clsc_connect: (0x40002a0a6c0) no listener at (ADDRESS=(PROTOCOL=ipc)(KEY=ora_crsqs))
    2012-09-26 09:36:15.150: [    RACG][173648] [2346][173648][ora.ELIO3.ELIO31.inst]: end for resource = ora.ELIO3.ELIO31.inst, action = rundetach, status = -1, time = 300.600s
    agripa:/u01/oracle/app/product/102_64/crs/bin # ls -ltrach /var/tmp/.oracle/
    total 512
    srwxrwxrwx 1 oracle oinstall   0 2012-09-24 08:28 sagripaDBG_CSSD
    srwxrwxrwx 1 oracle oinstall   0 2012-09-24 08:28 sOracle_CSS_LclLstnr_crs_3
    srwxrwxrwx 1 oracle oinstall   0 2012-09-24 08:28 sOCSSD_LL_agripa_crs
    srwxrwxrwx 1 oracle oinstall   0 2012-09-24 08:28 sagripaDBG_EVMD
    srwxrwxrwx 1 oracle oinstall   0 2012-09-24 08:28 sCagripa_crs_evm
    srwxrwxrwx 1 oracle oinstall   0 2012-09-24 08:28 sAagripa_crs_evm
    srwxrwxrwx 1 oracle oinstall   0 2012-09-24 09:46 s#3633.2
    srwxrwxrwx 1 oracle oinstall   0 2012-09-24 09:46 s#3633.1
    srwxrwxrwx 1 oracle oinstall   0 2012-09-24 10:00 s#11308.1
    srwxrwxrwx 1 oracle oinstall   0 2012-09-24 10:03 s#11308.2
    drwxrwxrwt 8 root   root     232 2012-09-26 09:24 ..
    srwxrwxrwx 1 oracle oinstall   0 2012-09-26 09:30 sora_racg_ELIO3_agripa
    srwxrwxrwx 1 oracle oinstall   0 2012-09-26 09:35 sSYSTEM.evm.acceptor.auth
    srwxrwxrwx 1 root   root       0 2012-09-26 09:35 sagripaDBG_CRSD
    srwxrwxrwx 1 root   root       0 2012-09-26 09:40 sCRSD_UI_SOCKET
    srwxrwxrwx 1 root   root       0 2012-09-26 09:45 sora_crsqs
    srwxrwxrwx 1 root   root       0 2012-09-26 09:45 sprocr_local_conn_0_PROC
    srwxrwxrwx 1 oracle oinstall   0 2012-09-26 09:45 sOCSSD_LL_agripa_
    drwxrwxrwt 2 root   root     640 2012-09-26 09:45 .
    oracle@agripa:/u01/oracle/app/product/102_64/app/log/agripa/racg> cat imon_ELIO3.log
    2012-09-26 09:30:41.047: [    RACG][173648] [1100][173648][ora.ELIO3.ELIO31.inst]: racgimon started
    2012-09-26 09:31:06.174: [    RACG][70660672] [1100][70660672][ora.ELIO3.ELIO31.inst]:
    SQL*Plus: Release 10.2.0.5.0 - Production on Wed Sep 26 09:30:42 2012
    Copyright (c) 1982, 2010, Oracle.  All Rights Reserved.
    Enter user-name: Connected to an idle instance.
    SQL> ORACLE instance started.
    Total System Global Area 8589934592 bytes
    2012-09-26 09:31:06.174: [    RACG][70660672] [1100][70660672][ora.ELIO3.ELIO31.inst]: Fixed Size                   2109992 bytes
    Variable Size            1358958040 bytes
    Database Buffers         7214202880 bytes
    Redo Buffers               14663680 bytes
    Base de datos montada.
    Base de datos abierta.
    2012-09-26 09:31:06.174: [    RACG][70660672] [1100][70660672][ora.ELIO3.ELIO31.inst]: SQL> Desconectado de Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - Production
    With the Partitioning, Real Application Clusters, OLAP, Data Mining
    and Real Application Testing options
    2012-09-26 09:31:06.404: [    RACG][70660672] [1100][70660672][ora.ELIO3.ELIO31.inst]: clsrcexecut: env _USR_ORA_PFILE=/u01/oracle/app/product/102_64/crs/racg/tmp/ora.ELIO3.ELIO31.inst.ora
    2012-09-26 09:31:06.404: [    RACG][70660672] [1100][70660672][ora.ELIO3.ELIO31.inst]: clsrcexecut: cmd = /u01/oracle/app/product/102_64/app/bin/racgeut -e _USR_ORA_DEBUG=0 -e ORACLE_SID=ELIO31 540 /u01/oracle/app/product/102_64/app/bin/racgmdb -q
    2012-09-26 09:31:06.404: [    RACG][70660672] [1100][70660672][ora.ELIO3.ELIO31.inst]: clsrcexecut: rc = 3, time = 0.230s
    2012-09-26 09:31:07.196: [  OCRMSG][70660672]prom_rpc: CLSC send failure..ret code 11
    2012-09-26 09:31:07.196: [  OCRMSG][70660672]prom_rpc: possible OCR retry scenario
    2012-09-26 09:31:07.254: [  OCRAPI][70660672]procr_open: Node Failure. Attempting retry #0
    2012-09-26 09:31:07.528: [  OCRCLI][70660672]oac_reconnect_server: Could not connect to server. clsc ret 9
    2012-09-26 09:31:07.584: [  OCRAPI][70660672]procr_open: Node Failure. Attempting retry #1
    2012-09-26 09:31:07.847: [  OCRCLI][70660672]oac_reconnect_server: Could not connect to server. clsc ret 9
    2012-09-26 09:31:07.904: [  OCRAPI][70660672]procr_open: Node Failure. Attempting retry #2
    2012-09-26 09:31:08.178: [  OCRCLI][70660672]oac_reconnect_server: Could not connect to server. clsc ret 9
    2012-09-26 09:31:08.235: [  OCRAPI][70660672]procr_open: Node Failure. Attempting retry #3
    2012-09-26 09:31:08.488: [  OCRCLI][70660672]oac_reconnect_server: Could not connect to server. clsc ret 9
    2012-09-26 09:31:08.544: [  OCRAPI][70660672]procr_open: Node Failure. Attempting retry #4
    2012-09-26 09:31:08.808: [  OCRCLI][70660672]oac_reconnect_server: Could not connect to server. clsc ret 9
    2012-09-26 09:31:08.865: [  OCRAPI][70660672]procr_open: Node Failure. Attempting retry #5
    2012-09-26 09:31:08.971: [    RACG][70660672] [1100][70660672][ora.ELIO3.ELIO31.inst]: clsrcsetenvvar: set env var 'ORACLE_CONFIG_HOME' to be '/u01/oracle/app/product/102_64/crs/'
    2012-09-26 09:31:09.767: [    RACG][70660672] [1100][70660672][ora.ELIO3.ELIO31.inst]: clsrcqryapi: crs_qstat error
    2012-09-26 09:36:14.709: [  OCRMSG][148804160]prom_rpc: CLSC send failure..ret code 11
    2012-09-26 09:36:14.709: [  OCRMSG][148804160]prom_rpc: possible OCR retry scenario
    2012-09-26 09:36:14.768: [  OCRAPI][148804160]procr_open: Node Failure. Attempting retry #0
    agripa:/u01/oracle/app/product/102_64/crs/bin # ./crs_getperm ora.ELIO3.ELIO32.inst
    Nombre: ora.ELIO3.ELIO32.inst
    owner:oracle:rwx,pgrp:oinstall:rwx,other::r--,
    agripa:/u01/oracle/app/product/102_64/crs/bin # ./crs_getperm ora.ELIO3.ELIO31.inst
    Nombre: ora.ELIO3.ELIO31.inst
    owner:oracle:rwx,pgrp:oinstall:rwx,other::r--,I try to stop instance with srvctl but instance don't stop.
    oracle@agripa:/u01/oracle/app/product/102_64/app/bin> ./srvctl stop instance -d ELIO3 -i ELIO31
    oracle@agripa:/u01/oracle/app/product/102_64/app/bin> sqlplus / as sysdba
    SQL*Plus: Release 10.2.0.5.0 - Production on Mié Sep 26 09:42:24 2012
    Copyright (c) 1982, 2010, Oracle.  All Rights Reserved.
    Conectado a:
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - Production
    With the Partitioning, Real Application Clusters, OLAP, Data Mining
    and Real Application Testing options
    SQL>How can I fix it?
    How can I do to srvctl works fine and crs show that database is start??
    Thanks you very much!!!

    My database in another node (julia) was started with sqlplus
    sqlplus / as sysdba
    startup open;The crsd.log appears the follow
    2012-09-24 11:36:56.798: [ CRSMAIN][174064]0CRS Daemon Started.
    2012-09-24 11:36:56.798: [ CRSMAIN][363782720]0Starting runCommandServer for (UI = 1, E2E = 0). 0
    2012-09-24 11:36:56.798: [ CRSMAIN][365879872]0Starting runCommandServer for (UI = 1, E2E = 0). 1
    2012-09-26 09:30:40.776: [  CRSRES][380703296]0startRunnable: setting CLI values
    2012-09-26 09:30:40.814: [  CRSRES][380703296]0Attempting to start `ora.ELIO3.ELIO31.inst` on member `agripa`
    2012-09-26 09:30:54.931: [ default][174064][ENTER]0
    Oracle Database 10g CRS Release 10.2.0.5.0 Production Copyright 1996, 2004, Oracle.  All rights reserved
    2012-09-26 09:30:54.931: [ default][174064]0CRS Daemon Starting
    2012-09-26 09:30:54.932: [ CRSMAIN][174064]0Checking the OCR device
    2012-09-26 09:30:54.935: [ CRSMAIN][174064]0Connecting to the CSS Daemon
    2012-09-26 09:30:55.238: [  CLSVER][174064]0Active Version from OCR:10.2.0.5.0
    2012-09-26 09:30:55.238: [  CLSVER][174064]0Active Version and Software Version are same
    2012-09-26 09:30:55.238: [ CRSMAIN][174064]0Initializing OCR
    2012-09-26 09:30:55.254: [  OCRRAW][174064]proprioo: for disk 0 (/u01/oracle/1020_64/voting1/ocr), id match (1), my id set (1616921495,1352295226) total id sets (1), 1st set (1616921495,1352295226), 2nd set (0,0) my votes (1), total votes (2)
    2012-09-26 09:30:55.254: [  OCRRAW][174064]proprioo: for disk 1 (/u01/oracle/1020_64/voting2/ocr), id match (1), my id set (1616921495,1352295226) total id sets (1), 1st set (1616921495,1352295226), 2nd set (0,0) my votes (1), total votes (2)
    2012-09-26 09:30:55.286: [    CRSD][174064]0ENV Logging level for Module: allcomp  0
    2012-09-26 09:30:55.289: [    CRSD][174064]0ENV Logging level for Module: default  0
    2012-09-26 09:30:55.292: [    CRSD][174064]0ENV Logging level for Module: COMMCRS  0
    2012-09-26 09:30:55.294: [    CRSD][174064]0ENV Logging level for Module: COMMNS  0
    2012-09-26 09:30:55.297: [    CRSD][174064]0ENV Logging level for Module: CRSUI  0
    2012-09-26 09:30:55.300: [    CRSD][174064]0ENV Logging level for Module: CRSCOMM  0
    2012-09-26 09:30:55.303: [    CRSD][174064]0ENV Logging level for Module: CRSRTI  0
    2012-09-26 09:30:55.306: [    CRSD][174064]0ENV Logging level for Module: CRSMAIN  0
    2012-09-26 09:30:55.309: [    CRSD][174064]0ENV Logging level for Module: CRSPLACE  0
    2012-09-26 09:30:55.312: [    CRSD][174064]0ENV Logging level for Module: CRSAPP  0
    2012-09-26 09:30:55.315: [    CRSD][174064]0ENV Logging level for Module: CRSRES  0
    2012-09-26 09:30:55.317: [    CRSD][174064]0ENV Logging level for Module: CRSOCR  0
    2012-09-26 09:30:55.320: [    CRSD][174064]0ENV Logging level for Module: CRSTIMER  0
    2012-09-26 09:30:55.323: [    CRSD][174064]0ENV Logging level for Module: CRSEVT  0
    2012-09-26 09:30:55.326: [    CRSD][174064]0ENV Logging level for Module: CRSD  0
    2012-09-26 09:30:55.329: [    CRSD][174064]0ENV Logging level for Module: CLUCLS  0
    2012-09-26 09:30:55.332: [    CRSD][174064]0ENV Logging level for Module: CLSVER  0
    2012-09-26 09:30:55.335: [    CRSD][174064]0ENV Logging level for Module: OCRRAW  0
    2012-09-26 09:30:55.338: [    CRSD][174064]0ENV Logging level for Module: OCROSD  0
    2012-09-26 09:30:55.341: [    CRSD][174064]0ENV Logging level for Module: CSSCLNT  0
    2012-09-26 09:30:55.343: [    CRSD][174064]0ENV Logging level for Module: OCRAPI  0
    2012-09-26 09:30:55.346: [    CRSD][174064]0ENV Logging level for Module: OCRUTL  0
    2012-09-26 09:30:55.349: [    CRSD][174064]0ENV Logging level for Module: OCRMSG  0
    2012-09-26 09:30:55.352: [    CRSD][174064]0ENV Logging level for Module: OCRCLI  0
    2012-09-26 09:30:55.355: [    CRSD][174064]0ENV Logging level for Module: OCRCAC  0
    2012-09-26 09:30:55.358: [    CRSD][174064]0ENV Logging level for Module: OCRSRV  0
    2012-09-26 09:30:55.360: [    CRSD][174064]0ENV Logging level for Module: OCRMAS  0
    2012-09-26 09:30:55.360: [ CRSMAIN][174064]0Filename is /u01/oracle/app/product/102_64/crs/crs/init/agripa.pid
    [  clsdmt][299713088]Listening to (ADDRESS=(PROTOCOL=ipc)(KEY=agripaDBG_CRSD))
    2012-09-26 09:30:55.383: [ CRSMAIN][174064]0Using Authorizer location: /u01/oracle/app/product/102_64/crs/crs/auth/
    2012-09-26 09:30:55.401: [ CRSMAIN][174064]0Initializing RTI
    2012-09-26 09:30:55.436: [CRSTIMER][316899904]0Timer Thread Starting.
    2012-09-26 09:30:55.438: [  CRSRES][174064]0Parameter SECURITY = 1, running in USER Mode
    2012-09-26 09:30:55.438: [ CRSMAIN][174064]0Initializing EVMMgr
    2012-09-26 09:30:55.526: [ CRSMAIN][174064]0CRSD locked during state recovery, please wait.
    2012-09-26 09:30:56.003: [  CRSRES][174064]0ora.agripa.vip check shows ONLINE
    2012-09-26 09:30:56.121: [ CRSMAIN][174064]0CRSD recovered, unlocked.
    2012-09-26 09:30:56.122: [ CRSMAIN][174064]0QS socket on: (ADDRESS=(PROTOCOL=ipc)(KEY=ora_crsqs))
    2012-09-26 09:30:56.122: [ CRSMAIN][174064]0QS socket on: (ADDRESS=(PROTOCOL=ipc)(KEY=ora_crsqs))
    2012-09-26 09:30:56.130: [ CRSMAIN][174064]0CRSD UI socket on: (ADDRESS=(PROTOCOL=ipc)(KEY=CRSD_UI_SOCKET))
    2012-09-26 09:30:56.133: [ CRSMAIN][174064]0E2E socket on: (ADDRESS=(PROTOCOL=tcp)(HOST=agripa-priv)(PORT=49896))
    2012-09-26 09:30:56.133: [ CRSMAIN][174064]0Starting Threads
    2012-09-26 09:30:56.134: [ CRSMAIN][174064]0CRS Daemon Started.
    2012-09-26 09:30:56.134: [ CRSMAIN][362721856]0Starting runCommandServer for (UI = 1, E2E = 0). 0
    2012-09-26 09:30:56.134: [ CRSMAIN][364819008]0Starting runCommandServer for (UI = 1, E2E = 0). 1
    2012-09-26 09:31:08.582: [ default][174064][ENTER]0
    Oracle Database 10g CRS Release 10.2.0.5.0 Production Copyright 1996, 2004, Oracle.  All rights reserved
    2012-09-26 09:31:08.582: [ default][174064]0CRS Daemon Starting
    2012-09-26 09:31:08.583: [ CRSMAIN][174064]0Checking the OCR device
    2012-09-26 09:31:08.585: [ CRSMAIN][174064]0Connecting to the CSS Daemon
    2012-09-26 09:31:08.885: [  CLSVER][174064]0Active Version from OCR:10.2.0.5.0
    2012-09-26 09:31:08.885: [  CLSVER][174064]0Active Version and Software Version are same
    2012-09-26 09:31:08.885: [ CRSMAIN][174064]0Initializing OCR
    2012-09-26 09:31:08.891: [  OCRRAW][174064]proprioo: for disk 0 (/u01/oracle/1020_64/voting1/ocr), id match (1), my id set (1616921495,1352295226) total id sets (1), 1st set (1616921495,1352295226), 2nd set (0,0) my votes (1), total votes (2)
    2012-09-26 09:31:08.891: [  OCRRAW][174064]proprioo: for disk 1 (/u01/oracle/1020_64/voting2/ocr), id match (1), my id set (1616921495,1352295226) total id sets (1), 1st set (1616921495,1352295226), 2nd set (0,0) my votes (1), total votes (2)
    2012-09-26 09:31:08.934: [    CRSD][174064]0ENV Logging level for Module: allcomp  0
    2012-09-26 09:31:08.937: [    CRSD][174064]0ENV Logging level for Module: default  0
    2012-09-26 09:31:08.940: [    CRSD][174064]0ENV Logging level for Module: COMMCRS  0
    2012-09-26 09:31:08.942: [    CRSD][174064]0ENV Logging level for Module: COMMNS  0
    2012-09-26 09:31:08.945: [    CRSD][174064]0ENV Logging level for Module: CRSUI  0
    2012-09-26 09:31:08.948: [    CRSD][174064]0ENV Logging level for Module: CRSCOMM  0
    2012-09-26 09:31:08.964: [    CRSD][174064]0ENV Logging level for Module: CRSRTI  0
    2012-09-26 09:31:08.970: [    CRSD][174064]0ENV Logging level for Module: CRSMAIN  0
    2012-09-26 09:31:08.973: [    CRSD][174064]0ENV Logging level for Module: CRSPLACE  0
    2012-09-26 09:31:08.976: [    CRSD][174064]0ENV Logging level for Module: CRSAPP  0
    2012-09-26 09:31:08.979: [    CRSD][174064]0ENV Logging level for Module: CRSRES  0
    2012-09-26 09:31:08.982: [    CRSD][174064]0ENV Logging level for Module: CRSOCR  0
    2012-09-26 09:31:08.985: [    CRSD][174064]0ENV Logging level for Module: CRSTIMER  0
    2012-09-26 09:31:08.988: [    CRSD][174064]0ENV Logging level for Module: CRSEVT  0
    2012-09-26 09:31:08.991: [    CRSD][174064]0ENV Logging level for Module: CRSD  0
    2012-09-26 09:31:08.994: [    CRSD][174064]0ENV Logging level for Module: CLUCLS  0
    2012-09-26 09:31:08.997: [    CRSD][174064]0ENV Logging level for Module: CLSVER  0
    2012-09-26 09:31:08.999: [    CRSD][174064]0ENV Logging level for Module: OCRRAW  0
    2012-09-26 09:31:09.002: [    CRSD][174064]0ENV Logging level for Module: OCROSD  0
    2012-09-26 09:31:09.005: [    CRSD][174064]0ENV Logging level for Module: CSSCLNT  0
    2012-09-26 09:31:09.008: [    CRSD][174064]0ENV Logging level for Module: OCRAPI  0
    2012-09-26 09:31:09.011: [    CRSD][174064]0ENV Logging level for Module: OCRUTL  0
    2012-09-26 09:31:09.014: [    CRSD][174064]0ENV Logging level for Module: OCRMSG  0
    2012-09-26 09:31:09.017: [    CRSD][174064]0ENV Logging level for Module: OCRCLI  0
    2012-09-26 09:31:09.020: [    CRSD][174064]0ENV Logging level for Module: OCRCAC  0
    2012-09-26 09:31:09.023: [    CRSD][174064]0ENV Logging level for Module: OCRSRV  0
    2012-09-26 09:31:09.026: [    CRSD][174064]0ENV Logging level for Module: OCRMAS  0
    2012-09-26 09:31:09.026: [ CRSMAIN][174064]0Filename is /u01/oracle/app/product/102_64/crs/crs/init/agripa.pid
    [  clsdmt][303034944]Listening to (ADDRESS=(PROTOCOL=ipc)(KEY=agripaDBG_CRSD))
    2012-09-26 09:31:09.057: [ CRSMAIN][174064]0Using Authorizer location: /u01/oracle/app/product/102_64/crs/crs/auth/
    2012-09-26 09:31:09.072: [ CRSMAIN][174064]0Initializing RTI
    2012-09-26 09:31:09.094: [CRSTIMER][319812160]0Timer Thread Starting.
    2012-09-26 09:31:09.096: [  CRSRES][174064]0Parameter SECURITY = 1, running in USER Mode
    2012-09-26 09:31:09.096: [ CRSMAIN][174064]0Initializing EVMMgr
    2012-09-26 09:31:09.198: [ CRSMAIN][174064]0CRSD locked during state recovery, please wait.
    2012-09-26 09:31:09.728: [  CRSRES][174064]0ora.agripa.vip check shows ONLINE
    2012-09-26 09:31:09.846: [ CRSMAIN][174064]0CRSD recovered, unlocked.
    2012-09-26 09:31:09.847: [ CRSMAIN][174064]0QS socket on: (ADDRESS=(PROTOCOL=ipc)(KEY=ora_crsqs))
    2012-09-26 09:31:09.847: [ CRSMAIN][174064]0QS socket on: (ADDRESS=(PROTOCOL=ipc)(KEY=ora_crsqs))
    2012-09-26 09:31:09.855: [ CRSMAIN][174064]0CRSD UI socket on: (ADDRESS=(PROTOCOL=ipc)(KEY=CRSD_UI_SOCKET))
    2012-09-26 09:31:09.858: [ CRSMAIN][174064]0E2E socket on: (ADDRESS=(PROTOCOL=tcp)(HOST=agripa-priv)(PORT=49896))
    2012-09-26 09:31:09.859: [ CRSMAIN][174064]0Starting Threads
    2012-09-26 09:31:09.859: [ CRSMAIN][174064]0CRS Daemon Started.
    2012-09-26 09:31:09.859: [ CRSMAIN][364917312]0Starting runCommandServer for (UI = 1, E2E = 0). 0
    2012-09-26 09:31:09.859: [ CRSMAIN][367014464]0Starting runCommandServer for (UI = 1, E2E = 0). 1
    2012-09-26 09:35:44.874: [ default][174064][ENTER]0
    Oracle Database 10g CRS Release 10.2.0.5.0 Production Copyright 1996, 2004, Oracle.  All rights reserved
    2012-09-26 09:35:44.874: [ default][174064]0CRS Daemon Starting
    2012-09-26 09:35:44.875: [ CRSMAIN][174064]0Checking the OCR device
    2012-09-26 09:35:44.877: [ CRSMAIN][174064]0Connecting to the CSS Daemon
    2012-09-26 09:35:45.186: [  CLSVER][174064]0Active Version from OCR:10.2.0.5.0
    2012-09-26 09:35:45.186: [  CLSVER][174064]0Active Version and Software Version are same
    2012-09-26 09:35:45.186: [ CRSMAIN][174064]0Initializing OCR
    2012-09-26 09:35:45.201: [  OCRRAW][174064]proprioo: for disk 0 (/u01/oracle/1020_64/voting1/ocr), id match (1), my id set (1616921495,1352295226) total id sets (1), 1st set (1616921495,1352295226), 2nd set (0,0) my votes (1), total votes (2)
    2012-09-26 09:35:45.202: [  OCRRAW][174064]proprioo: for disk 1 (/u01/oracle/1020_64/voting2/ocr), id match (1), my id set (1616921495,1352295226) total id sets (1), 1st set (1616921495,1352295226), 2nd set (0,0) my votes (1), total votes (2)
    2012-09-26 09:35:45.236: [    CRSD][174064]0ENV Logging level for Module: allcomp  0
    2012-09-26 09:35:45.242: [    CRSD][174064]0ENV Logging level for Module: default  0
    2012-09-26 09:35:45.245: [    CRSD][174064]0ENV Logging level for Module: COMMCRS  0
    2012-09-26 09:35:45.247: [    CRSD][174064]0ENV Logging level for Module: COMMNS  0
    2012-09-26 09:35:45.250: [    CRSD][174064]0ENV Logging level for Module: CRSUI  0
    2012-09-26 09:35:45.253: [    CRSD][174064]0ENV Logging level for Module: CRSCOMM  0
    2012-09-26 09:35:45.256: [    CRSD][174064]0ENV Logging level for Module: CRSRTI  0
    2012-09-26 09:35:45.259: [    CRSD][174064]0ENV Logging level for Module: CRSMAIN  0
    2012-09-26 09:35:45.262: [    CRSD][174064]0ENV Logging level for Module: CRSPLACE  0
    2012-09-26 09:35:45.265: [    CRSD][174064]0ENV Logging level for Module: CRSAPP  0
    2012-09-26 09:35:45.269: [    CRSD][174064]0ENV Logging level for Module: CRSRES  0
    2012-09-26 09:35:45.273: [    CRSD][174064]0ENV Logging level for Module: CRSOCR  0
    2012-09-26 09:35:45.276: [    CRSD][174064]0ENV Logging level for Module: CRSTIMER  0
    2012-09-26 09:35:45.279: [    CRSD][174064]0ENV Logging level for Module: CRSEVT  0
    2012-09-26 09:35:45.282: [    CRSD][174064]0ENV Logging level for Module: CRSD  0
    2012-09-26 09:35:45.285: [    CRSD][174064]0ENV Logging level for Module: CLUCLS  0
    2012-09-26 09:35:45.288: [    CRSD][174064]0ENV Logging level for Module: CLSVER  0
    2012-09-26 09:35:45.291: [    CRSD][174064]0ENV Logging level for Module: OCRRAW  0
    2012-09-26 09:35:45.293: [    CRSD][174064]0ENV Logging level for Module: OCROSD  0
    2012-09-26 09:35:45.297: [    CRSD][174064]0ENV Logging level for Module: CSSCLNT  0
    2012-09-26 09:35:45.300: [    CRSD][174064]0ENV Logging level for Module: OCRAPI  0
    2012-09-26 09:35:45.302: [    CRSD][174064]0ENV Logging level for Module: OCRUTL  0
    2012-09-26 09:35:45.305: [    CRSD][174064]0ENV Logging level for Module: OCRMSG  0
    2012-09-26 09:35:45.308: [    CRSD][174064]0ENV Logging level for Module: OCRCLI  0
    2012-09-26 09:35:45.311: [    CRSD][174064]0ENV Logging level for Module: OCRCAC  0
    2012-09-26 09:35:45.314: [    CRSD][174064]0ENV Logging level for Module: OCRSRV  0
    2012-09-26 09:35:45.318: [    CRSD][174064]0ENV Logging level for Module: OCRMAS  0
    2012-09-26 09:35:45.318: [ CRSMAIN][174064]0Filename is /u01/oracle/app/product/102_64/crs/crs/init/agripa.pid
    [  clsdmt][303034944]Listening to (ADDRESS=(PROTOCOL=ipc)(KEY=agripaDBG_CRSD))
    2012-09-26 09:35:45.341: [ CRSMAIN][174064]0Using Authorizer location: /u01/oracle/app/product/102_64/crs/crs/auth/
    2012-09-26 09:35:45.361: [ CRSMAIN][174064]0Initializing RTI
    2012-09-26 09:35:45.391: [CRSTIMER][319812160]0Timer Thread Starting.
    2012-09-26 09:35:45.393: [  CRSRES][174064]0Parameter SECURITY = 1, running in USER Mode
    2012-09-26 09:35:45.393: [ CRSMAIN][174064]0Initializing EVMMgr
    2012-09-26 09:35:45.481: [ CRSMAIN][174064]0CRSD locked during state recovery, please wait.
    2012-09-26 09:35:45.956: [  CRSRES][174064]0ora.agripa.vip check shows ONLINE
    2012-09-26 09:35:46.097: [ CRSMAIN][174064]0CRSD recovered, unlocked.
    2012-09-26 09:35:46.098: [ CRSMAIN][174064]0QS socket on: (ADDRESS=(PROTOCOL=ipc)(KEY=ora_crsqs))
    2012-09-26 09:35:46.098: [ CRSMAIN][174064]0QS socket on: (ADDRESS=(PROTOCOL=ipc)(KEY=ora_crsqs))
    2012-09-26 09:35:46.105: [ CRSMAIN][174064]0CRSD UI socket on: (ADDRESS=(PROTOCOL=ipc)(KEY=CRSD_UI_SOCKET))
    2012-09-26 09:35:46.109: [ CRSMAIN][174064]0E2E socket on: (ADDRESS=(PROTOCOL=tcp)(HOST=agripa-priv)(PORT=49896))
    2012-09-26 09:35:46.109: [ CRSMAIN][174064]0Starting Threads
    2012-09-26 09:35:46.109: [ CRSMAIN][174064]0CRS Daemon Started.
    2012-09-26 09:35:46.109: [ CRSMAIN][364896832]0Starting runCommandServer for (UI = 1, E2E = 0). 0
    2012-09-26 09:35:46.109: [ CRSMAIN][366993984]0Starting runCommandServer for (UI = 1, E2E = 0). 1
    2012-09-26 09:36:09.889: [  CRSRES][381674048]0CRS-1002: Resource 'ora.ELIO3.db' is already running on member 'julia'
    2012-09-26 09:47:41.288: [  CRSRES][379576896]0ora.ELIO3.ELIO31.inst target set to OFFLINE before stop action
    2012-09-26 09:47:41.288: [  CRSRES][379576896]0StopResource: setting CLI values
    2012-09-26 09:47:41.355: [  CRSRES][379576896]0Target set to OFFLINE for `ora.ELIO3.ELIO31.inst`
    2012-09-26 09:47:42.266: [  CRSRES][379576896]0`ora.ELIO3.ELIO31.inst` is already OFFLINE.
    2012-09-26 09:47:43.278: [  CRSRES][379576896]0`ora.ELIO3.ELIO31.inst` is already OFFLINE.
    2012-09-26 09:47:44.286: [  CRSRES][379576896]0`ora.ELIO3.ELIO31.inst` is already OFFLINE.
    2012-09-26 09:47:45.298: [  CRSRES][379576896]0`ora.ELIO3.ELIO31.inst` is already OFFLINE.PD: Excuseme for the long text about crsd.log, but I don't know how can I attach a file.
    Thanks you very much!!.

  • Problem with importing decimal numbers in Apex

    Hi,
    I have a ascii data file which I load into db tables calling a procedure in a db package.
    Executing the procedure by SQL Plus everything works fine.
    Calling the procedure by Apex button I get a "ORA-01722: invalid number; Error inserting subject" because of the decimal numbers in the data file. Taking the decimal numbers out of the file it works.
    - I tried with different formats in the data file like: 4.40 4,40 4.4 4,4: Makes no difference.
    - In Apex I tried column formatting in the report attribute: 999G999G999G999G990D00: Makes no difference, it's obviously only formatting the display.
    - Debug mode just shows there is an error..
    - The db column is of format NUMBER(10,2)
    As I mentioned, with SQL Plus it works no matter of the number format in the data file.
    Anybody has an idea where the problem might be?
    Help is greatly appreciated,
    Roger

    Hi Joel,
    Thanks for your reply. You were right, the NLS setting for the decimal separator in SQL*Plus is a , (komma) and in Application Express a . (point).
    I suspected a NLS problem that's why I tested with different formats in the data file (4.40 4,40). Shouldn't that make a difference?
    Now, to fix it: I didn't see in Apex any NLS settings, I checked in utilities and shared components. So, the way to do that is to directly write into SQL Workshop / Apex?
    ALTER SESSION SET NLS_NUMERIC_CHARACTERS=",' "
    Cheers,
    Roger

Maybe you are looking for