ERROR at line 1:ORA-01012: not logged on

Hi ,i installed OID and the owner of the binaries and database(repository ) is Oracle and then i cahnged the permissions to 775 and now when i am trying to logon to a db(locally) using a different user x who is member of DBA group its saying not logged on .Is something wrong with permissions?
env|grep ORA
ORACLE_SID=oidtest
PS1=[${ME}:${UNAME}:${ORACLE_SID}] ${PWD} >
ORACLE_HOME=/amoidts1/OID
[amoidts1:panther:oidtest] /home/amoidts1 > sqlplus
SQL*Plus: Release 10.1.0.5.0 - Production on Wed Nov 21 19:24:37 2007
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Enter user-name: / as sysdba
Connected.
SQL> select * from v$database;
select * from v$database
ERROR at line 1:
ORA-01012: not logged on

What oracle version?
Probably there is not enough OS resources.
*Process J000 died, kkjcre1p: unable to spawn jobq slave process [ID 833613.1]*

Similar Messages

  • Oracle Instance shows connected,Yet am ORA-01012: not logged on

    Hi experts,
    Please help in log in to my database, which unfortunately was happening an hour before, but now it is not working
    In between I only did a change in some permission stuff for my base directory, but later brought it back to original permissions.
    Still it is haunting me..
    I have set up my SID/HOME/PATH perfectly, tried to check processes at OS level, they are less, still nothing is happening though database is up and running.
    I can see it at OS level and through ALert log..
    ==================
    oracle@dap-csw-ora01 /home/oracle > ps -ef|grep pmon
    oracle 3145946 1 0 18 feb - 0:44 asm_pmon_+ASM1
    oracle 7995430 1 0 18 feb - 0:50 ora_pmon_adobe_2
    oracle 13828212 11141232 0 14:59:09 pts/0 0:00 grep pmon
    oracle 7471386 1 0 18 feb - 0:57 ora_pmon_fxss_1
    oracle@dap-csw-ora01 /home/oracle > sqlplus
    SQL*Plus: Release 11.2.0.3.0 Production on Thu Feb 21 14:59:12 2013
    Copyright (c) 1982, 2011, Oracle. All rights reserved.
    Enter user-name: /as sysdba
    Connected.
    SQL> show user
    USER is "SYS"
    SQL> select instance_name,status from v$Instance;
    select instance_name,status from v$Instance
    ERROR at line 1:
    ORA-01012: not logged on
    Process ID: 0
    Session ID: 0 Serial number: 0

    CKPT wrote:
    Now I understood,..it is not a problem with permission something else is making this mess..though unknown..
    I bounced one of the database after taking permission from apps team, Now it works perfect...no issue whatsoever..
    But I want to know the reason..I dont want to face it any more...Whenever oracle installs[OUI], It knows well what the permissions to be assigned and what needed.
    You should not disturb them, What are the users, groups, executable, read, write permissions earlier and after changes and now?
    And i interestingly wanted to know why you wanted to test such things on production. Its like playing with fire so be cautious or else it costs a lot :)Basha,
    I don't think that there was any other way for the OP to solve the error. Either he could wait (which doesn't help normally in this error) or had to bounce the db, which he did. Also, with permission he meant, telling to the App team and than going for a bounce. I can't a mentioning of changing permissions anywhere .
    Aman....

  • ORA-01012: not logged on error while Moving data file with BrTools

    Hi,
        I'm trying to move a data file to another windows drive with BrTools.
    It fails before it actually starts to move the file. The error it shows is:
    ORA-01012: not logged on.
    Thanks,
    Anil.

    Hi,
    BRSPACE  has a command option -u to specify the Database user and password. How ever BRSPACE connects to the database as SYSDBA, you do not have to specify the user and password if the operating system user belongs to the dba group.SO check if the user is falling in DBA group with proper authorizations.
    PLease reward points for useful answers.
    Regards,
    Phani

  • THE DATABASE CONNECTION IS LOST :;; WIERD  ORA-01012 NOT LOGGED ON ERROR

    ERROR: ORA-01012 NOT LOGGED ON ERROR
    I AM USING A JAVA SWING INTERFACE (JDK 1.1.8), WHICH USES JNI TO CALL C PROGRAMS WHICH IN TURN CONNECTS TO THE DATABASE, ORACLE 8.1.6.
    A DATABASE CONNECTION IS ESTABLISED IN THE MAIN CLASS BY CALLING A FUNCTION FROM THE CONSTRUCTOR.
    FOR ALL OTHER FUNCTION CALLS WHICH ARE MADE FROM WITHIN THIS CONSTRUCTOR, THE CONNECTION STAYS.
    BUT AFTER THE CONTRUCTOR CALL IS COMPLETE, DATABASE CONNECTION IS STRANGELY LOST. THUS ALL OTHER FUNCTION CALLS FAIL BECAUSE OF CONNECTION ISSUES GIVING ORA-01012. THOUGH IF I CHECK UP IN THE DATABASE, THE CONNECTION DOES FIND AN ENTRY.
    SO IT APPEARS THAT SOMEHOW THE JAVA INTERFACE LOOSES TRACK OF CONNECTION. BUT STRANGELY ALL THE FUNCTIONS WORK IF CALLED FROM THE CONSTRUCTOR......... BUT THATS NOT THE IDEA.
    PLEASE HELP, THIS PROBLEM IS BUGGING ME FOR WEEKS NOW.
    THANKS
    AMIT

    apologise for the caps lock.
    i am working on a previous system with java swing front end which alread uses jni, and connects to database using pro *c.
    My problem is that the connection is lost as soon as the constructor of the main class is run, giving an
    ORA-1012 NOT LOGGED ON ERROR.
    But if i place the same calls in the contructor all the database call work.
    It somehow appears that the java interface looses the connection context. Though the session does find entry in the oracle dynamic tables as long as i dont close the front end main window, thereby meaning that its the jave interface which looses the context.
    part of the code of the main class eiquser.
    //constructor
    public EiqUser() {
         super();
         initMRI();
    private void initMRI() {
         try {
              /* initialize geoManager environment */
              int rccc = new EiqCfuncs().eiqInitEnv();
    //eiqinitenv is a c function which connects to database using pro *C
              EiqCfuncs cfuncs = new EiqCfuncs();
              //EiqCfuncs has the prototypes of c functions used bye the java interface
              this.ivjFileMenu.setText(cfuncs.eiqGetText(resNum.getTEXT_FILE_MENU())); // sets the menu name
    and so on.........
    public void eiqUser_WindowClosed(java.awt.event.WindowEvent windowEvent) {
         new EiqCfuncs().eiqTermEnv(); // gives ora-1012 error
    //eiqtermenv is supposed to disconnect from data base, but returns an ora-1012 not logged on erro
         return;
    //eiqtermenv closes the connection with the data base. But fails in this case. if i place the same call ( eiqtermenv) in the initMRI function or the contructor it succeeds.
    Plus if i dont use the java interace and use a c stub for executing the same sequence of functions, then i dont face any problems.
    the proc calls exectuted ultimately by...
    :::eiqinitenv
    exec sql connect using :sqlid identified by sqlpw; // succeeds giving sqlerr.sqlcode=0;
    ::::eiqterm env
    exec sql commit work; //fails giving 0ra-1012 error
    exec sql rollback work;
    Why is the java interface loosing track of the connection once done with the constructor of the main class?? The session still finds an entry in the oracle dynamic tables.
    Please help
    Thx
    Amit

  • Getting Error ORA-01012: not logged on while connecting as sys

    We have just upgraded from Oracle 8.1.7 to Oracle 9.2.0.5. Currently we have 2 databases in oracle 9i - db2 and scen. scen has been newly upgraded to Oracle 9i.
    When I set the ORACLE_SID to scen (as per entry in oratab), and connect to sqlplus using sys / as sysdba, it connects to an idle instance. and displays the error message ORA-01012: not logged on. I do not encounter this when I connect to the other database db2. There should be some settings which have been missed out.
    Could anybody help me out with this....

    I managed to get the settings corrected.Thanks anyway....

  • Error: ORA-01012: not logged on

    Hi all,
    i have a program to update 2 tables and will commit every transaction for each table. firstly, my program will commit transaction in Table A then once it's done, it will commit Table B and loop again(both table) until all transactions finish.But at the end of the process, i get the error msg:
    Error: ORA-01012: not logged on
    I suspected this error because of COMMIT issue in my program.
    Kindly need someone to assist me.
    Here i attached my code for your reference.
    EXEC SQL DECLARE fs_cursor CURSOR FOR SELECT fs.FILE_ID FROM FILE_STATUS fs
    where fs.JOB_ID = 'brm_pymntd01l' and fs.status = 'N'
    FOR UPDATE OF fs.STATUS;
    EXEC SQL OPEN fs_cursor;
    EXEC SQL WHENEVER NOT FOUND DO break;
    for (;;)
    rec_ctr = 0;
    /** Reset the sqlcode **/
    sqlca.sqlcode=0;
    EXEC SQL FETCH fs_cursor INTO :FILEID;
    EXEC SQL DECLARE ft_cursor CURSOR FOR SELECT FT.RECORD_ID FROM FILE_DETAIL FT WHERE FT.STATUS = 'N' AND FT.FILE_ID = :FILEID;
              EXEC SQL OPEN ft_cursor;
    EXEC SQL WHENEVER NOT FOUND DO break;           
    if ( sqlca.sqlcode == 0)
    for (;;)
                   EXEC SQL FETCH ft_cursor INTO :RECORD_ID;
    EXEC SQL DECLARE fd_cursor ...
    FROM FILE_DETAIL fd where fd.RECORD_ID = :RECORD_ID and fd.file_id = :FILEID FOR UPDATE OF fd.STATUS;
    EXEC SQL OPEN fd_cursor;
    /** Reset the sqlcode **/
    sqlca.sqlcode=0;
    EXEC SQL FETCH fd_cursor INTO :COL1, :COL2, :COL3, :COL4, :COL5, :COL6, :COL7, :COL8, :COL9,
    :COL10, :COL11, :COL13, :COL14, :COL15,
    :COL16, :COL19, :COL20, :COL21, :COL22, :COL24, :COL25, :COL26, :COL27, :STATUS;
    if (validate_record(dbschema,logfp,&ebuf))
    trim_spaces();
    process_flag = process(ctxp, database, &ebuf, logfp, dbschema);
    time(&status_upd_date);
    strcpy(current_time, ctime(&status_upd_date));
    if(process_flag == PROCESS_SUCCESS)
    if (updateChargeEvent == 1) {
    PIN_ERR_LOG_MSG(PIN_ERR_LEVEL_DEBUG, "*******Update Charge Event\0");
    ret = update_charge_event(ctxp, database, &ebuf, ACCOUNT_NO, PAYMENT_DATE);
    if(ret != 1)
    strcpy(NEW_STATUS, "P");
    sprintf(msg,"Transaction [PUKAL update status] error. Please check cm.pinlog.");
    strcpy(REC_ERROR_CODE, ERR_GET_UPD_PUKAL_EVENT);
    strcpy(REC_ERROR_DESCR,msg);
    log(msg, logfp);
    log("\n",logfp);
    }else{
    strcpy(NEW_STATUS, "C");
    strcpy(NEXT_BILL_T, NEXT_BILL_DATE);
    else if (rebateSucess != 0)
    strcpy(NEW_STATUS, "P");
    sprintf(msg,"Transaction [apply_rebate] error. Please check cm.pinlog.");
    strcpy(REC_ERROR_CODE, ERR_GET_APPLY_REBATE);
    strcpy(REC_ERROR_DESCR,msg);
    log(msg, logfp);
    log("\n",logfp);
    else {
    strcpy(NEXT_BILL_T, NEXT_BILL_DATE);
    strcpy(NEW_STATUS, "C");
    EXEC SQL UPDATE FILE_DETAIL
    SET STATUS = :NEW_STATUS,
    STATUS_UPD_DATE = to_date(:current_time,'DY MON DD hh24:mi:ss YYYY'),
    COL23 = :NEXT_BILL_DATE,
    COL27 = :COLUMN_27
    WHERE RECORD_ID = :RECORD_ID;
    else
    strcpy(NEW_STATUS, "F");
    EXEC SQL UPDATE FILE_DETAIL
    SET STATUS = :NEW_STATUS,
    STATUS_UPD_DATE = to_date(:current_time,'DY MON DD hh24:mi:ss YYYY'),
    ERROR_CODE = :REC_ERROR_CODE,
    ERROR_DESC = :REC_ERROR_DESCR
    WHERE RECORD_ID = :RECORD_ID;
    ret = JOB_WARNING;
    else
    strcpy(NEW_STATUS, "F");
    EXEC SQL UPDATE FILE_DETAIL
    SET STATUS = :NEW_STATUS,
    STATUS_UPD_DATE = to_date(:current_time,'DY MON DD hh24:mi:ss YYYY'),
    ERROR_CODE = :REC_ERROR_CODE,
    ERROR_DESC = :REC_ERROR_DESCR
    WHERE RECORD_ID = :RECORD_ID;
    ret = JOB_WARNING;
    else{   
    PIN_ERR_LOG_MSG(PIN_ERR_LEVEL_DEBUG, "Error running query");
    printf("\nError: %.70s \n",sqlca.sqlerrm.sqlerrmc);
    EXEC SQL CLOSE fd_cursor;
         EXEC SQL COMMIT;
         rec_ctr ++;
         EXEC SQL CLOSE ft_cursor;
    time(&status_upd_date);
    strcpy(current_time, ctime(&status_upd_date));
    if (rec_ctr > 0)
    /* Check if all records had failed, one record had failed
    or everything is successfully processed. Then update
    file_status table. */
    int ret_status;
    ret_status = updateFileStatus(dbschema, FILEID, logfp);
    if (ret_status == ALL_REC_FAILED)
    strcpy(NEW_STATUS, "F");
    EXEC SQL UPDATE FILE_STATUS SET STATUS = :NEW_STATUS,
    STATUS_UPD_DATE = to_date(:current_time,'DY MON DD hh24:mi:ss YYYY')
    WHERE CURRENT OF fs_cursor;
    else if (ret_status == ONE_REC_FAILED)
    strcpy(NEW_STATUS, "P");
    EXEC SQL UPDATE FILE_STATUS SET STATUS = :NEW_STATUS,
    STATUS_UPD_DATE = to_date(:current_time,'DY MON DD hh24:mi:ss YYYY')
    WHERE CURRENT OF fs_cursor;
    else if (ret_status == ALL_SUCCESS)
    strcpy(NEW_STATUS, "C");
    EXEC SQL UPDATE FILE_STATUS SET STATUS = :NEW_STATUS,
    STATUS_UPD_DATE = to_date(:current_time,'DY MON DD hh24:mi:ss YYYY')
    WHERE CURRENT OF fs_cursor;
    /* Else do nothing error handling is done within
    * the function. */
    else{}
    else{
    /*If its an empty file, update file_status to 'C'
    so that the program will no longer fetch this record
    on the next run. */
    strcpy(NEW_STATUS, "C");
    EXEC SQL UPDATE FILE_STATUS SET STATUS = :NEW_STATUS,
    STATUS_UPD_DATE = to_date(:current_time,'DY MON DD hh24:mi:ss YYYY')
    WHERE CURRENT OF fs_cursor;
         EXEC SQL COMMIT WORK RELEASE;
    //process by not update by per transaction at staging
         EXEC SQL CLOSE fs_cursor;
    if(sqlca.sqlcode == 0)
    ret = JOB_SUCCESS;
    else
    EXEC SQL ROLLBACK WORK RELEASE;
    Thank a lots!

    what data did not get COMMITted?

  • ORA-01012 not logged (critical).

    Hi Gurus,
    My database is running with spfile, And i chaged processes parameter to 20(before that its 150).
    After i reboot my database with srvctl cmd, successfully its restarted,
    Then i can connect to the database. I given the below cmd getting error...
    SQL> sho parameter db_name
    ORA-01012: not logged on
    Could any one tell me solution??
    Thanks in advance.

    can you please mention your OS, db version?
    Did you check the Oracle services? Are those running fine. Check the alert log if the database is up OPEN..

  • ORA-01012 NOT LOGGED ON

    Hi All,
    Today I faced a new kind of problem. Today morning I had load testing of our application(JDE APPLICATION) when I reached office and monitor ORACLE PROCESS for that database it shown me 604 where as I defined the processes=600... I am using 10.2.0.4 and OS -> HP-UX...
    $ ps -ef|grep -i "<DBNAME>|wc -l is the command I used to check the number of OS Oracle process.
    So I immediately tried to log in via listener and as expected it was giving error regarding TNS could not resolved service name bla bla bla...
    Then I saw the listener process was in a blocked state :-(
    I thought of killing some inactive sessions by connected as sysdba..
    SO I wrote export ORACLE_SID=<DBNAME>
    sqlplus / as sysdba
    shown me connected...
    but when I issued
    show parameter db_name
    then it gave me
    SQL> ORA-01012 not connected...
    previously I have seen such overflowing of Oracle processes But then for sysdba login never thrown me this error...
    I asked my application team to stop the services so that I can kill some oracle processes from OS level...
    But I am not sure what to do with this kind of situation if that too happened in my PRODUCTION DB.. :-(
    Please suggest.....
    Please let me know if you need any other information regarding this...
    Thank you..

    1 lsnrctl stop
    2 kill a few sessions
    3 logon as / AS SYSDBA
    4 SELECT USERNAME, MACHINE , COUNT(*) FROM V$SESSION GROUP BY USERNAME, MACHINE;
    thank you for your reply...
    after stopping I tried to log in same error I got.... after stopping how can I kill few sessions when I don't get a chance to log in as sysdba ? :-(
    are talking kill few session from OS??
    thank you..

  • ERROR at line 1: ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine ORA-20000: Oracle Text error: DRG-10700: preference does not exist: global_lexer ORA-06512: at "CTXSYS.DRUE", line 160 ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 366

    database version 11.2.0.4
    rac two node
    CREATE INDEX MAXIMO.ACTCI_NDX3 ON MAXIMO.ACTCI
    (DESCRIPTION)
    INDEXTYPE IS CTXSYS.CONTEXT
    PARAMETERS('lexer global_lexer language column LANGCODE')
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-20000: Oracle Text error:
    DRG-10700: preference does not exist: global_lexer
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 366

    Like the error message says, you don't have a global_lexer.  So, you need to create a global_lexer and that lexer must have at least a default sub_lexer, then you can use that global_lexer in your index parameters.  Please see the demonstration below, including reproduction of the error and solution.
    SCOTT@orcl12c> -- reproduction of problem:
    SCOTT@orcl12c> CREATE TABLE actci
      2    (description  VARCHAR2(60),
      3      langcode     VARCHAR2(30))
      4  /
    Table created.
    SCOTT@orcl12c> CREATE INDEX ACTCI_NDX3 ON ACTCI (DESCRIPTION)
      2  INDEXTYPE IS CTXSYS.CONTEXT
      3  PARAMETERS('lexer global_lexer language column LANGCODE')
      4  /
    CREATE INDEX ACTCI_NDX3 ON ACTCI (DESCRIPTION)
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-20000: Oracle Text error:
    DRG-10700: preference does not exist: global_lexer
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 366
    SCOTT@orcl12c> -- solution:
    SCOTT@orcl12c> DROP INDEX actci_ndx3
      2  /
    Index dropped.
    SCOTT@orcl12c> BEGIN
      2    CTX_DDL.CREATE_PREFERENCE ('global_lexer', 'multi_lexer');
      3    CTX_DDL.CREATE_PREFERENCE ('english_lexer', 'basic_lexer');
      4    CTX_DDL.ADD_SUB_LEXER ('global_lexer', 'default', 'english_lexer');
      5  END;
      6  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl12c> CREATE INDEX ACTCI_NDX3 ON ACTCI (DESCRIPTION)
      2  INDEXTYPE IS CTXSYS.CONTEXT
      3  PARAMETERS('lexer global_lexer language column LANGCODE')
      4  /
    Index created.

  • ERROR at line 1 ORA-04042 when I was upgrade 2.2 App Express to 3.2!

    Hi all,
    I was download Apex 3.2 and unzip it into C:\Apex folder.
    I was installing Application Express 2.2 on C:\oraclexe and working fine.
    I was changed on C:\Apex\apexins.sql PREFIX for C:\apex\apexins.sql and DATTS='^2',FF_TBLS='^3'
    TEMPTBL='^4' IMGPR='^5' and
    when I log as sysdba and start upgrade from sql command line>@c:\apex\apexins PASWORD SYSTEM SYSTEM TEMP /i/ C:\
    after 5 minutes have this error>
    SP2-0310: unable to open file "c:\apex\coreinscore/generate_table_api.sql"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_gen_hint.sql"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_xliff.sql"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_create_model_app.sql"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_help.sql"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_data_quick_flow.sql"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_theme_files.sql"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_session_mon.sql"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_sw_page_calls.sql"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_wiz_confirm.sql"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_page_map.sql"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_drag_layout.sql"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_dataload_xml.sql"
    SP2-0310: unable to open file "c:\apex\coreinscore/apex_ui_default_update.sql"
    SP2-0310: unable to open file "c:\apex\coreinscore/apex_mig_projects_update.sql"
    timing for: Development Package Specs
    Elapsed: 00:00:00:03
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_plsql_editor.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_model_api.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_f4000_util.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_image_generator.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/layout.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_query_builder.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_sw_object_feed.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_load_data.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_load_excell_data.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/copy_metadata.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/copyu.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_tab_mgr.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/generate_ddl.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/table_drill.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_download.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_copy_page.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/generate_table_api.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_gen_hints.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_xliff.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_create_model_app.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_help.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_data_quick_flow.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_theme_filles.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_sw_page_calls.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_page_map.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_drag_layout.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/www_flow_dataload_xml.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/apex_ui_default_update.plb"
    SP2-0310: unable to open file "c:\apex\coreinscore/apex_mig_projects_update.plb"
    ...install demonstration flow spaces
    SP2-0310: unable to open file "c:\apex\coreinscore/collections_showcase.sql"
    ...install demonstration flow bodies
    SP2-0310: unable to open file "c:\apex\coreinscore/collections_showcase.plb"
    timing for : Development package bodies
    Elapsed : 00:00:00:04
    grant execute on www_mig_acc_load to public
    ERROR at line 1 ORA-04042: procedure, function, package, or package body does not exist
    Disconnected from Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    Gordan
    http://gordanmilojevic.blogspot.com
    ERROR at line 1 ORA-04042

    Hi Gordan,
    You are receiving error ORA-04042 because the referenced object, wwv_mig_acc_load, has not been successfully created. If you review your SQL command output, you will see a number of other errors reported before this one e.g. SP2-0310: unable to open file "c:\apex\coreinscore/generate_table_api.sql". These errors are occurring because the folder 'c:\apex\coreinscore/' does not exist, therefore the installation scripts cannot be located. In your initial posting you've said:
    I was changed on C:\Apex\apexins.sql PREFIX for C:\apex\apexins.sql and DATTS='^2',FF_TBLS='^3'
    TEMPTBL='^4' IMGPR='^5' and
    when I log as sysdba and start upgrade from sql command line>@c:\apex\apexins PASWORD SYSTEM SYSTEM TEMP /i/ C:\
    after 5 minutes have this error>
    Did you modify the installation script, apexins.sql? This file should not be modified, and should be run following the installation instructions outlined in the Oracle Application Express [Installation Guide|http://download.oracle.com/docs/cd/E14373_01/install.32/e13366/otn_install.htm#BEHGEFDI]. You mention that you unzipped the 3.2 zipfile to your C:\Apex folder. Change your working directory to that folder, C:\Apex, and then start SQL*Plus, connecting to your database as SYSDBA. Now run the installation script, apexins.sql as follows:
    SQLplus&gt; +@apexins <span class="italic">tablespace_apex <span class="italic">tablespace_files <span class="italic">tablespace_temp <span class="italic">images+
    Example:
    SQLplus&gt; +@apexins SYSTEM SYSTEM TEMP /i/+
    NOTE: as you are running SQL*Plus from the working directory, C:\Apex, you do not need to include this path when referencing the SQL script apexins. You should also only pass in the four listed parameters, and not PASSWORD or C:. Once you have followed these instructions, you should hopefully no longer receive the prevoiusly reported errors.
    Regards,
    Hilary

  • 8i: cannot create db. svrmgrl ORA-01012 not connected.

    Hi,
    running redhat 6.0, glibc2.1.1-6, kernel 2.2.5-15, egcs-1.1.2-12,
    on my PII400 I tried to install 8i. After some problems with the
    installer (you'd better not use defaults) and dbassist I was
    ready to create the db. I let dbassist save the configuration to
    a set of scripts. when I started the initial script
    (sql<sid>.sh), I got a huge list of errors due to the fact , that
    the server manager was not able to connect to the database. But
    the processes were running. After having stopped the db processes
    I tried to follow the creation procedure step by step:
    export ORACLE_SID=db01
    export LD_LIBRARY_PATH=...
    svrmgrl
    connect / as sysdba
    startup pfile=/ora/0/app/oracle/admin/db01/pfile/initdb01.ora
    And at this point the processes started (ps aux |grep ora_) but I
    was kicked out of the server manager immediately, which threw
    an error:
    ORA-01012: Not connected
    I tried to log in again to start the creation of files,
    tablespaces and db objects.
    svrmgrl
    connect / as sysdba
    Connected. ( <- look at this ... )
    create database
    ORA-01012 Not connected. ( <- ... and this! )
    I really don't know where to search for a solution.
    Rolf
    null

    What does your alert log say?
    Are there any trace files in bdump or udump?
    How much RAM do you have?
    I originally had 64MB in my Dell Inspirion and I got all
    sorts of weird error messages just trying to startup a tiny
    database.
    I upped it to 128MB and things run fine.
    Create your own database create scripts. You can control the
    process better that way.
    Be sure to "set echo on" and spool the create process to a log
    file to see what is happening.
    Because the create process is often able to create a few files,
    like the control files, before it will fail (depending on what
    is wrong, of course).
    Then your next create attempt will fail because those files exist
    and it will disconnect you because a disconnect is often found at
    the end of the create scripts (I always delete the disconnects
    too).
    Also make sure any of the background processes are shutdown
    before running the create scripts again (pmon,smon,etc).
    Just connect internal and do shutdown.
    Rolf Becker (guest) wrote:
    : Hi,
    : running redhat 6.0, glibc2.1.1-6, kernel 2.2.5-15,
    egcs-1.1.2-12,
    : on my PII400 I tried to install 8i. After some problems with
    the
    : installer (you'd better not use defaults) and dbassist I was
    : ready to create the db. I let dbassist save the configuration
    to
    : a set of scripts. when I started the initial script
    : (sql<sid>.sh), I got a huge list of errors due to the fact ,
    that
    : the server manager was not able to connect to the database. But
    : the processes were running. After having stopped the db
    processes
    : I tried to follow the creation procedure step by step:
    : export ORACLE_SID=db01
    : export LD_LIBRARY_PATH=...
    : svrmgrl
    : connect / as sysdba
    : startup pfile=/ora/0/app/oracle/admin/db01/pfile/initdb01.ora
    : And at this point the processes started (ps aux |grep ora_) but
    I
    : was kicked out of the server manager immediately, which threw
    : an error:
    : ORA-01012: Not connected
    : I tried to log in again to start the creation of files,
    : tablespaces and db objects.
    : svrmgrl
    : connect / as sysdba
    : Connected. ( <- look at this ... )
    : create database
    : ORA-01012 Not connected. ( <- ... and this! )
    : I really don't know where to search for a solution.
    : Rolf
    null

  • ERROR at line 1:ORA-00600: internal error code, arguments: [ktsircinfo_num1

    Hi all,
    I need one help. In our one schema we have design like one temp and one parmanent table. The parmanent table is partition and we are used to exchange this partition with temporary table.
    It was working fine but since last many days we are facing a issue that while exchanging the table partition or coz some activity the table get courrepted and get the following error
    ERROR at line 1:
    ORA-00600: internal error code, arguments: [ktsircinfo_num1], [24], [2],
    [49317], [], [], [], []
    Can anyone help us out. Any suggetion is greatful.
    Thanks

    It was working fine but since last many days we are facing a issueReview the changes that might have happened to the server in those past few days. OS upgrade, OS move, Oracle upgrade, post installation steps unsuccessful/not completed could be some of the many reasons, among others that Oracle support will identify when you open a SR, as suggested above.

  • ERROR at line 1: ORA-29913: error in executing ODCIEXTTABLEOPEN callout ORA

    Hi,
    i am using external tables for fetching values from text file
    1)
    create or replace directory XTERN_DATA_DIRTEST
    as 'E:\test';
    2)
    create table xtern_countrytest
    COUNTRYNAME VARCHAR2(200)
    organization external
    ( default directory XTERN_DATA_DIRtest
    access parameters
    records delimited by '|$|'
    fields terminated by '|#|'
    MISSING FIELD VALUES ARE NULL
    location ('Country.txt')
    when i execute
    select * from xtern_countrytest am gettng following error
    ERROR at line 1:
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04040: file Country.txt in XTERN_DATA_DIRTEST not found
    ORA-06512: at "SYS.ORACLE_LOADER", line 19
    FYI,i have granted access,file is present at location,same thing works in development environment,but this error is happening in live server,
    can any one has a idea about this,its urgent

    sybrand_b wrote:
    Hi,
    Welcome to the forums.
    First of all I must remind you this is not a free support forum. Also everyone here is volunteer.
    This means using words like 'urgent' and 'asap' is usually considered inappropriate as there is paid support.
    In your transcript I notice you have no
    grant read, write directory on XTERN_DATA_DIRTEST
    I also notice in your external table definition your location directive appears to be incomplete
    It should be
    location(XTERN_DATA_DIRTEST:'Country.txt')
    Hth
    Sybrand Bakker
    Senior Oracle DBASybrand
    He doesn't need to write "location(XTERN_DATA_DIRTEST:'Country.txt')" because he sets the default directory:
    ( default directory XTERN_DATA_DIRtest
    access parameters
    user 854436,
    Please check MOS [ID 150737.1]: ORA-29913 ORA-29400 KUP-04040 While Selecting from External Table
    Regards
    Gokhan

  • ERROR at line 1: ORA-03113: end-of-file on communication channel

    I have a DRDA gateway set up between my Oracle 10.2.0.4 instance (linux 64 bit), and a DB2 UDB instance (v 8.2 32 Bit). Within a SQLPlus session, I'm able to successfully interact with tables (select, update, delete) that do not have CLOB columns defined. However, whenever I try to access a table with a CLOB column (even doing a select on a single row), I get an end-of-file communication error and it kicks me out of my session. I can interact with the table as long as I don't include the CLOB/BLOB columns. Is there some additional configuration or memory settings I'm missing?
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> select * from mytablewithaclob@db2 where l_column= 1;
    select * from dbo.mytablewithaclob@db2 where l_column= 1
    ERROR at line 1:
    ORA-03113: end-of-file on communication channelI add the following codepage.map (as per another post) - packages are bound properly, and tables without clobs I can interact with just fine.:
    S 367 > US7ASCII
    D 13488 > AL16UTF16
    D 1200 = AL16UTF16
    M 1208 = UTF8
    MBC 1208 = 1208 1200
    column in question is defined as follows in DB2:
    mycol CLOB(1G) DEFAULT ''  NOT NULL  NOT LOGGEDAny thoughts? Much appreciated.
    Edited by: kpw on Sep 3, 2009 4:21 PM

    Unfortunately TG4DRDA 10.2.0 does not support DB2 (C)LOB datatype. A crash is a rather unpleasant way to report this inability... but that could depend on the version of TG4DRDA you use (10.2.0.1.0). I guess when you upgrade TG4DRDA to 10.2.0.4.0 you will get a proper error message (ORA-28527 - datatype conversion error).
    As workaround you could:
    - create a view on the DB2 table and exclude the (C)LOB columns
    - move/copy the (C)LOB data into a TG4DRDA supported datatype ((long) varchar for bit data)
    Regards,
    Ed

  • Error - Balancing Line Item Profit Center not filled in Line Item 007

    Hi
    I am trying to do a transfer posting from one vendor account to another. However, system is giving an error - Balancing Line Item Profit Center not filled in line Item 001. Pls suggest.
    Regards
    Vaibhav

    hi  vaibhav
    you go through this Tcode  FAGL3KEH  and maintain default profit centre. in the  error message system shown GL accounts
    hope you userstand
    thanks
    dharmendar

Maybe you are looking for

  • Suggestion for a New Keyboard Shortcut

    I'd like to suggest a way of increasing the efficiency of editing captions and other metadata in Aperture by adding a keyboard shortcut that always serves to move to the next image in the viewer. For example, Command-Shift-] (or something) to move to

  • What's wrong with my Apache VirtualHost?

    I copied my websites from my PC to my new MacBook Pro and am not trying to set up virtual hosts, using the site Geobop as an example. It is located at /Library/Webserver/Documents/Geobop I copied my httpd.conf file to my Desktop, modified it with Tex

  • HOWTO: Resize Bootcamp (NTFS) partition for free using gparted

    Hi, Well, if you find your Bootcamp/NTFS/Windows partition running out of space, you may want to increase it or decrease it. The OSX Bootcamp utility doesn't allow resizing the NTFS partitio nor does Disk Utility. Here is a free solution ... NOTE: I'

  • Item 001 WBS budget exceeded error while posting cat7

    Dear Experts We have implemented the following modules PS , CO , HR The project system has number of projects , the time booking is done using cats , the actual labour cost is entered in the cats sheet it self in the price column. for cost posting af

  • How to delete wifi printers in sidebar on mac

    In finder sidebar under devices wish to delete wifi printers names that are not used