Oracle VM Positional Document

Hi, Please i have been tasked to write a positional document on Oracle Virtualization for my company. Can anybody help me with some sample material on such?

All documents relating to 10g can be found at:
http://otn.oracle.com/pls/db10g/portal.portal_demo3?selected=1
Specifically the complete SQL Plus documentation can be found at:
http://download-west.oracle.com/docs/cd/B14117_01/server.101/b12170/toc.htm
Off the first URL, clicking on the books tab lists all other books included in the 10g documentation set. You should be able to find anything you need here.
Hope this helps.
CM.

Similar Messages

  • Oracle Store procedure Docu. Ex throws error ?!!!!

    The following are the Oracle Docu. Contents on Store Procedures.
    I could create same Function and added the same java codes to a JSP but it throws error as
    java.sql.SQLException: Malformed SQL92 string at position: 5. Expecting "call"
    Code is as follows
    JDBC and SQLJ allow you to call PL/SQL stored functions and procedures. For example, suppose you want to call the following stored function, which returns the balance of a specified bank account:
    FUNCTION balance (acct_id NUMBER) RETURN NUMBER IS
    acct_bal NUMBER;
    BEGIN
    SELECT bal INTO acct_bal FROM accts
    WHERE acct_no = acct_id;
    RETURN acct_bal;
    END;
    From a JDBC program, your call to the function balance might look like this:
    CallableStatement cstmt = conn.prepareCall("{? = CALL balance(?)}");
    cstmt.registerOutParameter(1, Types.FLOAT);
    cstmt.setInt(2, acctNo);
    cstmt.executeUpdate();
    float acctBal = cstmt.getFloat(1);
    Can any one Advise
    Abhiash

    change line
    CallableStatement cstmt = conn.prepareCall("{? = CALL
    balance(?)}");
    to
    CallableStatement cstmt = conn.prepareCall("{? = call
    balance(?)}");
    i.e. lowercase 'call'
    hope it solves

  • Oracle HSODBC (Help Document)

    Hi All,
    I've used HSODBC on Windows platform with MS Access. I prepared a document for my reference may be it is bit helpful to you also.
    Any suggestion and comment is highly appreciated.
    Oracle's Heterogeneous Services (HS)
    Heterogeneous Services (HS) is an integrated component within the Oracle database server and provides the generic technology for accessing non-Oracle systems from the Oracle database server. Heterogeneous Services enables you to use Oracle SQL statements to transparently access data stored in non-Oracle systems as if the data resided within an Oracle database server. To access a non-Oracle system, you need to use a Heterogeneous Services agent. If you connect to the non-Oracle system using generic connectivity through the ODBC or OLE DB interfaces, the agent is an executable that it automatically installed with the Oracle database server.
    Although HS service can be configured to work with variety databases like MS Access, MS Excel, SQL Server etc. This article shows how Oracle's Heterogeneous Services can be configured to connect to a Microsoft Access database using standard databases link. The method described can be used to connect to MS-Access from about any platform - Unix/Linux or Windows.
    The Generic Connectivity utility needs data dictionary tables in the Oracle Database. To check their existence, run a query on
    i.e. SYS.HS_FDS_CLASS.
    If it fails, run the caths.sql script located in
    <ORACLE_HOME>\network\admin\caths.sql
    as user sys or internal.
    In this article the platform used is windows.
         ORACLE_HOME = <ORACLE_HOME>
         MS Access file is      C:\MDB_HSODBC.mdb
    Necessary Components:
    ·     Oracle Database (with HS component installed).–Check for the <ORACLE_HOME>HS directory if it is not there you need to install HS service in oracle.
    ·     Oracle Network and Database Listener.
    ·     ODBC driver for your data source (EXCEL, ACCESS, etc)
    Following components need to be configured:
    ·     ODBC driver for the data source.
    ·     Database Listener (listener.ora).
    ·     Network Client (tnsnames.ora).
    ·     Heterogeneous Services (init_odbc_data_source.ora) (sqlnet.ora).
    ·     Database Link.
    For this example I will be querying an MS Access (MDB_HSODBC.mdb) from SQL*Plus. Following is the step by step procedure to configure these components.
    1. ODBC Data Source configuration:
    Start -> Settings
    Control Panel
    Administrative Tools
    Data Sources (ODBC)
    Select System DSN Tab
    Click on Add button
    Select appropriate driver in my case it is MS Access to work with so I selected the highlighted driver.
    1.     Enter appropriate Data Source Name (DSN_ACCESS in my example).
    2.     Enter description if you want it to be (optional).
    3.     Click on select button and Browse you mdb file.
    2. Database Listener configuration:
    Here is a sample LISTENER.ORA entry that can be used. Change the HOST, PORT and ORACLE_HOME entries to match your setup. You may also use a different SID_NAME if required.
    <ORACLE_HOME>\network\admin\listener.ora
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = access_25)(PORT = 1524))
    Port     à Your port number must match with the port number of TNS in next step.     
    access_25 à Is the name of machine where oracle is installed. You can use IP address.
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (PROGRAM = hsodbc)          ß hsodbc program needs to be called.     
    (SID_NAME = SID_HSODBC)     ß Your SID Name. (must be a valid name)
    (ORACLE_HOME = <ORACLE_HOME>)
    You can add your entries in existing DESCRIPTION_LIST & SID_LIST after adding you entries you file would look something like this.
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC3))
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = access_25)(PORT = 1524))
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = <ORACLE_HOME>)
    (PROGRAM = extproc)
    (SID_DESC =
    (PROGRAM = hsodbc)
    (SID_NAME = SID_HSODBC)
    (ORACLE_HOME = <ORACLE_HOME>)
    Note:- when listener configuration is over you need to restart your listener in order to accept changes you have made.
    3. Network Client (TNS) configuration:
    Let us move on the next step i.e. configuration of tnsnames.ora file.
    <ORACLE_HOME>\network\admin\tnsnames.ora
    TNS_HSODBC=
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST =access_25)(PORT = 1524))
    (CONNECT_DATA =
    (SERVICE_NAME = SID_HSODBC)
    (HS=OK)
    1.     You can use any valid name for you TNS in my case it is TNS_HSODBC
    2.     Your port number must match with the port number of listener of previous step.
    3.     Your SID is the SID_NAME that you have entered in listener’s file.
    4.     You must add (HS=OK) in this entry it tells oracle to use Heterogeneous Service.
    4. Heterogeneous Services configuration:
    <ORACLE_HOME>\hs\admin\init******.ora
    ****** à Is SID_NAME you have given in step 2.
    If your SID_NAME is ABC the file should be initabc.ora this name must match with your SID_NAME. This file doesn’t get created automatically but you need to create this. There is a file named inithsodbc.ora copy and paste this file and simply change the name accordingly. If your SID_NAME is hsodbc then no need to create a file you can modify existing file.
    In my example it is initSID_HSODBC.ora
    HS_FDS_CONNECT_INFO = DSN_ACCESS     à DSN Name of Step 1.
    HS_FDS_TRACE_LEVEL = off
    HS_NLS_DATE_LANGUAGE ='DD-MM-YYYY'
    HS_NLS_DATE_FORMAT ='DD-MM-YYYY'
    One more file needs to modified i.e. sqlnet.ora here are the steps.
    <ORACLE_HOME>\network\admin\sqlnet.ora
    If there are parameters like
    SQLNET.AUTHENTICATION_SERVICES= (NTS)
    NAMES.DIRECTORY_PATH= (TNSNAMES, ONAMES, HOSTNAME)
    You must comment it out or modify to
    SQLNET.AUTHENTICATION_SERVICES= (NONE)
    NAMES.DIRECTORY_PATH= (TNSNAMES, ONAMES, HOSTNAME)
    We have completed HS configuration let us move on to the next step to use it and get it worked.
    5. Database Link creation:
    CREATE PUBLIC DATABASE LINK LNK_HSODBC
    CONNECT TO DB_ACCESS
    IDENTIFIED BY DB_PASSWORD
    USING ‘TNS_HSODBC’ ;     
    DB_ACCESS           à User Name “Can be anything doesn’t matter”.
    DB_PASSWORD     à If you have password in MS Access database then it                     must match that password otherwise it can be                          anything but you need to mention it.     
    SELECT
    FROM
    STU_DTL@LNK_HSODBC ;
    STU_DTL      à     Table Name in MS Access database.
    If you want to make your query more simpler you can create synonym for your database link.
         CREATE PUBLIC SYNONYM SYNO_HSODBC     à Synonym Name.
              FOR STU_DTL@LNK_HSODBC ;
    Now you can query data source using synonym. This is just a shortcut.
    SELECT
    FROM
    SYNO_HSODBC ;
    Thanks & Regards
    Manoj
    Message was edited by:
    Manoj91

    as stated above.
    You have to move the listener service from the LOCAL SYSTEM account into a user account which has access to the remote computer share.
    Then yu have to change the DSN and replace the MDB file location to use UNC naming like \\machine\share\file.mdb
    Backgroung:
    LOCAL SYSTEM user can't access any shares due to security reasons. Thus you have to specify a dediacted user account which has sufficient permissions to access the remote computer.
    UNC naming must be used as drive letter shares are only available as soon as the user logged on. Commonly nobody is logged on at the Oracle database server and thus the driver letter share is not availbale. Thus using UNC naming is required.

  • URGENT ! Oracle application server document link doesn't  work...

    we can't download these document for 3 day.
    http://download-uk.oracle.com/docs/cd/B10468_04/docs.htm.
    Whole library can be dowloaded as zip file but zip file curropted and doesn't work.
    we are at migration stage of application server and we need these documents upgently.
    (we are from turkey)
    Thanks...

    Hi Ali,
    Our Apologies, the file was indeed corrupt.
    However, the developers spotted the issue and new files are currently being externalized for this Documentation Library. They should be live by 17:00 GMT at the same link on OTN.
    Regards,
    Les

  • Oracle Projects Testing Document

    Hi All,
    Iam new to Oracle Projects. Can you please provide some flow documents.
    for exampple :Once project is created from a templae\ project then whats the next step.
    Thanks &Regards
    Chandra

    All documents relating to 10g can be found at:
    http://otn.oracle.com/pls/db10g/portal.portal_demo3?selected=1
    Specifically the complete SQL Plus documentation can be found at:
    http://download-west.oracle.com/docs/cd/B14117_01/server.101/b12170/toc.htm
    Off the first URL, clicking on the books tab lists all other books included in the 10g documentation set. You should be able to find anything you need here.
    Hope this helps.
    CM.

  • Oracle 8i to Oracle 9i upgradation document

    Hi ,
    Can any of you guys tell me which is the best document for taking up Oracle 8i to Oracle 9i upgradation paper.
    Your response is highly appreciated
    Thanx in advance
    Sravan

    I would suggest read Oracle docs and If poss buy some questions and material from this site.
    http://www.selftestsoftware.com/default.aspx
    Regards,
    http://askyogesh.com

  • Need R12 oracle instance strategy document

    Hi All,
    I need to prepare the instance strategy document for EBS R12 instance.
    instance strategy here reflects to how many instances to use in a project go-live and what purposes they serve.
    It would be really appreciated if you could share some a document pertaining to this.

    982767 wrote:
    Hi All,
    I need to prepare the instance strategy document for EBS R12 instance.
    instance strategy here reflects to how many instances to use in a project go-live and what purposes they serve.
    It would be really appreciated if you could share some a document pertaining to this.Please see old threads for similar topic and discussion.
    Re: How many lower levels of Oracle Applications?
    https://forums.oracle.com/forums/search.jspa?threadID=&q=+Instances+AND+UAT+AND+Development&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Number+AND+Instances&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Is there a script to position document windows?

    I think it's likely that someone (Dave?) has written a script for this, but I can't find one.
    I want to open (or at least reposition) document windows on my second monitor, not under the open panels on the primary display on my MacBook screen; and I'd like to find a way of doing this with keystrokes.
    If a script doesn't exist, is it possible, or is there some roadblock? Should I post in the scripting forum?

    I have indeed written such a script, but it is not aware of second monitors, and off the top of my head, I'm not sure how to make it aware.
    Ah, it doesn't have to be aware. The bounds are relative to the total monitor space. So my script will work.
    Here you go:
    //DESCRIPTION: Resets active window size or uses front window to set default size.
    // Check for WindowDefault.txt; if present use it to set front window
    // if not, use front window to set it after checking with user.
    myPath = app.activeScript;
    myParts = myPath.toString().split("/");
    myParts[(myParts.length - 1)] =  "WindowDefault" + app.version.slice(0,1) + ".txt";
    myNewPath = myParts.join("/");
    mySettingsFile = File(myNewPath);
    // Before proceeding, check that there is a front window
    // If not, offer user the chance to delete the current settings
    if (app.windows.length < 1) {
    beep();
    if (confirm("No window is open; would you like to delete the settings file?")) {
      // User said yes; check that it exists
      if(mySettingsFile.exists) {
       mySettingsFile.remove();
    } else {
    if (mySettingsFile.open("r")) {
      savedBounds = mySettingsFile.read();
      mySettingsFile.close();
      myBounds = savedBounds.split(",");
      for (i = 0; i<myBounds.length; i++) {
       myBounds[i] = Number(myBounds[i]);
      app.windows[0].bounds = myBounds;
    } else {
      beep();
      if (confirm("Settings file is missing. Use current front window to set default?")) {
       // User said: go to it.
       new File(mySettingsFile);
       mySettingsFile.open("w");
       mySettingsFile.write(app.windows[0].bounds);
       mySettingsFile.close();
    Before you run the script for the first time, position a window where you want this script to position all subsequent windows. It keeps the information in a text file in the same folder as the script. You can reset the position by editing the file (that's what I often do to fine tune the position) or by running the script again with no window open.
    Dave

  • Oracle's position on SQLMOD

    It has become apparent to me that Oracle has chosen not to support SQL*Modlue, a Core SQL:1999 standard, for it's RDBMS product. I came to this conclusion after reading what looks like an Oracle publication...
    http://info.star.spb.ru/Oracle/Oracle9i_doc/server.901/a90125/ap_standard_sql.htm
    "Oracle does not support E182, Module language. Although this feature is listed
    in Table 31 in the standard, it merely indicates that Core consists of a choice
    between Module language and embedded language. Module language and embedded
    language are completely equivalent in capability, differing only in the manner
    in which SQL statements are associated with the host programming language. Oracle
    supports embedded language."
    (If my inference is incorrect, and Oracle does in fact support SQL*Modlue, please correct me)
    There is value to having a general purpose compiler for a purely SQL source other than creating just another way to interface with a program. Embedded SQL is great, I use it a lot, but now I find myself in a position where I need to come up with a single source that can be compiled into objects suitable for linking into several different programming languages. I do not want to have to replicate and "wrap" the SQL in program specific procedure call syntax for each and every programming language I must support. I would really like to have something like SQL*Module build the object and wrap the SQL. Despite what was documented, Embedded SQL is NOT equivilent functionality to SQL*Module.
    PL/SQL looks like a solution, but it really isn't given that my users do not want to make SQL calls of any kind, even calls to stored PL/SQL procedures.
    The problem restated...
    1) I need linkable objects (or classes) for C, C++, Perl, Tcl and JAVA
    2) I don't want to have to maintain multiple sources for the SQL statements
    3) The calling programs do not want to have to make SQL calls of any kind.
    If there is a solution, inside or oustide Oracle's suite of AP support tools, please indicate what it might be. I'm all ears.
    BTW: SQL*Module is, I believe, supported by Oracle's Rdb product. But my company's refusal to buy and support VMS machines (the only platform on which Rdb will run) precludes that possibility. Porting Rdb to *UX would probably work for me as well :-)
    Thanks

    Hi Dan,
    John Brinkman has x, y samples on his blog: http://blogs.adobe.com/formfeed/category/transpromo
    I have a sample here that accesses the x, y position of objects and the mouse, which may help.
    http://cookbooks.adobe.com/post_Moving_Objects_Around_a_Form-16519.html
    and
    http://assurehsc.ie/blog/index.php/2010/05/moving-objects-around-a-form/
    You are correct that the coordinates are based on the top/left of the container. When working with coordinates I tend to set the Master Page container to 0,0, so that all objects are then based off this.
    Good luck,
    Niall

  • Oracle Clinical Positions

    Hi,
    I am a BSc Graduate (currently completing my MBA), with over 12 years experience in Oracle (Developer/Designer/PL/SQL/SQL etc - 7/8i/9i/10g).
    Can anyone please advise me difficult/easy the transition is into becoming a Oracle Clinical Developer?
    I am extremely keen to explore the positions that are available out there!
    Currently employed as a Oracle Developer/Consultant within the Life Sciences field in the Tri-State area.
    Also, is there any online documentation available on Oracle Clinical?
    Look forward to any and every help posted.
    Thanks in advance.
    Roger

    Hi I am looking for some material related to Oracle Clinical, which can give me some idea about how it works..what are its components..so that i can appear for oracle Clinical interview...
    Folks can reply me on [email protected]
    Thanks for reply
    Dal Hit

  • Need a sample Oracle Database Design Document

    Looking for a sample database design document.
    Which may include below high level steps if possible.
    1. Hardware & software specifications.
    2. Database Sizing/ estimate.
    3. Schema Design
    4. Data transformations/ feeds
    Thanks
    Mallikharjuna

    user8919741 wrote:
    Looking for a sample database design document.
    Which may include below high level steps if possible.
    If you Google "database design document" you'll see that there are many templates available. I've never used any such document, and I think you'll be hard pressed to find one that fits your business needs exactly (assuming there are business needs behind your request).
    1. Hardware & software specifications.
    2. Database Sizing/ estimate.I would suggest you analyze existing workloads and base your estimates on that. If there is no existing workload you'll have to estimate one based on how many users you estimate will use the solution, or some other clever estimation method.
    3. Schema Design This is a matter of translating business/application requirements to what needs to be stored in the relational database, and creating a data model based upon that. Every model will be different.
    4. Data transformations/ feedsYou could simply document each transformation/feed and purpose.
    Thanks
    Mallikharjuna

  • Oracle Projects AIM documents template - BR100, TE, BP Etc

    Hi All,
    Can someone help me in getting the AIMs doc for oracle project costing / billing / managment R12?
    It would be gr8 to have any of the business process doc / functional specs ( BR100) / Test cases / Migration Doc / Gap analysis doc etc.
    Just templates of these will also sufficient if docs are not availalble.
    Please send it to [email protected] or guide me with URLs if possible.
    Thanks in Advance. :-)
    Regards

    Please see old threads which answer your questions -- http://forums.oracle.com/forums/search.jspa?threadID=&q=Download+AND+AIM&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Oracle Java Developer Document

    Hi,Where can i find document files about Java Developer and related tools as pdf files such as User's Guide and so on, in this site or another sites..thanks

    Hi,
    You will find a user's guide for Oracle9i JDeveloper here
    There are also some more documents in PDF format available here
    Hope this helps.
    Sujatha.

  • Unable to transform EDI document to XML payload in Oracle B2B inbound op

    Hi,
    In our current project we would be implementing Oracle B2B.So I am doing simple POC on Oracle B2B inbound operation for a EDI document for a project requirement.Facing issue if Transformation option selected in Oracle B2B console. Would really appreciate if you guys give me some pointer..
    Below is short desacription of POC:
    1) Created ECS file for Purchase Order(EDI_X12 Standard, 850, Version : 4010) in Spec Builder 6.6.0
    2) Created corresponding XSD and dummy test EDI data file(.dat) in Spec Builder 6.6.0
    3) In Oracle B2B Console, created Document Type and Document Definition
    4) Created 2 Trading Partners : Our Organisation(Host) and MyPartner(Remote)
    5) My Partner is Sender and Our Organisation is Receiver
    6) Linked Document Type to both Trading Partners
    7) Created a Listening Channel
    8) Protocol of Listening Channel is Generic File
    9) Mentioned Folder Path and File Type : %From PARTY%_%TO PARTY%_%DOCUMENT TYPE NAME_%DOCUMENT REVISION%.dat
    10) Agrrement validated and deployed
    11)Checked option Transformation for Agreement
    12) In SOA Composite created a simple Asynchronous BPEL process
    13) BPEL process using a B2B Adapter is subscribed to Document Type(Purchase Order) operatioon Receive and Mode Default
    14) Using a simple Assiign activity to map payload
    15) BPEL then inoke a File Adapter service to write sme XML payload(picked from B2B fatre EDI transformed to XML) to a file
    Issue Faced:
    1) B2B could make oput Sender and Receiver Trading Partners
    2) B2B could make out the Agrrement
    3) B2B is picking up EDI file
    4) If Agreemnet has Transformation option selected, then B2B is givinng below Error:
    [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@182461f] [userId: <anonymous>] [ecid: 0000JILzvC2E0Va_xLp2iW1EzqZ_0000pg,0] [APP: soa-infra] [dcid: 162dbcacafdb4641:19e705e4:13495b34174:-7fd3-0000000000000070] java.lang.UnsatisfiedLinkError: com.edifecs.xengine.xeobjects.XEHelper.createN2XNative()Lcom/edifecs/xengine/xeobjects/XEDataProc
    at com.edifecs.xengine.xeobjects.XEHelper.createN2XNative(Native Method)
    5) It is unable to transfer EDI payload to XML
    6) Checked payload in Wire Message : still showing EDI payload
    7) Due to this BPEL is facing issue since it is expecting XML payload
    8) In BPEL it is givimng Error: Index Out Of bound.. I guess may be due to EDI payload
    9) If transformation option unchecked in Agreement in B2B console then B2B working good but BPEl failing
    Options Tried:
    1) I Exported Repository,then purged design time data and Reimported and restarted Server and tested..not working
    2) I also created a Parser Scehma for Blank EDI document(that option I found in Spec Builder 6.6.0==>New Document-->Parser Schema(Blank EDI Document) and then placed that Parser Schema file(ECS file) in folder :
    C:\Oracle\Middleware\Weblogic\Oracle_SOA1\soa\thirdparty\edifecs\XEngine\config\schema
    and added an entry in XERegistry.xml
    <Item Name="SchemaFile">${XERoot}/config/schema/Spec2</Item>
    but not working..
    3) Checked namespace in XSd and WSDl for BPEL,they are correct
    Getting no clue how to resolve..Need help...
    Thank you...

    Log File :(Weblogic JDK pointing to 32 bit)
    [2012-01-01T01:32:01.818+05:30] [AdminServer] [ERROR] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@182461f] [userId: <anonymous>] [ecid: 0000JILhj4XE0Va_xLp2iW1EzqZ_00002J,0] [APP: soa-infra] [dcid: 162dbcacafdb4641:19e705e4:13495b34174:-7fd3-0000000000000070] java.lang.UnsatisfiedLinkError: com.edifecs.xengine.xeobjects.XEHelper.createN2XNative()Lcom/edifecs/xengine/xeobjects/XEDataProc;[[
         at com.edifecs.xengine.xeobjects.XEHelper.createN2XNative(Native Method)
         at com.edifecs.xengine.xeobjects.XEHelper.createN2X(Unknown Source)
         at oracle.tip.b2b.document.edi.EDIDocumentPlugin.processIncomingDocument(EDIDocumentPlugin.java:1112)
    java.lang.UnsatisfiedLinkError: com.edifecs.xengine.xeobjects.XEHelper.createN2XNative()Lcom/edifecs/xengine/xeobjects/XEDataProc;
         at com.edifecs.xengine.xeobjects.XEHelper.createN2XNative(Native Method)
         at com.edifecs.xengine.xeobjects.XEHelper.createN2X(Unknown Source)
         at oracle.tip.b2b.document.edi.EDIDocumentPlugin.processIncomingDocument(EDIDocumentPlugin.java:1112)
         at oracle.tip.b2b.engine.Engine.processIncomingMessageImpl(Engine.java:2348)
         at oracle.tip.b2b.engine.Engine.processIncomingMessage(Engine.java:1533)
    [2012-01-01T01:32:01.834+05:30] [AdminServer] [ERROR] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@182461f] [userId: <anonymous>] [ecid: 0000JILhj4XE0Va_xLp2iW1EzqZ_00002J,0] [APP: soa-infra] [dcid: 162dbcacafdb4641:19e705e4:13495b34174:-7fd3-0000000000000070] java.lang.IndexOutOfBoundsException: Index: 0, Size: 0[[
         at java.util.ArrayList.RangeCheck(ArrayList.java:547)
         at java.util.ArrayList.get(ArrayList.java:322)
         at oracle.tip.b2b.engine.Engine.processIncomingMessageImpl(Engine.java:2746)
         at oracle.tip.b2b.engine.Engine.processIncomingMessage(Engine.java:1533)
    [2012-01-01T01:32:01.846+05:30]
    ]]

  • Issue with Oracle Distributed Document Capture in table update

    Hi All,
    I installed ODDC and configured with Oracle 11gr2 for document commit.
    I have table with 4 fields i.e id,c_number,content,mime_type. I am storing the image in content which blob datatype.
    when i import and send document from WebCapture screen i am getting document send successfully. But the data is no commiting in database table.
    The pak file are genereated in "/Document Capture/Webpages/ClientAcces".
    how i have to commit this files to database?.
    am I missing something in configuration?. Please suggest.
    thanks
    nr
    Edited by: pnr on Jul 30, 2012 5:50 AM
    Edited by: pnr on 30 Jul, 2012 7:54 AM

    It's likely that Oracle Distributed Document Capture Service (ecNetService) haven't been started as it is responsible for the pak file processing and it doesn't start automatically after install.
    Regards,
    Boris
    Edited by: tombo on 2012.08.01 04:49

Maybe you are looking for

  • Abap program to maintain variants in RSRPARAMETRIZA

    Hi, SAP provided an ABAP example to maintain 3.5 variants in NW04s Report Z_MASS_VARIANT_MAINTENANCE is available in the next u2018how tou2019 document. [http://www.sapadvisors.com/resources/HowtoInformationBroadcasting.pdf] This is only helpfull if

  • Problem running TestCases in SeismicXML project

    I've tried to run the Test Cases in the "SeismicXML" samples using the "UnitTests" target and I always get the following error when I build: "error: Failed tests for architecture 'i386' (CG OFF)" Has anyone else had this problem?

  • Flash to SIP live video - can anyone help?

    We are looking for a simple solution that enables a 2-way video call between a SIP client and a browser-based Flash client (which grabs the webcam). Does anyone have any ideas as to where we should look? Does anyone want to build this for us for a fe

  • Privacy settings on iPod Touch

    Can anyone tell me how I get to the privacy settings on iPod Touch? If not available on the app on the iPod Touch, is there a way to set them if I sign in at skype.com? (Couldn't find it there either) Solved! Go to Solution.

  • Using cookies to remember the last 2 links visited

    Hey everyone, I am trying to use learn JSP and cookie. I am making a webpage, and it is suppose to remembers the last 2 links selected from the website. Basically, there are a few radio buttons. The user is to pick one, press submit. I am trying to w