Errors while installin of Oracle 8i (8.1.7 32 Bit) on AIX 4.3.3

I got following errors while installing Oracle. Though the make files were there but the install process was reporting error to invoke it. I selected ignore and proceeded further. Is this normal. Is this something to worry about?
Exception String: Error in invoking target ihsodbc of makefile /u01/app/oracle/product/8.1.7/rdbms/lib/ins_rdbms.mk
Exception String: Error in invoking target install of makefile /u01/app/oracle/product/8.1.7/ctx/lib/ins_ctx.mk
Exception String: Error in invoking target install of makefile /u01/app/oracle/product/8.1.7/network/lib/ins_cman.mk
Exception String: Error in invoking target install of makefile /u01/app/oracle/product/8.1.7/network/lib/ins_names.mk
Exception String: Error in invoking target install of makefile /u01/app/oracle/product/8.1.7/network/lib/ins_net_client.mk
Exception String: Error in invoking target install of makefile /u01/app/oracle/product/8.1.7/network/lib/ins_net_server.mk
Exception String: Error in invoking target install of makefile /u01/app/oracle/product/8.1.7/network/lib/ins_oemagent.mk
Exception String: Error in invoking target install of makefile /u01/app/oracle/product/8.1.7/otrace/lib/ins_otrace.mk
Exception String: Error in invoking target install of makefile /u01/app/oracle/product/8.1.7/plsql/lib/ins_plsql.mk
Exception String: Error in invoking target install of makefile /u01/app/oracle/product/8.1.7/rdbms/lib/ins_rdbms.mk
Exception String: Error in invoking target install of makefile /u01/app/oracle/product/8.1.7/sqlplus/lib/ins_sqlplus.mk
Exception String: Error in invoking target ioracle of makefile /u01/app/oracle/product/8.1.7/rdbms/lib/ins_rdbms.mk
Exception String: Error in invoking target relink of makefile /u01/app/oracle/product/8.1.7/precomp/lib/ins_precomp.mk
Exception String: Error in invoking target toolsinstall of makefile /u01/app/oracle/product/8.1.7/ldap/lib/ins_ldap.mk
Exception String: Error in invoking target utilities of makefile /u01/app/oracle/product/8.1.7/rdbms/lib/ins_rdbms.mk
Exception String: File not found /u01/app/oracle/product/8.1.7/classes/lib/dba_qt.jar
Exception String: File not found /u01/app/oracle/product/8.1.7\RDBMS\ADMIN\instBUILDALL.SQL
Exception String: File not found /u01/app/oracle/product/8.1.7\RDBMS\ADMIN\instBUILD_DB.SQL
Exception String: File not found /u01/app/oracle/product/8.1.7\RDBMS\EXTPROC\instEXTERN.SQL

I already have C libraries installed.
crdoptst:/> lslpp -L | grep -i xlc
xlC.aix43.rte 4.0.2.1 C C Set ++ Runtime for AIX 4.3
xlC.cpp 4.3.0.1 C C for AIX Preprocessor
xlC.msg.en_US.cpp 4.3.0.1 C C for AIX Preprocessor Messages
xlC.msg.en_US.rte 4.0.2.0 C C Set ++ Runtime Messages--U.S.
xlC.rte 4.0.2.0 C C Set ++ Runtime
crdoptst:/> which make
/usr/bin/make

Similar Messages

  • Error while starting the Oracle BI Server

    Hi ,
    I am getting the services.msc error while starting the Oracle BI Server as -
    Error handling the control request.
    Please help me out ..
    Thanks and Regards ,

    It is actually Windows services error that I am facing ....
    while starting the BI server after making any changes to NQS config file ..
    Could not start the Oracle BI Server service on Local Computer
    Error 1064: An exception occured in the service when handling the control request
    Message was edited by:
    user460211
    Message was edited by:
    user460211

  • ORA-20160: Encountered an error while getting the ORACLE user account.

    when users trying to apply for the leave . Once they apply for the leave and the respective manager approves it.
    They get an notification mail with the error message The changes were not applied because ORA-20160: Encountered an error while getting the ORACLE user account for your concurrent request. Contact your system administrator. ORA-06512: at "APPS.ALR_PER_ABSENCE__800_53447_IAR", line 3 ORA-04088: error during execution of trigger 'APPS.ALR_PER_ABSENCE__800_53447_IAR'
    EBS : 12.1.2
    Database : 11.2.0

    We are also facing the same issue , with the following error.
    The Changes were not applied because ORA-20160: Encountered an error while getting the ORACLE user account for your concurrent request, Contact your system administrator. ORA-06512: at “ APPS.ALR_PAY_ELEMENT_801_53338_IAR”, line 1 ORA-04088: error during execution of the trigger ‘APPS.ALR_PAY_ELEMENT_801_53338_IAR’
    Dear Hussein ,
    As per your suggestion , if we disable the trigger , does it workflow goes ahead without any problems ?
    By Disabling the trigger , what would be the impact ? I mean does we are going to loose the data that was supposed to be updated the trigger.
    And basically please educate me . what is the use of this APPS.ALR_PAY_ELEMENT_801_53338_IAR’ ?
    Regards
    Raghu

  • Error while getting the ORACLE user account for your concurrent request

    Hi ,
    When I am submitting the Concurrent Program from OAF page Iam getting
    Error
    Encountered an error while getting the ORACLE user account for your concurrent request. Contact your system administrator.
    When we will face this error.
    Not able to submit the Request
    Krishna

    Krishna
    Try like this
    public int submitCPRequest(String shipmentId) {
    System.out.println("into submitCPRequest");
    try {
    OAApplicationModule am = pageContext.getApplicationModule(webBean) ;
    OADBTransaction transaction = am.getOADBTransaction();
    Connection conn = transaction.getJdbcConnection();
    ConcurrentRequest cr = new ConcurrentRequest(conn);
    cr.setDeferred();
    String applnName = new String("XXAPL"); //Application that contains the concurrent program
    System.out.println("ApplName"+ applnName);
    String cpName = new String("SHIP_REQ"); //Concurrent program name
    System.out.println("Concc Name"+ cpName);
    // String cpDesc = new String("Shipping Request"); // concurrent Program description
    // Pass the Arguments using vector
    // Here i have added my parameter headerId to the vector and passed the
    //vector to the concurrent program
    Vector cpArgs = new Vector();
    cpArgs.addElement(shipmentId);
    System.out.println("Args"+ cpArgs);
    After this it is going into exception
    // Calling the Concurrent Program
    int requestId = cr.submitRequest(applnName, cpName, null, null, false, cpArgs);
    System.out.println("Req Id"+ requestId);
    tx.commit();
    return requestId;
    catch (SetDeferredException e)
    throw new OAException("SetDeferredException " + e.getMessage(),OAException.ERROR);
    catch (RequestSubmissionException e) {
    System.out.println("Into Exception");
    OAException oe = new OAException(e.getMessage());
    oe.setApplicationModule(this);
    throw oe;
    }Thanks
    AJ

  • Problem calling web service: Error while getting the ORACLE user account

    Hi All!
    I was able to call the service EGO_ITEM_PUB-PROCESS_ITEM, but after implemented some patches, suddenly I get this error as result:
    - <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
    - <env:Body>
    - <OutputParameters xmlns="http://xmlns.oracle.com/apps/ego/soaprovider/plsql/ego_item_pub/process_item__1/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <X_INVENTORY_ITEM_ID xsi:nil="true" />
    <X_ORGANIZATION_ID xsi:nil="true" />
    <X_RETURN_STATUS>U</X_RETURN_STATUS>
    <X_MSG_COUNT>1</X_MSG_COUNT>
    <X_MSG_DATA>Encountered an error while getting the ORACLE user account for your concurrent request. Contact your system administrator.</X_MSG_DATA>
    </OutputParameters>
    </env:Body>
    </env:Envelope>
    Any ideas?
    Thanks,
    Konrad

    hsawwan wrote:
    Hi,
    I was able to call the service EGO_ITEM_PUB-PROCESS_ITEM, but after implemented some patches, What are those patches?
    # Patch 8407693:R12.TXK.B ISG: Service Generation Failure - Java Compiler Could Not be Found
    # Patch 8459663:R12.OWF.B : Mandatory Consolidated One-Off Fixes for ISG on Top of 12.1.1
    # Patch 8916358:R12.OWF.B : Service Timeout When Invoking Services Deployed to Integrated SOA Gateway
    # Patch 9349321:R12.OWF.B : Issue with item Bulk Load in Oracle Product Hub PIP 2.4
    # Patch 9446625:R12.FND.B : 1OFF:8995921:12.1.1:12.1.1:PERF : LoginModules Performance Issue
    # Patch 9070077:R12.OWF.B : 1OFF:9045280:12.1.1:12.1.1:Invoking a Web Service Requires NLS Lang When It Should be Optional
    # Patch 9153106:R12.OWF.B : IREP_Parser.PL Exits with GETPWUID Function IS Unimplemented in PARSER.PM -> Wichtig für ISG (für custom pl/sqls im ISG)
    # Patch 9004712:R12.OWF.B : One-Off for IREP PARSER on Top of Oracle E-Business Suite Release 12.1.1 -> Wichtig für ISG (für custom pl/sqls im ISG)
    IAS:
    # Patch 8607523 for the AS version 10.1.3.4
    Oracle Support told me that I need this patches because of some other problem (generating wsdl and deploy for BOM_BO_PUB package does not work in my environment) and since that, the process_item call stopped working!
    btw: The EGO_ITEM_PUB-PROCESS_ITEM call for an existing item still works (I can modify the description), but creating a new item does not work anymore. Here are the parameters I send to the web service:
    Header:
    <wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
    <wsse:UsernameToken>
    <wsse:Username>sysadmin</wsse:Username>
    <wsse:Password
    Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">sysadmin</wsse:Password>
    </wsse:UsernameToken>
    </wsse:Security>
    <q0:SOAHeader/>
    Body:
    <q1:InputParameters>
    <q1:P_API_VERSION>1.0</q1:P_API_VERSION>
    <q1:P_INIT_MSG_LIST>T</q1:P_INIT_MSG_LIST>
    <q1:P_COMMIT>T</q1:P_COMMIT>
    <q1:P_TRANSACTION_TYPE>CREATE</q1:P_TRANSACTION_TYPE>
    <q1:P_ITEM_NUMBER>KHR_WS_05</q1:P_ITEM_NUMBER>
    <q1:P_DESCRIPTION>desc2</q1:P_DESCRIPTION>
    </q1:InputParameters>
    Thanks,
    Konrad

  • Encountered an error while getting the ORACLE user account for your concurrent request. Contact your system administrator

    Dear Techies,
    We have registered an Extra Information Type as self service OAF page and did some validations using user hook which are working fine. But for some requests EIT creation page is throwing below errors.
    1. Encountered an error while getting the ORACLE user account for your concurrent request. Contact your system administrator.
    2. An unexpected situation occurred while executing routine FND_DATA_SECURITY.GET_SECURITY_PREDICATE_HELPER.The cause was: The parameter 'p_object_name' cannot be 'GLOBAL'.
    System throws these errors whenever user hook suppose to throw our customized validation messages.Since we are at UAT instance, we are bouncing apache and oacore to get rid of these errors every time they appear. But we cannot bounce once it is moved to production.
    Kindly share some ideas  to fix these errors as we are very close to Go-Live and we are facing this issue with all EIT's and SIT's.
    Thanks and Regards
    Dileep Kumar.

    Hi Mahesh,
    Thanks for reply.
    I have gone through the link that you have suggested. But our EIT user hook validations doesn't  have any code related to submission of concurrent programs. More over our error is not stable. If we bounce the apache and oacore, the system will work fine without unexpected errors for some time. We are not even able to replicate these errors.
    Thanks and Regards
    Dileep Kumar.

  • Error while running the Oracle Text optimize index procedure (even as a dba user too)

    Hi Experts,
    I am on Oracle on 11.2.0.2  on Linux. I have implemented Oracle Text. My Oracle Text indexes are fragmented but I am getting an error while running the optimize_index error. Following is the error:
    begin
      ctx_ddl.optimize_index(idx_name=>'ACCESS_T1',optlevel=>'FULL');
    end;
    ERROR at line 1:
    ORA-20000: Oracle Text error:
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.CTX_DDL", line 941
    ORA-06512: at line 1
    Now I tried then to run this as DBA user too and it failed the same way!
    begin
      ctx_ddl.optimize_index(idx_name=>'BVSCH1.ACCESS_T1',optlevel=>'FULL');
    end;
    ERROR at line 1:
    ORA-20000: Oracle Text error:
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.CTX_DDL", line 941
    ORA-06512: at line 1
    Now CTXAPP role is granted to my schema and still I am getting this error. I will be thankful for the suggestions.
    Also one other important observation: We have this issue ONLY in one database and in the other two databases, I don't see any problem at all.
    I am unable to figure out what the issue is with this one database!
    Thanks,
    OrauserN

    How about check the following?
    Bug 10626728 - CTX_DDL.optimize_index "full" fails with an empty ORA-20000 since 11.2.0.2 upgrade (DOCID 10626728.8)

  • Error while installing the Oracle BI 10.1.3.3.1

    Hi ,
    I got the following error while installing 10.1.3.3.1 Oracle BI Suite .
    [nQSError: 46036] Internal Assertion: Condition GetAdaptersinfo( pAdapterinfo.get(), &ulOutBufLen) == NO_ERROR, file .\Config\SUSystemConfig.cpp, line 1297.
    while the installation shows it is completed successfully ..
    but admin tool is not started ....
    even the BI server also is down and says - process terminated unexpectedly ..
    Please help me out in this regards ....

    HI Venkat ..
    THanks for your response ....
    No ..
    The installaion doesnot succeed ....
    Especially the admin tool installation is consistently throwing this error -
    [nQSError: 46036] Internal Assertion: Condition GetAdaptersinfo( pAdapterinfo.get(), &ulOutBufLen) == NO_ERROR, file .\Config\SUSystemConfig.cpp, line 1297.
    The services are runing fine ..
    but I cannot enter to admin tool after installation ....
    It is giving the same error as of installation ...
    any remedies ??
    Thanks and regards ,

  • Error While Restoring the Oracle Database using Cloud Backup

    Hello,
    I have been facing a serious error while oracle restoration. I have Backed up Complete Database. For Testing restoration, the DBA removed all the DBF, logs and Control File from there orignal Position.
    He restarted the Database in "Startup nomount" mode. No i am not able to connect to target database from my Backup Server remotely.
    Whenever i try to restore, it shows following error:-
    ***RMAN-04005: error from target database:***
    ***ORA-12528: TNS:listener: all appropriate instances are blocking new connections***
    ***ORA-12528: TNS:listener: all appropriate instances are blocking new connections***
    ***"ORA-12528: TNS:listener: all appropriate instances are blocking new connections***
    I am using Oracle 11g R2 x64-bit database and on Windows Platform with Windows Server 2008 R2.
    Can Anyone help me by connecting, rman to the remote target database when it is in nomount mode.
    I am not able to connect the sqlplus remotely.\
    Thanks in Advance...
    Regards
    Pravesh Upadhyay

    Devika,
    You have to stop all your adapters, your repository, close all IStudio client and stop all sessions connected to this schema before running the oaiimport.
    If you don't do this the oaiimport will not work properly as the script will not be able to drop the user and will try to re-create existing objects.
    Tip : use the following select to list the session using oaihub902 user (and get rid off them)
    select username, count(*)
    from V$session
    where username in ('OAIHUB902')
    group by username
    order by count(*) desc, username
    JL

  • Error while doing the Oracle 9i Database Installation

    PROBLEM ONE
    While installing the Oracle Database 9i on Windows 2000 Server with 256 MB Ram, I got the following error
    Windows - Wrong Volume
    The wrong volume is in the drive. Please insert volume ORCL9011_1 into drive E:.
    This message occured when percentage done was 100%. It was copying visualsdo.exe
    PROBLEM TWO
    Then I deinstalled the Oracle 9i software and deleted the oracle folder from both the Windows Explorer as well as in the RegEdit.
    Again I started doing the installation...
    In Oracle Database Configuration Assistant, while it was installing "Adding Oracle JVM", I got the following error
    "Oracle Database Configuration Assistant: ERROR"
    "ORA-06576:not a valid function or procedure name"
    When I clicked Ignore I got the following error
    "Oracle Database Configuration Assistant: ERROR"
    "ORA-04021:timeout occured while waiting to lock object
    SYS.META-INF/MANIFEST.MF"
    Please let me know why this problem occured and what is the solution for this......
    If you need any information then please let me know
    With Regards
    Deepak

    You have too few RAM on your machine, even you could successfully create an instance, it's going to slow as hell.
    When you run DBCA to create database, instead of actually creating the database you could choose to dump the SQL scripts and files used for database creation to a directory. This way will give you a chance to modify pfile and reduce the SGA parameter. I believe the default SGA of instance created by DBCA is already beyond your RAM limit.

  • Error while restarting the Oracle BI

    Hi,
    Getting an error while trying to restart the Oracle BI. This was happened when appending the new Repository file. Below is the error msg:
    <Mar 30, 2012 3:19:12 PM IST> <Error> <oracle.bi.management.sysmancommon> <BEA-0
    00000> <Operation Failed: start; OracleInstance: instance1; Component: coreappli
    cation_obis1; msg: 0 of 1 processes started.>
    <Mar 30, 2012 3:19:12 PM IST> <Error> <oracle.bi.management.sysmancommon> <OBI-S
    YSMAN-1249> <Processing Event: SEVERE: Element Type: PROCESS, Element Id: instan
    ce1:coreapplication_obis1, Operation Result: FAILED_TO_START, Detail Message: Op
    eration Failed: start; OracleInstance: instance1; Component: coreapplication_obi
    s1; msg: 0 of 1 processes started.>
    <Mar 30, 2012 3:19:12 PM IST> <Error> <oracle.bi.management.sysmancommon> <OBI-S
    YSMAN-1249> <Processing Event: SEVERE: Element Type: BI_INSTANCE, Element Id: co
    reapplication, Operation Result: FAILED_TO_START, Detail Message: Error in start
    ing one or more components of BI Instance; Please check the server log files for
    detailed message.>
    ECID from WorkWrapper -> 3ccf0a9ed825fc3c:-71cd22bf:13662f5ae46:-8000-0000000000
    000dae
    Can any one let me know the solution.
    Regards
    Renjith

    Hi,
    Are you deployed new rpd file in your serve. please conform?
    This error occured several reasons.
    Tell me first obiee l0g or 11g.
    If 10g Please follow the below steps.
    1. Please check the rpd properly copied or not.\
    2. Exiting rpd having any space or hyponym or dot. Please recheck?
    3. Please check how many instance running your server.
    use this command in your server.
    ps -ef | grep nqsserver.
    Still running more than one please kill the all the session and restart newly.
    I am not sure this is what your looking so far.
    Award points it is useful.
    Thanks,
    Satya

  • Error While Connecting to Oracle

    Hi All,
    While Connecting to Oracle through jdbc thin driver, following error is displayed. Please help me in resolving the same.
    <b>SQL Exception:
    State  : null
    Message: Io exception: The Network Adapter could not establish the connection
    Error  : 17002</b>

    hi,
    Any or all of the following conditions may also apply:
    1) You are able to establish a SQL*Plus connection from the same client to the same Oracle instance.
    2) You are able to establish a JDBC OCI connection, but not a Thin
       connection from the same client to the same Oracle instance.
    3) The same JDBC application is able to connect from a different
       client to the same Oracle instance.
    4) The same behavior applies whether the initial JDBC connection
       string specifies a hostname or an IP address.
    Go thru the foll url
    http://www.websina.com/bugzero/kb/oracle-connection.html
    wbr,
    KK

  • Jython error while updating a oracle table based on file count

    Hi,
    i have jython procedure for counting counting records in a flat file
    Here is the code(took from odiexperts) modified and am getting errors, somebody take a look and let me know what is the sql exception in this code
    COMMAND on target: Jython
    Command on source : Oracle --and specified the logical schema
    Without connecting to the database using the jdbc connection i can see the output successfully, but i want to update the oracle table with count. any help is greatly appreciated
    ---------------------------------Error-----------------------------
    org.apache.bsf.BSFException: exception from Jython:
    Traceback (innermost last):
    File "<string>", line 45, in ?
    java.sql.SQLException: ORA-00936: missing expression
    ---------------------------------------Code--------------------------------------------------
    import java.sql.Connection
    import java.sql.Statement
    import java.sql.DriverManager
    import java.sql.ResultSet
    import java.sql.ResultSetMetaData
    import os
    import string
    import java.sql as sql
    import java.lang as lang
    import re
    filesrc = open('c:\mm\xyz.csv','r')
    first=filesrc.readline()
    lines = 0
    while first:
    #get the no of lines in the file
    lines += 1
    first=filesrc.readline()
    #print lines
    ## THE ABOVE PART OF THE PROGRAM IS TO COUNT THE NUMBER OF LINES
    ## AND STORE IT INTO THE VARIABLE `LINES `
    def intWithCommas(x):
    if type(x) not in [type(0), type(0L)]:
    raise TypeError("Parameter must be an integer.")
    if x < 0:
    return '-' + intWithCommas(-x)
    result = ''
    while x >= 1000:
    x, r = divmod(x, 1000)
    result = ",%03d%s" % (r, result)
    return "%d%s" % (x, result)
    ## THE ABOVE PROGRAM IS TO DISPLAY THE NUMBERS
    sourceConnection = odiRef.getJDBCConnection("SRC")
    sqlstring = sourceConnection.createStatement()
    sqlstmt="update tab1 set tot_coll_amt = to_number( "#lines ") where load_audit_key=418507"
    sqlstring.executeQuery(sqlstmt)
    sourceConnection.close()
    s0=' \n\nThe Number of Lines in the File are ->> '
    s1=str(intWithCommas(lines))
    s2=' \n\nand the First Line of the File is ->> '
    filesrc.seek(0)
    s3=str(filesrc.readline())
    final=s0 + s1 + s2 + s3
    filesrc.close()
    raise final

    i changed as you adviced ankit
    am getting the following error now
    org.apache.bsf.BSFException: exception from Jython:
    Traceback (innermost last):
    File "<string>", line 37, in ?
    java.sql.SQLException: ORA-00911: invalid character
    here is the modified code
    sourceConnection = odiRef.getJDBCConnection("SRC")
    sqlstring = sourceConnection.createStatement()
    sqlstmt="update tab1 set tot_coll_amt = to_number('#lines') where load_audit_key=418507;"
    result=sqlstring.executeUpdate(sqlstmt)
    sourceConnection.close()
    Any ideas
    Edited by: Sunny on Dec 3, 2010 1:04 PM

  • Getting Error While Opening the Oracle Form 6i in 10g

    Hi All ,
    FRM-10102: Cannot attach PL/SQL library XXX. This library attachment will be lost if the module is saved.
    I am getting above error message while opening Oracle 6i Form in 10g.
    I get the following Alert message when I try to attach the library to my form -
    Attached library name
    S:\.........xxx.pll contains non-portable directory specification. Remove path? Yes/No?
    If I select 'No', the Form compiles and runs without any error.
    But if I select 'Yes', I get the following error message:
    FRM-40039: Cannot attach library xxx while opening form.
    All files (fmb, fmx, pll, plx) are on the same path. I detached and then re-attached the library but this didn't work for me?
    Help Appreciated.
    Thanks & Regards,
    Ram.

    use the shiped batch program frmplsqlconv.bat to convert all your forms/librarys from Forms 6i to 10g.
    you can call it in wizard mode from the start menu (e.g. OracleDeveloperSuite <OraHome> => Forms Developer => Forms Migration Assistant (GUI Mode) and follow the instructions step by step
    or you can call it by batch to convert all your forms/librarys. The batch file is found in
    <ORA10g_HOME>BIN\frmplsqlconv.bat
    =>
    frmplsqlconv.bat <formname>

  • 2499 error while executing a Oracle PL/SQL query

    Hi,
    Im a newbie, using Oracle 10g enterprise edition, netbeans 6.5. Im unable to execute a SELECT query which contains multiple JOINS & UNIONS(lengthening upto 3800 chars) through code hence It flashes SP2-0027: Input is too long (> 2499 characters) - line ignored.
    Earlier i had same problem while executing the query on the web interfaced query browser(isqlplus), sqlplus prompt.
    Later on i found a Solution for such queries which are lengthening more than 2499 chars is either to break the query into multiple lines by pressing enter manually or to use M$ Word application (paste the query in a file and save it as a plain text filetype with insert line breaks option checked).
    But what about the coding part now?
    Please guide me through this.
    Regards,
    Peter

    On sqlplus Oracle can't process lines over 2500 (cero is included on the counting) that's the reason why the error is displayed. To sort out this problem divide your query string into parts smaller than 2500 (2000 is recomended) and just add the next line between them:
    CHR(10) || CHR(13)
    Since this is gonna be read by the Oracle's engine and embedded into your query line, it will understand that every pair of CHR(10) || CHR(13) is a carriage return command and will drain the buffer processing every line with not errors.
    Hope this helps
    Edited by: MiloHega on Jan 27, 2009 1:00 PM

Maybe you are looking for

  • How to find out a skype ID from a text?

    Met someone today and gave them my number, but they are from another country so i guess they used skype to text me which i can't reply to because skype is retarded... anyways, is there any way to find out the skype name of the person who sent it? The

  • Methods of class contained in an other class

    Hello, i would like to know is there is another way than  what i do with classes embeded in another: ex i have a device classe that containe a class Com (rs232 ...) what i do whan i want to setup a com of a device is get com objet of device then appl

  • Images come up with crop mode 'marching ants'

    If I open an image or switch between images (Ctrl/Tab) and the crop mode tool is current (not active, just the one that's currently showing on toolbar), then the image shows the 'marching ants' and I have to press Esc to get rid of them. It starts ge

  • Pavilion dv7 4050ed - Windows Update Problems After First Installation

    I have only just today received my brand new HP Pavilion dv7 4050ed and commenced installation straight away.  There were no problems in the initial installation and I booted Windows for the first time successfully and let it do its auto installs for

  • Designer6i Rel4 Repository installation problem

    Hi All, I downloaded the Designer6i Rel4 from OTN and install it for a trial. I did everything as instructed in the installation guide but I run into problem when installing a repository. Only one log 'ckprereq.log' is there and it says, IMP-00003: O