Creating Procedure with oracle loader

Hi,
Is there anyone here can help me on how can I fixed the error of this procedure.
The error i get is this: ORA-24344: success with compilation error
This is the procedure:
CREATE OR REPLACE PROCEDURE LOAD_DATA1
IS
BEGIN
DROP TABLE revext ;
CREATE TABLE revext (person VARCHAR2(40),
rev_jan NUMBER(4,0),
rev_feb NUMBER(4,0),
rev_mar NUMBER(4,0),
rev_apr NUMBER(4,0),
rev_mai NUMBER(4,0),
rev_jun NUMBER(4,0),
rev_jul NUMBER(4,0),
rev_aug NUMBER(4,0),
rev_sep NUMBER(4,0),
rev_oct NUMBER(4,0),
rev_nov NUMBER(4,0),
rev_dez VARCHAR2(20))
ORGANIZATION EXTERNAL
TYPE oracle_loader
DEFAULT DIRECTORY EXTERNAL_DATA
ACCESS PARAMETERS
RECORDS DELIMITED BY NEWLINE
     NOBADFILE
     NOLOGFILE
FIELDS TERMINATED BY ','
( person CHAR,
rev_jan CHAR,
rev_feb CHAR,
rev_mar CHAR,
rev_apr CHAR,
rev_mai CHAR,
rev_jun CHAR,
rev_jul CHAR,
rev_aug CHAR,
rev_sep CHAR,
rev_oct CHAR,
rev_nov CHAR,
rev_dez CHAR
LOCATION ('revext.txt')
PARALLEL
REJECT LIMIT UNLIMITED;
END ;
Thanks...
Edited by: user8840353 on Jan 15, 2010 11:52 PM

Welcome to the forum!
First of all: this is Oracle, write code the Oracle-way (not the SQL Server way... just guessing here)
You can't create and drop tables from within PL/SQL... (I know you can, but you shouldn't have to in most cases)
just do this
CREATE TABLE revext (person VARCHAR2(40),
rev_jan NUMBER(4,0),
rev_feb NUMBER(4,0),
rev_mar NUMBER(4,0),
rev_apr NUMBER(4,0),
rev_mai NUMBER(4,0),
rev_jun NUMBER(4,0),
rev_jul NUMBER(4,0),
rev_aug NUMBER(4,0),
rev_sep NUMBER(4,0),
rev_oct NUMBER(4,0),
rev_nov NUMBER(4,0),
rev_dez VARCHAR2(20))
ORGANIZATION EXTERNAL
TYPE oracle_loader
DEFAULT DIRECTORY EXTERNAL_DATA
ACCESS PARAMETERS
RECORDS DELIMITED BY NEWLINE
NOBADFILE
NOLOGFILE
FIELDS TERMINATED BY ','
( person CHAR,
rev_jan CHAR,
rev_feb CHAR,
rev_mar CHAR,
rev_apr CHAR,
rev_mai CHAR,
rev_jun CHAR,
rev_jul CHAR,
rev_aug CHAR,
rev_sep CHAR,
rev_oct CHAR,
rev_nov CHAR,
rev_dez CHAR
LOCATION ('revext.txt')
PARALLEL
REJECT LIMIT UNLIMITED;... assuming your code is correct - haven't checked it.
Than you will have your external table, which you can query and use anyway you want.. revext.txt is a comma-delimited file right?

Similar Messages

  • Can't create procedure with dbms_alert

    dbms_alert could be run at sqlqlus.
    but i can't create any trigger or procedure with dbms_alert as same user.
    what do i should do?
    see belows;
    ---SUCCESS---
    SQL> EXEC DBMS_ALERT.REGISTER('AAAA');
    PL/SQL procedure successfully completed.
    ---FAIL---
    SQL> CREATE OR REPLACE PROCEDURE SP_COGETALERT(P_ALERT IN VARCHAR2, P_MSG OUT VARCHAR2) IS
    2 V_MSG VARCHAR2(1800);
    3 V_STAT NUMBER(5);
    4 BEGIN
    5 DBMS_ALERT.REGISTER(P_ALERT);
    6 DBMS_ALERT.WAITONE(P_ALERT, V_MSG, V_STAT);
    7
    8 P_MSG := V_MSG;
    9 DBMS_ALERT.REMOVE(P_ALERT);
    10 END SP_COGETALERT;
    11 /
    Warning: Procedure created with compilation errors.
    SQL> SHOW ERR
    Errors for PROCEDURE SP_COGETALERT:
    LINE/COL ERROR
    5/5 PLS-00201: identifier 'DBMS_ALERT' must be declared
    5/5 PL/SQL: Statement ignored
    6/5 PLS-00201: identifier 'DBMS_ALERT' must be declared
    6/5 PL/SQL: Statement ignored
    9/5 PLS-00201: identifier 'DBMS_ALERT' must be declared
    9/5 PL/SQL: Statement ignored

    Most likely this account is getting privileges on DBMS_ALERT through a role. You must have privileges granted directly to you to compile an object with a call to another users object.
    Richard

  • Create Lead with Oracle BPEL process using Siebel CRMOD web service

    I'm trying to create a lead in the siebel OD (hosted) with a oracle BPEL process and using the siebel web service (2.0). In my bpel process I've been able to
    1. Login to OD and get a session id
    2. create the partner link using Siebel OD (version 2.0) wsdl for Lead
    3. Assign the session id to the partner link
    4. Assign the inputs (lastname, firstname, leadowner, viewMode=Personal, lovLanguageMode=LDC) to lead
    5. Call the leadInsert operation on the partner link
    However, when I deploy and execute the bpel process it breaks after calling the leadInsert with the following error message:
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    <remoteFault xmlns="http://schemas.oracle.com/bpel/extension"><part name="code"><code>Server</code>
    </part><part name="summary"><summary>The record with search specification '' in business component 'Lead' (integration component 'Lead') has been deleted by another user since it was retrieved.(SBL-EAI-04289)</summary>
    </part><part name="detail"><detail>&lt;detail>
    &lt;siebelf:siebdetail xmlns:siebelf="http://www.siebel.com/ws/fault" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    &lt;siebelf:logfilename xmlns:siebelf="http://www.siebel.com/ws/fault" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">OnDemandServicesObjMgr_enu_138636.log&lt;/siebelf:logfilename>
    &lt;siebelf:errorstack xmlns:siebelf="http://www.siebel.com/ws/fault" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    &lt;siebelf:error xmlns:siebelf="http://www.siebel.com/ws/fault" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    &lt;siebelf:errorcode xmlns:siebelf="http://www.siebel.com/ws/fault" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">(SBL-DAT-00494)&lt;/siebelf:errorcode>
    &lt;siebelf:errorsymbol xmlns:siebelf="http://www.siebel.com/ws/fault" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"/>
    &lt;siebelf:errormsg xmlns:siebelf="http://www.siebel.com/ws/fault" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">The record with search specification '' in business component 'Lead' (integration component 'Lead') has been deleted by another user since it was retrieved.(SBL-EAI-04289)&lt;/siebelf:errormsg>
    &lt;/siebelf:error>
    &lt;/siebelf:errorstack>
    &lt;/siebelf:siebdetail>
    &lt;/detail>
    </detail>
    </part></remoteFault>
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Any feedback as to what I'm doing worng woull be greatly appreciated.
    Thanks,
    --manoj                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Hi,
    We are also using BPEL to send data out to SIEBEL CRMOD.
    I've created a proxy that deals with authentication and session management.
    All you have to do is to deploy the proxy as a war file and refrence it as the end-point of your partner link.
    Code is here:
    http://another-soa-blog.blogspot.com/2010/02/oracle-siebel-on-demand-session-and.html
    Regards,
    Fred.

  • Using stored procedure with Oracle user-defined types in database control

    Hi,
    I have a requirement where I need to call an Oracle Stored Proc which has IN and OUT parameters. OUT parameters are of user-defined types in Oracle packages.
    I am getting error while calling the Stored proc like below:
    Procedure:
    ==========
    create or replace
    PROCEDURE AA_SAM_TEST (
    col1 out types_aa.aa_tex_type ,
    col2 out types_aa.aa_tex_type ,
    col2 out types_aa.aa_num_type ) As
    Types:
    ======
    create or replace
    package types_aa as
    type aa_tex_type is table of varchar2(255) index by binary_integer;
    type aa_num_type is table of char index by binary_integer;
    end
    Wli Code:
    =========
    DB Control:
    ===========
    * @jc:sql statement="call AA_SAM_TEST(?,?,?)"
    void Call_AA_SAM_TEST(SQLParameter[] param) throws SQLException;
    JPD Code:
    =========
    param = new SQLParameter[3];
    Object param1 = new String();
    Object param2 = new String();
    Object param3 = new String();
    this.param[0] = new SQLParameter(param1 , Types.STRUCT, SQLParameter.OUT);
    this.param[1] = new SQLParameter(param2, Types.STRUCT, SQLParameter.OUT);
    this.param[2] = new SQLParameter(param3, Types.STRUCT, SQLParameter.OUT);
    database_Update.Call_AA_SAM_TEST(this.param);
    I am getting the following error...
    <Jul 24, 2007 6:47:42 PM IST> <Warning> <WLW> <000000> <Id=database_Update; Method=Ctrl_files.Database_Update.Call_AA_SAM_TEST(); Failure=java.sql.SQLException: ORA-06553: PLS-:
    ORA-06553: PLS-:
    ORA-06553: PLS-:
    ORA-06553: PLS-:
    ORA-06553: PLS-:
    ORA-06553: PLS-306: wrong number or typ
    ORA-06553: PLS-306: wrong number or types of arguments in call to 'AA_SAM_TEST'
    ORA-06553: PLS-306: wrong number or types of arguments in call to 'AA_SAM_TEST'
    Can anyone know how to specify OUT parameter of USer-Defined types while using a DB control to access a Stored Proc in Oracle.
    Any help is highly appreciated.
    Thanks

    Hi,
    I have similar problem. Have you already solved the issue?
    Thanks

  • Create procedure with IN and  OUT, what is IN+OUT?

    Hi.
    from docs:
    IN
    Specify IN to indicate that you must supply a value for the argument when calling the procedure.
    OUT
    Specify OUT to indicate that the procedure passes a value for this argument back to its calling environment after execution.
    IN OUT
    Specify IN OUT to indicate that you must supply a value for the argument when calling the procedure and that the procedure passes a value back to its calling environment after execution.
    As I understand like in oop IN - passing parameter by value, out-by reference. But IN OUT? d:/

    Gets passed in with one value, comes out with another.
    create or replace procedure calcarea (x in out number)
    as
    begin
    x:=x*x;
    end;
    create or replace procedure output (oneside in number)
    as
    myinput number;
    area number;
    begin
    myinput := oneside;
    calcarea(myinput);
    dbms_output.put_line('The area in sq units is '||myinput);
    end;
    set serveroutput on
    exec output(5);Note how the area is passed out via the same parameter.

  • Create connection with Oracle SQL Developer

    Hello,
    my test to connect my Oracle database with SQL*PLUS works. Here I need only the username (I test with system), my password and the hostname (orcl).
    Now I want to create this connection with the SQL Developer.
    Here I need the Port. I don't know the port of my database. How can I find it out?

    Hi, the port must be the used by listener, review the $ORACLE_HOME/network/admin/listener.ora file or get the listener status(lsnrctl status) for get the correct port.
    You can try with the default port. (1521).
    Luck.
    Havea good day.
    Regards.

  • Create Directory for Oracle Loader

    I am using SQL Plus to connect to an Oracle server and execute queries.
    If I use the following query to create a folder
    CREATE OR REPLACE DIRECTORY MyTempFolder AS '/MyFolder/Temp';
    And then execute the follwing
    CREATE TABLE Customers
    CustNum Number(7))
    ORGANIZATION EXTERNAL
    (TYPE ORACLE_LOADER
    DEFAULT DIRECTORY MyTempFolder
    ACCESS PARAMETERS
    (RECORDS DELIMITED BY NEWLINE
    LOCATION ('Customers.csv')
    I get an error "No such File or Directory"
    I guess the loader is looking for Customers.csv file on the server but I have it on my local machine where I am running the queries from.

    user11146396 wrote:
    I am using SQL Plus to connect to an Oracle server and execute queries.
    If I use the following query to create a folder
    CREATE OR REPLACE DIRECTORY MyTempFolder AS '/MyFolder/Temp';
    And then execute the follwing
    CREATE TABLE Customers
    CustNum Number(7))
    ORGANIZATION EXTERNAL
    (TYPE ORACLE_LOADER
    DEFAULT DIRECTORY MyTempFolder
    ACCESS PARAMETERS
    (RECORDS DELIMITED BY NEWLINE
    LOCATION ('Customers.csv')
    I get an error "No such File or Directory"
    I guess the loader is looking for Customers.csv file on the server but I have it on my local machine where I am running the queries from.Oracle can only access file that reside on DB Server where Oracle is installed & running.
    Oracle has NO access to any remote client system

  • Creating procedure in oracle

    I want to create a procedure in which i have to insert records into a table based on selecting certain columns from another table
    is it possible

    Hi,
    Try this:
    SQL>create or replace procedure p1
      2    is
      3    V_EMPNO                                    NUMBER(4);
      4    V_ENAME                                    VARCHAR2(10);
      5    V_JOB                                      VARCHAR2(9);
      6    V_MGR                                      NUMBER(4);
      7    V_HIREDATE                                 DATE;
      8    V_SAL                                      NUMBER(7,2);
      9    V_COMM                                     NUMBER(7,2);
    10    V_DEPTNO                                   NUMBER(2);
    11
    11    cursor c1 is
    12    select *
    13      from emp;
    14  begin
    15    open c1;
    16    loop
    17      fetch c1
    18       into V_EMPNO
    19          , V_ENAME
    20          , V_JOB
    21          , V_MGR
    22          , V_HIREDATE
    23          , V_SAL
    24          , V_COMM
    25          , V_DEPTNO;
    26      exit when c1%NOTFOUND;
    27     insert into t1
    28     values
    29          ( V_EMPNO
    30          , V_ENAME
    31          , V_JOB
    32          , V_MGR
    33          , V_HIREDATE
    34          , V_SAL
    35          , V_COMM
    36          , V_DEPTNO
    37             );
    38    end loop;
    39    close c1;
    40  end p1;
    41  /
    Procedure created.
    SQL>select * from t1;
    no rows selected
    SQL>exec p1
    PL/SQL procedure successfully completed.
    SQL>select * from t1;
         EMPNO ENAME      JOB              MGR HIREDATE          SAL       COMM     DEPTNO
          7369 SMITH      CLERK           7902 17-12-1980        800                    20
          7499 ALLEN      SALESMAN        7698 20-02-1981       1600        300         30
          7521 WARD       SALESMAN        7698 22-02-1981       1250        500         30
          7566 JONES      MANAGER         7839 02-04-1981       2975                    20
          7654 MARTIN     SALESMAN        7698 28-09-1981       1250       1400         30
          7698 BLAKE      MANAGER         7839 01-05-1981       2850                    30
          7782 CLARK      MANAGER         7839 09-06-1981       2450                    10
          7788 SCOTT      ANALYST         7566 09-12-1982       3000                    20
          7839 KING       PRESIDENT            17-11-1981       5000                    10
          7844 TURNER     SALESMAN        7698 08-09-1981       1500          0         30
          7876 ADAMS      CLERK           7788 12-01-1983       1100                    20
          7900 JAMES      CLERK           7698 03-12-1981        950                    30
          7902 FORD       ANALYST         7566 03-12-1981       3000                    20
          7934 MILLER     CLERK           7782 23-01-1982       1300                    10
    14 rows selected.HTH
    Ghulam

  • Create Connection with ORACLE

    Hi all,
    I want to create a source system based on Oracle Database, so i did this:
    1-Create Logical System
    2-Create Source system from Rsa1, here i completed all the field, then i saved and everything is ok but in the final screen shows up the following message:
    "No shared library found for the database".
    Does anybody knows if i have to configure or installa something else?
    Thanks a lot

    To use DB Connect to transfer data into BI, you need to have installed the SAP-specific part of the database interface, the DBSL, for the corresponding source-database management system for each BI application server.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/58/54f9c1562d104c9465dabd816f3f24/frameset.htm

  • How to execute dynamically created procedure with out parameter

    hi guys ,
    friend i have to execute a procedure whose name is going to change dynamically and this procedure is have 2 out parameter . I need to capture value of these 2 output parameter, here i m giving my code also ..
    declare
    v_emp_id int :=100013 ;
    p_reg_off varchar(5) := 'R' ;
    p_user_id int := 6 ;
    v_status varchar(200);
    v_message varchar (200);
    v_Formula varchar(100);
    v_number int := 1 ;
    begin
    v_Formula := 'Call testsp_'||v_number||'('||v_emp_id||','''||p_reg_off||''','|| p_user_id || ',v_status,v_message)' ;
    DBMS_OUTPUT.PUT_LINE( v_Formula);
    execute immediate v_Formula;
    end ;
    and my procedure structure is like this
    CREATE OR REPLACE PROCEDURE testsp_1
    p_emp_id INT,
    p_reg_off CHAR,
    p_user_id INT,
    p_status OUT NOCOPY INT,
    p_message OUT NOCOPY VARCHAR2
    AS
    begin
    end ;
    please help me .....

    The Complete Syntax for Execute Immediate is ::
    EXECUTE IMMEDIATE dynamic_sql_string
    [INTO {define_variable,... | INTO record_name}]
    [USING
    IN bind_argument,...]
    [RETURN[ING] INTO
    bind_argument,...];
    i think now it won't be a problem! ;)

  • Any way to create procedure wither procedure?

    create or replace procedure P1
    IS
    begin
    procedure p1_child
    IS
    begin null end;
    null;
    end;
    /

    SQL> create or replace
      2  procedure outer_proc is
      3
      4     procedure inner_proc is
      5     begin
      6        dbms_output.put_line('inner');
      7     end;
      8
      9  begin
    10
    11     dbms_output.put_line('outer');
    12     inner_proc;
    13
    14  end;
    15  /
    Procedure created.
    SQL> exec outer_proc;
    outer
    inner
    PL/SQL procedure successfully completed.

  • Stored procedure in Oracle 8.1.7.0

    HI,
    my oracle version is 8.1.7.0
    I've created this stored procedure:
    CREATE OR REPLACE procedure CREATE_TAB1
    IS
    SVUOTA VARCHAR2(64);
    PRAGMA AUTONOMOUS_TRANSACTION;
    err_num number;
    err_msg varchar2(100);
    BEGIN
    SVUOTA := 'TRUNCATE TABLE TAB1 REUSE STORAGE';
    EXECUTE IMMEDIATE SVUOTA;
    INSERT INTO TAB1
    SELECT "COD_IMM","PIANO","COD_RITMI","TOTAL_AREA","MAX_AREA"
    FROM (SELECT a.*,
    MAX(total_area) OVER (PARTITION BY cod_imm, piano) max_area
    FROM REP_02_TEST1 a
    where a.COD_RITMI not in ('04'))
    WHERE max_area = total_area;
    COMMIT;
    EXCEPTION
    WHEN OTHERS THEN
    err_msg:= SUBSTR(SQLERRM, 1, 100);
    err_num:= SQLCODE;
    INSERT INTO tab_error (proc_name, err_code, err_msg, err_date)
    VALUES ('CREATE_TAB1', err_num, err_msg, sysdate);
    COMMIT;
    END CREATE_TAB1;
    but when I compile I get this error
    PROCEDURE AFM.CREATE_TAB1
    On line: 14
    PLS-00103: Encountered the symbol "(" when expecting one of the following:
    , from
    the procedure stop on line:
    MAX(total_area) OVER (PARTITION BY cod_imm, piano) max_area
    I think that oracle version 8.1.7.0 not allow the code "OVER (PARTITION BY"
    I tried also with:
    EXECUTE IMMEDIATE 'INSERT INTO TAB1
    SELECT "COD_IMM","PIANO","COD_RITMI","TOTAL_AREA","MAX_AREA"
    FROM (SELECT a.*,
    MAX(total_area) OVER (PARTITION BY cod_imm, piano) max_area
    FROM REP_02_TEST1 a
    where a.COD_RITMI not in ('04'))
    WHERE max_area = total_area';
    but I get:
    PROCEDURE AFM.CREATE_TAB1
    On line: 16
    PLS-00103: Encountered the symbol "04" when expecting one of the following:
    How can I create my stored procedure with Oracle version 8.1.7.0
    Thank in advance!

    What is this code suppose to accomplish?
    Is this type of processing not possible using Global Temporary Tables?
    Oracle8i PL/SQL did not parse analytic functions correctly so you would have to make that SELECT a view and then SELECT from that view in PL/SQL.
    I tried also with:When you wrap the SELECT in EXECUTE IMMEDIATE you have to properly use the single quotes. The single quote that appears at this line:
    where a.COD_RITMI not in ('04'))is assumed by the compiler as the end of the string started by EXECUTE IMMEDIATE. That is not what you want.
    Please post some more details about the type of procesing that this code is suppose to accomplish so we can suggest alternatives to get it done better.

  • URGENT! PLS HELP Load tests (Oracle Load Testing) in OTM

    hello,
    it´s really urgent so please help!
    How can I see the test result of the lload tests (done with Oracle Load Testing) in OTM????
    I can not figure out why such an important point is missing in the documenation....
    Thank you very much for your (hopefully soon) help!
    Edited by: 853007 on 20.04.2011 05:42

    added these files in the classpath : using oracle 9i
    , jdk1.4.2
    C:\Documents and Settings\Sampathkumar\Desktop>set
    CLASSPATH=c:\oracle\ora92\jdb
    c\lib\ojdbc14.jar;c:\oracle\ora92\jdbc\lib\nls_charset
    12.jar;%CLASSPATH%;
    submitted this code as a sample to test the
    conection
    import java.sql.*;
    public class test{
    public static void main(String[] args) throws
    SQLException,ClassNotFoundException {
    //load oracle driver
    Class.forName("oracle.jdbc.OracleDriver");
    System.out.println("Driver Loaded");
    //connecTION to the sample database
    String url =
    =
    "jdbc.oracle:thin:@SEC_MEC-MS3:1521:global.oracle";
    Connection conn=DriverManager.getConnection
    tion (url,"sam","aaj");
    System.out.println("Database connection
    on successful");
    //create a statement
    Statement stmt = conn.createStatement();
    ResultSet rset =stmt.executeQuery("select
    ry("select sysdate from Dual");
    while (rset.next())
    System.out.println(rset.getString(1));
    }//end of test DB class
    give the error stack
    C:\Documents and Settings\Sampathkumar\Desktop>java
    test
    Driver Loaded
    Exception in thread "main" java.sql.SQLException: No
    suitable driver
    at
    at java.sql.DriverManager.getConnection(Unknown
    known Source)
    at
    at java.sql.DriverManager.getConnection(Unknown
    known Source)
    at test.main(test.java:17)__________________________________________________________
    You are loading the driver classes ok. But is that the appropriate driver for youir database?
    I know Oracle is phasing out the .zip version classes12.zip, but have tried them
    here the possible drivers
    ojdbc14.jar Oracle 9. and higher and jk1.4 and higher
    ojdbc14_g-1.jar - include extentsion Oracle 9. and higher and jk1.4 and higher
    classes12.zip - Primarily used with oralce 8.* and jk1.2.* - jtk1.3.*

  • Problem when creating Database with Database, OS and hardware Configuraiton

    Problem when creating Database:
    There are two problems, which I faced during creation of database. When creating database with Oracle Database Assistant. One when creating pre tuned database from CD. And second when creating customized database giving options your self.
    Problem # 1:
    When creating pre tuned database from CD. The process of creating Database is 90 % complete and is at step # 3 Initializing Database. It gives error ORA-03113: end-of-file on communication channel.
    I searched following oracle help for this problem.
    ORA-03113: end-of-file on communication channel
    Cause: An unexpected end-of-file was processed on the communication channel. The problem could not be handled by the Net8, two-task software. This message could occur if the shadow two-task process associated with a Net8 connect has terminated abnormally, or if there is a physical failure of the interprocess communication vehicle, that is, the network or server machine went down.
    Action: If this message occurs during a connection attempt, check the setup files for the appropriate Net8 driver and confirm Net8 software is correctly installed on the server. If the message occurs after a connection is well established, and the error is not due to a physical failure, check if a trace file was generated on the server at failure time. Existence of a trace file may suggest an Oracle internal error that requires the assistance of customer support.
    Conclusion:
    What I conceive from this problem and the help available is that, I have to install NET8 again. But I am not sure about the solution, please tell me whether I am rite or not.
    Problem # 2:
    When creating database with custom option. The process of creating Database is 2 % complete and is at step # 2 Creating Database Files. It gives error ORA-12571: TNS:packet writer failure.
    I searched following oracle help for this problem.
    ORA-12571: TNS:packet writer failure
    Cause: An error occurred during a data send.
    Action: Not normally visible to the user. For further details, turn on tracing and re-execute the operation. If error persists, contact Worldwide Customer Support.
    Conclusion:
    What I conceive from this problem and the help available is that, I have to install NET8 again. But I am not sure about the solution, please tell me whether I am rite or not.
    Software & Hardware Configuration are as follow:
    Software:
    Database
    Oracle 8.1.7.0.0 (Oracle8i)
    Operating System
    Microsoft Windows 2000
    5.00.2195
    Service Pack 2
    Hardware:
    x86 Family 6 Model 8 stepping
    10
    AT/AT COMPITABLE
    260,400 KB RAM

    user563502 wrote:
    I am working on Solaris 8. What is Alert_SID.log? where can I find it?
    ThanksFor the responsible of the upgrade of Oracle database, not even know what Alert log is?
    to be honest with you, this is not your work.

  • Using overloaded procedures with OLEDB

    I'm wondering, if it's possible to use overloaded package-procedures with ORACLE's OLEDB-Provider. Microsoft's OLEDB-Provider doesn't support it.
    Any answer appreciated.

    Well, OK, it is possible - but only with ORACLE's OLEDB-Provider.

Maybe you are looking for

  • Magenta cast preview and print

    Hi, can anyone help? I have a new macbook pro running 10.5.2 and apple cinema display that is calibrated manually at the moment but looks good. I downloaded the trial version of Lightroom 1.3.1 and all appears to work well until print. I downloaded t

  • HT5035 where can I see the balance on my account?

    I cannot see the balance on my account after I redeem the code from a $10 iTunes gift card.  I don't see it in the Account Information page.  And when I try to select a song to purchase using my credits, it says if i confirm that I want to buy the so

  • Project Intelligence & Porfolio analysis & Project DBI

    Hi, Project Intelligence & Portfolio analysis & Project DBI Please help me to understand what all these would do?? in which way its unique??? thanks a lot n advance...

  • Am I about to ruin my project?

    I'm about to color correct my DVCPRO HD project, but only have access to a standard NTSC broadcast monitor. I've got it successfully connected through my DVX100 using firewire to the camera and S-video from the camera to the monitor. My question is,

  • FMS Query to Validate Unit Price on PO Screen

    Hello Experts, I am hoping someone has come across a query like this. On the Purchase Order I want to validate the unit price field by running a FMS query against it. What I would like to be able to do is : (Qty Field) X (UDF field which would be wei