Does Oracle Lite embeded XML DB feature???

Please tell me, whether the Oracle lite enabled XML DB feature??? Thanks!!!!

As far as I know the Oracle Lite product does not currently support any of the XML features of the Oracle Database. What features were you looking for. Was it just XML storeage and queryiability or was it SQL <--> XML interaction. For a pure XML capability you might want to look at Sleepcat's DB-XML product. It's a programming API that lets you store, index and query XML documents. As you may have seen in the news Oracle recently purchased Sleepcat.

Similar Messages

  • Does Oracle support "imported" XML schemas

    Hi,
    Does Oracle support XML schemas that import other XML schemas. If so, are there any known problems ?
    Thanks
    John

    I have the same problem:
    A huge and complex .xsd-schema with several include and import statements can't be registered (all referenced documents exist in the repository):
    DBMS_XMLSCHEMA.REGISTERSCHEMA(
    schemaURL => 'http://www.toxinfo.org/namespaces/2004/05/Rosetta#ProtocolEmil',
    schemaDoc => xdbURIType('/ProtocolEmil.xsd').getClob(),
    local => TRUE,
    genTypes => TRUE,
    genBean => FALSE,
    genTables => TRUE
    causes an Error at the first import:
    ERROR at line 1:
    ORA-31000: Resource 'RosettaSimpleTypeCollection.xsd' is not an XDB schema
    document
    ORA-06512: at "XDB.DBMS_XMLSCHEMA_INT", line 17
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 26
    ORA-06512: at line 2
    Editing the schema is not an option for me. Any ideas?
    Thanks!
    Tillmann Cordes

  • Does Oracle Lite support Oracle Spatial

    Does anybody know whether Oracle Lite or Personal Oracle supports the Oracle Spatial plug-in. Also, for extra credit does anybody know what the difference between Personal Oracle and Oracle Lite is?
    We will be needing to provide some attribute and spatial data from our Oracle Enterprise database to several laptops for field personnel using an electronic map we developed. We would like to use a portable version of Oracle that supports Oracle Spatial objects.
    Any help would be greatly appreciated.
    Thanks
    Dan

    oh, I didn't realize it was so limited. No, that won't do. We're looking for a "mini" version of the real production database including stored code, triggers etc. Should be scaled down enough to allow rapid syncing of data and schema changes from the production (or really QA) database, but full enough to include the objects necessary to allow the developers to test their code changes to the front end applicaiton on their own environment.

  • Talend oracle lite problem

    we want to use talend in order to migrate data from an sql server to a oracle 11g. the database in oracle 11g is the repository for our oracle lite server.
    When we migrate the data we select action on table none and action on data insert or update for the oracle 11g components. We encounter a problem in which oracle lite thinks that the entire table has been changed after talend has finished its update and foreces a full refresh of the table to the users. As you understand this is a great problem because even when only one record has changed (or even none) the entire table is redownloaded on the users.
    From what i know oracle lite uses a complicated system in order to understand which records have been changed and therefore require to be updated on the clients. It appears as if talend changes something in the table after it has finished its data migration (perhaps some kind of a timestamp?) and therefore makes oracle lite believe that the entire table with all its rows were changed. i do not know which of the two components cause the error, talend changing something or olite thinking wrong about tables updated
    1)why does this happen and how exactly does oracle lite understand which data have been updated?
    im using this forum in order to ask if someone has encountered this problem again and how did he solve it
    thank you for your time

    not used talend, but if i understand correctly, you are using this to transfer data from a sql server database to oracle. I assume the data being put into the oracle database is into tables in the main schema, rather than the mobileadmin schema itself.
    For the tables that are being written to in the oracle database, how are they defined in the oracle lite publication (fast refresh, complete etc.) and what happens in the MGP process after the data import has run.
    The default process is that for fast refresh objects the following happens.
    1) when data is inserted/updated/deleted from the base table, triggers (TABLENAMi/u/d) fire in the main schema, and this causes data to be inserted into mobileadmin.C$all_sid_logged_tables to show the table as changed, and updates made to the CVR$ table in the main schema
    2) based on the 'dirty' tables in c$all_sid_logged_tables then the MGP process logs phase will copy data from CVR$ tables to CLG$ tables, and then run the compose to populate the out queue CMP$ tables
    it may be that part of the settings are stopping the updates to the CVR$ tables and this is causing a versioning mismatch (normal trigger for complete refresh), so check to see what updates are done to this table as well as the manin data table

  • Conflicts resolution methods in Oracle Lite

    Can anyone please provide the answers of the following questions?
    1_What Methods are used for Conflict detection and resolution for concurrent updates by multiple clients in Oracle lite databases?
    2_ Is there any method that extract semantic relation from the concurrent update transactions and create a global update schedule?
    3_ Does oracle lite use conflict avoidance mechanism?
    4_ What replication method is used by Oracle Lite Database?

    In terms of conflict resolution with oracle lite, which end do you mean? conflict resolution in the client database (ie: oracle lite) or on the server side when processing client uploads (this is just a standard oracle database), also not sure what you are trying to achieve
    *1_What Methods are used for Conflict detection and resolution for concurrent updates by multiple clients in Oracle lite databases?*
    I assume in the following that you are talking about dealing with uploads
    Depending on how the publication items are defined, the process is quite different.
    a) fast refresh publication items
    When the client synchronises, the upload data is uploaded as a packed binary file which is then unpacked and inserted into in queue tables in the mobileadmin repsitory (table names begin CFM$ followed by the publication item name). This is the only action that happens during the actual sync process.
    A second and independent process, not linked to the actual synchronisation - the MGP process, runs on the mobile server, and this has three phases - apply, process logs and compose that run one after the other. You can set the MGP to only do the apply phase, or all three.
    during the apply phase the data in the in queue tables for a particular user/transaction will be applied to the server database. Normally the MGP process is set to have three threads (this can be changed, but three is the default), and therefore three client uploads will be processed in parallel, but each of these threads is independant of the others and therefore should be seen as seperate transactions.
    It should be noted that even if you have 50 or 100 users synchronising concurrently, only three upload sets will be processed at any one time, and almost certainly a period of time after the synchronisation has completed (may be many hours depending on the MGP cycle time)
    As each of the apply threads is a seperate transaction, there is no concept of concurrency built in, and the only conflict resolution by default is based on the server wins/client wins setting of the publication item. where multiple users are updating the the same server record with 'client wins', the first user will update the data, and then the next user will update the data (just a repeat of the previous one). NOTE also that in the case of an update, ALL columns in the record are updated, there is no column level update.
    There are customisation options available to provide finer grained control over the apply process, look at the PLSQL callback packages registered against each publication item for beforeapply, afterapply, beforetranapply and aftertranapply, Apply DML procedures against the publication items and also the CUSTOMIZE package at the MGP level
    b) complete refresh publication items
    where the publication as a whole has a mixture of fast and complete refresh publication items, these normally work in the same way as the fast refresh described above. Where however you just have complete refresh items the data MAY be written directly to the server table on upload
    c) queue based publication items
    These work in realtime, rather than with a delay for the MGP process to pick up the data.
    When the user synchronises, the uploaded data is is written to the in queue tables in the same way, but when this is completed, a package (defined as part of the publication definition) is called, and the procedure upload_complete is run passing in the user and transaction identifiers. This package needs to be hand crafted, but you have full control over what and how all of the uploaded data is processed, but again this is a single transaction for that user. If you want to look at other sessions running, you need to find a way to implement this.
    *2_ Is there any method that extract semantic relation from the concurrent update transactions and create a global update schedule?*
    As noted above, the uploads may be processed in parallel, but they are seperate transactions, so no built ins
    *3_ Does oracle lite use conflict avoidance mechanism?*
    Only the basic oracle stuff, unless you use the customisation options to write your own
    *4_ What replication method is used by Oracle Lite Database?*
    The different types of publication items select data from the server database for download in different ways
    a) fast refresh
    change logging tables and triggers are created in the server database. These are scanned during the MGP process logs phase to determine what changes have happened since the last MGP compose, and what publication items they affect. The MGP compose then runs and this uses the same three threads to process the users in alphabetical order using the change keys to populate data in out queue tables (prefixed CMP$) in the repository. These have the PK values for the data, plus a transaction types (insert/update/delete). All the MGP process does is populate these out queue tables.
    When the user synchronises, the data in the out queue tables is used as a key list to extract the data from the actual server tables into a packed binary file, and this is sent to the client.
    b) complete refresh
    there is no pre-preparation in this case, the data is streamed directly from the server database into the packed binary download file
    c) queue based items
    in real time when the user is synchronising after the apply has been done by the uploade_complete procedure, a second procedure download_init is called. Within this you have to code the data extract, and MUST populate tables (you also need to create them) CTM$<publication item name> these are effectively out queue tables, but contain all of the data, not just the PK values. At the end of the procedure, the data is streamed from these into the binary file for download.
    Depending on the definition of your apublication, you could have one or more of the above types (VERY bad idea to mix queue based and fast refresh unless you are very sure about what you are doing) and therefore there may be a mix of different actions happening at different times
    In conclusion i would say that try and send seperate data to clients so that they do not interfere with each other, and for inserts use uniqueue keys or sequences. If you MUST send the same data to different clients for update, then the queue based approach provides the best control, but as it is real time is not as scalable for large data sets.

  • Oracle Lite & CF 2

    Hi
    Does Oracle Lite work with an C# CF2 PocketPC Application ?
    And what about licensing? Is it free or will it cost something ?
    Thanks for helpand informations!

    Hi, the licensing was previosly done on per-client basis, but afaik the conditions have changed in the late summer and some kind of processor-license is required now, which makes Oracle Lite uneconomic in some small settings... so it's not free at all.
    to the CF2 - unfortunatelly Oracle does not provide CF2 class library yet, but only CF1 library, which can be of course used from CF2 application. There's one catch in using Oracle ADO.Net CF1 assembly from CF2 code - it's not possible to work with some classes (OracleDataAdapter mainly) in the ADO-generic way = using the generic IDataAdapter interface etc, because there are some casting problems between Oracle CF1 assembly and CF2 System.Data assembly - it's not fully compatible. So, if you plan to use directly the final Oracle classes (OracleCommand, OracleDataAdapter, etc) and not the generic ones (IDataCommand, IDataAdapter, etc.), there're no problems. If you'd like to go the generic way and write your application independently on concrete database engine, it's a little trickier. I managed to make it with writing some intermediate classes, which wrap the Oracle classes so as it's possible to cast them to their ancestor base classes. I can post the code here, if you're interested...

  • Import/Export-Tools for XML on Oracle-Lite

    We have to import/export XML-Format on the Oracle-Lite-Database.
    -Are there any tools available supporting Import and Export of XML-Data ?
    -Can someone give us a recomendation how to perform XML-Imports/Exports if there is
    no "out of the box-tool" available ?
    Thanks.

    So try. It is called Oracle XML-SQL utility and it set of classes for direct XML manipulation from/to database with HUGE amount of features. You can use it from JAVA and PL/SQL (via Java Stored Procedures). It is realy great.

  • Does j2me support jdbc for Palm Oracle Lite(8i/9i)

    I have a requirement to develop an application in Java for PALM OS with Oracle Lite 8i/9i connectivity. does j2me support jdbc for Palm Oracle Lite(8i/9i). Please help me to know what all java VM available in the market which have oracle connectivity(jdbc/odbc/whatever) for Oracle Lite for PALM.
    thanks
    dk

    Pleae some one reply, if j2me/kvm supports jdbc/odbc connectivity to oracle lite 9i/8i on palm
    thanks
    dk

  • Does oracle have similar functionality like MsSql "for xml path('')"

    Does oracle have similar build in functionality like MsSql “for xml path(‘’)” , or in another word, it can enforce the result set(multiple rows) into ONE line such kind of presentation way.
    Thanks in advance. Any help would be greatly appreciated.

    Here I would like specify my question mnore clearly,
    CREATE TABLE t(
    line NUMBER(3),
    site VARCHAR2(4),
    phase VARCHAR2(5),
    test VARCHAR2(25));
    INSERT INTO t VALUES (1, '0100', '*','1111111111111111111111111' );
    INSERT INTO t VALUES (2, '0100', '=','2222222222222222222222222' );
    INSERT INTO t VALUES (3, '0100', '=','3333333333333333333333333' );
    INSERT INTO t VALUES (4, '0100', '*','4444444444444444444444444' );
    INSERT INTO t VALUES (5, '0100', '=','5555555555555555555555555' );
    INSERT INTO t VALUES (6, '0200', '*','6666666666666666666666666' );
    Here I want to retrieve the 'line' column information in ONE line way
    select line from t I want the result is like '1,2,3,4,5,6'
    Any generous help would be greatly appreciated!!!

  • Does Oracle 9i Lite supports Thai language?

    We are developing mobile application[residing in a laptop] using java and Oracle 9i lite version [Release 5.0.2]. The application has English and Thai version. After we upload all the data[thai and english phrases] to Oracle lite from server [residing in Sun Solaris, Oracle 91] we were able to see the Thai characters in mobile, but for some phrases there is an extra English character amended to the phrase. We are not doing any char conversion here, just collecting the data from server and inserting to lite version DB.
    Entries in polite.ini are,
    [All Databases]
    DatabaseID=501
    DataDirectory=C:\oracle\ora90\Mobile\Sdk\OLDB40
    NLS_LOCALE=ENGLISH
    MessageFile=C:\oracle\ora90\Mobile\Sdk\BIN\OLITE40.MSB
    DBCharEncoding=Native
    When i ran through the release document for Oracle9i Lite Release 5.0.2, i can relalize that it is not supporting Thai language. Correct me if i am wrong.
    Did any of the latest Lite version supports Thai language. How about 10g? Or any alternatives is there in Release 5.0.2 itself.
    Thanks and looking forward for your reply.
    Best Regards,
    Muthu

    Hello,
    I am not sure to understand your question.
    Oracle Lite is a SQL Database , and you can access it from Oracle Application Server using the correct JDBC driver and then use the JSP Tag libs to access the data (JSTL SQL) or any JDBC API in J2EE.
    If I am not answering your question please add more details about what you are trying to achieve...
    Regards
    Tugdual Grall

  • Embedded VB for Oracle Lite

    Can I use Embedded VB for developing applications that use Oracle Lite as the database.If not what software is used to create forms on the device?

    your problems are via network or modem ? And wich kind of replication are you tryng to use? I think replication via file is the best solution
    best regards and sorry for my english

  • Does Oracle XML Parser support double byte charset?

    Hi,
    Does Oracle XML Parser support double byte characters such as Korean or Chinese? If so, please tell me what version and how to construct xml/xsl files (...encoding="???")?
    Thanks for any help,
    Tuan

    Hi Raymond,
    Thank you for your help. It worked when I running in JDeveloper with your posted code. However, when I tried in my real application, it won't work.
    The problem is for localization purposes, my application using some texts display in browsers are saved in Unicode file. Later, application runs and depends on languages setting in browsers, with JavaServlet retrieves those texts and saves in formated xml StringBuffer. Then, using existed XSL Stylesheet file and OracleXMLParser to generate an output HTML.
    It has worked fine with English, France or others (single byte characters), but it can't
    for double bytes character such as Korean or Chinese. I also tried different charset in xml file.
    The following is one of returning errors:
    -- oracle.xml.parser.v2.XSLException: XSL-1004: Error while parsing input XML document (<Line 1, Column 552>: XML-0221: (Fatal Error) Invalid char in text.)
    I run this app in win2000/IIS with ServletExec3.0, JDK1.2.2 and OracleXMLParser v2.0.2.10
    Thank you for any helps,
    Tuan
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Raymond Hayes Jr ([email protected]):
    Nothing fancy 'cause I'm half asleep but I used your xml/xsl and it seemed to work. No errors anyway. This is what I put together in JDeveloper 3.2
    package demo;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import oracle.xml.parser.v2.*;
    public class CuriosityKilledTheCat extends HttpServlet {
    * Initialize global variables
    public void init(ServletConfig config) throws ServletException {
    super.init(config);
    * Service the request
    public void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    try
    XSLStylesheet xsl = new XSLStylesheet( new URL ("file:///c:\\temp\\input.xsl") , null );
    XSLProcessor xp = new XSLProcessor();
    XMLDocument xd = new XMLDocument ();
    XMLDocumentFragment xf = new XMLDocumentFragment();
    xf = xp.processXSL ( xsl , new URL ( "file:///c:\\temp\\input.xml") , null );
    System.out.println ( "here" );
    xd.appendChild( xf );
    xd.print ( response.getOutputStream() );
    catch ( Exception e )
    System.out.println ( e.getMessage() );
    * Get Servlet information
    * @return java.lang.String
    public String getServletInfo() {
    return "demo.CuriosityKilledTheCat Information";
    }<HR></BLOCKQUOTE>
    null

  • Does Oracle AP produce SEPA XML files for EFT transactions?

    One of our banks recommends that we provide the EFT file in SEPA XML format which is applicable to all banks in EU countries. Does Oracle AP produce this file as a standard? Does it need to be customized?
    What are the Standard EFT Formats produced by Oracle eBS as a standard out-of-the-box functionality?
    Any sort of input on the topic would be useful. Thanks.

    Our Oracle customers are using the APRO Banking Gateway. This product delivers standard the SEPA XML file format already, which is created based on the standard Oracle AP Payment Batch/Instruction information.
    You can use the APRO Banking Gateway for all Oracle EBS releases 11i, 12.
    If you have any questions, check www.apro.nl.

  • Does Oracle has features like Profiler in MS SQL

    Since I'm new to Oracle I would like to know from you guys does Oracle has the feature like that of Profiler like present in MS SQL. Since I need those services for my work so really like to know about it. I tried to find out that feature but couldn't. So please share your knowledge about it .
    Regards,
    Praveen Rai

    As someone who has actually used SQL Profiler I will add a few comments.
    There are two Oracle features that may be of interest when trying to duplicate SQL Profiler information.
    Niall mentioned the Oracle trace facility. Oracle is heavily instrumented and the internal measurements for how long individual operations executed and/or waited are available via the trace facility. It can be turned on by a session (several methods available) and it is also possible to turn trace on externally for an already running session.
    An experienced DBA may choose to work with the raw trace file but Oracle provides a utility trkprof which will format the trace file collecting the execution information (number of physical IO, Logical IO, and rows returned) by SQL statement.
    This kind of trace files are primary used for tuning purposes. Trace files can also be used to capture bug information via setting database events,
    You can find information on SQL trace in the Performance and tuning manual.
    Another feature that may be of interest is the Log Miner feature. This feature allows you to see the SQL in the online or archived redo logs. It is possible to generate SQL to back out changes that were applied.
    This reminds me of another feature that will allow you to see "recent" activity: flash back query. For as long as the information is retained in the undo segments it is possible to query all activity against a row or set of rows in a table.
    Again each of these features is documented in the standard documentation.
    Here is a link to an article on how to turn trace on for an already running session.
    How do I switch on sql trace in another session that is already running?
    http://www.jlcomp.demon.co.uk/faq/alien_trace.html
    HTH -- Mark D Powell --

  • Oracle Lite 10.3.0.3 MEMBER privilege does not work as desired

    Hi All,
    I need to have my client application with multi user functionality. I got to know that it can be done by having users with MEMBER privilege attached to users with USER privilege.
    The application is running fine when i login as USER but giving the following error when login as MEMBER.
    I have given necessary grants and created synonyms for the database objects in SYSTEM schema to MEMBER schema.
    I think this error may be specific to connection. Whether the member is not able to access the application files? Can anyone help me with regard to this. I have been struggling for past two weeks:( Anyone has done it earlier.. I have seen a similar post 1)lite create user and app subscription 2)selective sych from server regarding MEMBER privilege.
    If vasileios or rekounas     could help me regading this? It will be really helpful friends..(Error message attached in next post)
    Thanks in Advance
    Niranjana

    -------------------Error displayed in the page when a member accesses the application----------------
    500 Internal Server Error JBO-30003: The application pool (xxpb.oracle.apps.eam.mobile.inspection.model.XXPBMobileMainAMLocal) failed TO checkout an application module due TO the following
    EXCEPTION
    :oracle.jbo.JboException: JBO-29000: Unexpected
    EXCEPTION
    caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected
    EXCEPTION
    caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected
    EXCEPTION
    caught: java.lang.NullPointerException, msg =NULL at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2002) at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793) at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453) at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233) at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424) at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:419) at oracle.adf.model.bc4j.DCJboDataControl.rebuildApplicationModule(DCJboDataControl.java:1543) at oracle.adf.model.bc4j.DCJboDataControl.beginRequest(DCJboDataControl.java:1404) at oracle.adf.model.binding.DCDataControlReference.getDataControl(DCDataControlReference.java:99) at oracle.adf.model.BindingContext.get(BindingContext.java:457) at
    oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:280) at oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:248) at oracle.adf.model.binding.DCUtil.findContextObject(DCUtil.java:383) at oracle.adf.model.binding.DCIteratorBinding.<init>(DCIteratorBinding.java:127) at oracle.jbo.uicli.binding.JUIteratorBinding.<init>(JUIteratorBinding.java:60) at oracle.jbo.uicli.binding.JUIteratorDef.createIterBinding(JUIteratorDef.java:87) at oracle.jbo.uicli.binding.JUIteratorDef.createIterBinding(JUIteratorDef.java:51) at oracle.adf.model.binding.DCIteratorBindingDef.createExecutableBinding(DCIteratorBindingDef.java:277) at oracle.adf.model.binding.DCBindingContainerDef.createExecutables(DCBindingContainerDef.java:296) at oracle.adf.model.binding.DCBindingContainerDef.createBindingContainer(DCBindingContainerDef.java:425) at oracle.adf.model.binding.DCBindingContainerReference.createBindingContainer(DCBindingContainerReference.java:54) at
    oracle.adf.model.binding.DCBindingContainerReference.getBindingContainer(DCBindingContainerReference.java:44) at oracle.adf.model.BindingContext.get(BindingContext.java:483) at oracle.adf.model.BindingContext.findBindingContainer(BindingContext.java:313) at oracle.adf.model.BindingContext.findBindingContainerByPath(BindingContext.java:633) at oracle.adf.model.BindingRequestHandler.isPageViewable(BindingRequestHandler.java:265) at oracle.adf.model.BindingRequestHandler.beginRequest(BindingRequestHandler.java:169) at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:161) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17) at oracle.lite.web.CheckSessionFilter.doFilter(UNKNOWN Source) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ]
    .server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:119) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112) at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260) at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230) at
    oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33) at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303) at java.lang.Thread.run(Thread.java:595)## Detail 0 ##oracle.jbo.JboException: JBO-29000: Unexpected
    EXCEPTION
    caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected
    EXCEPTION
    caught: java.lang.NullPointerException, msg=NULL at oracle.jbo.pool.ResourcePool.useResource(ResourcePool.java:336) at oracle.jbo.server.ConnectionPool.getConnectionInternal(ConnectionPool.java:87) at oracle.jbo.server.ConnectionPool.getConnection(ConnectionPool.java:66) at oracle.jbo.server.ConnectionPoolManagerImpl.getConnection(ConnectionPoolManagerImpl.java:56) at oracle.jbo.server.DBTransactionImpl.establishNewConnection(DBTransactionImpl.java:911) at oracle.jbo.server.DBTransactionImpl.initTransaction(DBTransactionImpl.java:1156) at oracle.jbo.server.DBTransactionImpl.initTxn(DBTransactionImpl.java:5891) at oracle.jbo.server.DBTransactionImpl2.connect(DBTransactionImpl2.java:120) at oracle.jbo.common.ampool.DefaultConnectionStrategy.connect(DefaultConnectionStrategy.java:194) at oracle.jbo.server.ApplicationPoolMessageHandler.doPoolConnect(ApplicationPoolMessageHandler.java:478) at oracle.jbo.server.ApplicationPoolMessageHandler.doPoolMessage(
    ApplicationPoolMessageHandler.java:367) at oracle.jbo.server.ApplicationModuleImpl.doPoolMessage(ApplicationModuleImpl.java:7769) at oracle.jbo.common.ampool.ApplicationPoolImpl.sendPoolMessage(ApplicationPoolImpl.java:4074) at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2161) at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1961) at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793) at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453) at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233) at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424) at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:419) at oracle.adf.model.bc4j.DCJboDataControl.rebuildApplicationModule(DCJboDataControl.java:1543) at
    oracle.adf.model.bc4j.DCJboDataControl.beginRequest(DCJboDataControl.java:1404) at oracle.adf.model.binding.DCDataControlReference.getDataControl(DCDataControlReference.java:99) at oracle.adf.model.BindingContext.get(BindingContext.java:457) at oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:280) at oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:248) at oracle.adf.model.binding.DCUtil.findContextObject(DCUtil.java:383) at oracle.adf.model.binding.DCIteratorBinding.<init>(DCIteratorBinding.java:127) at oracle.jbo.uicli.binding.JUIteratorBinding.<init>(JUIteratorBinding.java:60) at oracle.jbo.uicli.binding.JUIteratorDef.createIterBinding(JUIteratorDef.java:87) at oracle.jbo.uicli.binding.JUIteratorDef.createIterBinding(JUIteratorDef.java:51) at oracle.adf.model.binding.DCIteratorBindingDef.createExecutableBinding(DCIteratorBindingDef.java:277) at oracle.adf.model.binding.DCBindingContainerDef.createExecutables(DCBindingContainerDef.java:296) at
    oracle.adf.model.binding.DCBindingContainerDef.createBindingContainer(DCBindingContainerDef.java:425) at oracle.adf.model.binding.DCBindingContainerReference.createBindingContainer(DCBindingContainerReference.java:54) at oracle.adf.model.binding.DCBindingContainerReference.getBindingContainer(DCBindingContainerReference.java:44) at oracle.adf.model.BindingContext.get(BindingContext.java:483) at oracle.adf.model.BindingContext.findBindingContainer(BindingContext.java:313) at oracle.adf.model.BindingContext.findBindingContainerByPath(BindingContext.java:633) at oracle.adf.model.BindingRequestHandler.isPageViewable(BindingRequestHandler.java:265) at oracle.adf.model.BindingRequestHandler.beginRequest(BindingRequestHandler.java:169) at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:161) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17) at
    oracle.lite.web.CheckSessionFilter.doFilter(UNKNOWN Source) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:119) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.run(
    HttpRequestHandler.java:112) at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260) at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230) at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33) at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303) at java.lang.Thread.run(Thread.java:595)## Detail 0 ##oracle.jbo.JboException: JBO-29000: Unexpected
    EXCEPTION
    caught: java.lang.NullPointerException, msg=NULL at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:545) at oracle.jbo.pool.ResourcePool.useResource(ResourcePool.java:326) at oracle.jbo.server.ConnectionPool.getConnectionInternal(ConnectionPool.java:87) at oracle.jbo.server.ConnectionPool.getConnection(ConnectionPool.java:66) at oracle.jbo.server.ConnectionPoolManagerImpl.getConnection(ConnectionPoolManagerImpl.java:56) at oracle.jbo.server.DBTransactionImpl.establishNewConnection(DBTransactionImpl.java:911) at oracle.jbo.server.DBTransactionImpl.initTransaction(DBTransactionImpl.java:1156) at oracle.jbo.server.DBTransactionImpl.initTxn(DBTransactionImpl.java:5891) at oracle.jbo.server.DBTransactionImpl2.connect(DBTransactionImpl2.java:120) at oracle.jbo.common.ampool.DefaultConnectionStrategy.connect(DefaultConnectionStrategy.java:194) at oracle.jbo.server.ApplicationPoolMessageHandler.doPoolConnect(ApplicationPoolMessageHandler.java:478) at
    oracle.jbo.server.ApplicationPoolMessageHandler.doPoolMessage(ApplicationPoolMessageHandler.java:367) at oracle.jbo.server.ApplicationModuleImpl.doPoolMessage(ApplicationModuleImpl.java:7769) at oracle.jbo.common.ampool.ApplicationPoolImpl.sendPoolMessage(ApplicationPoolImpl.java:4074) at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2161) at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1961) at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793) at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453) at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233) at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424) at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:419) at
    oracle.adf.model.bc4j.DCJboDataControl.rebuildApplicationModule(DCJboDataControl.java:1543) at oracle.adf.model.bc4j.DCJboDataControl.beginRequest(DCJboDataControl.java:1404) at oracle.adf.model.binding.DCDataControlReference.getDataControl(DCDataControlReference.java:99) at oracle.adf.model.BindingContext.get(BindingContext.java:457) at oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:280) at oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:248) at oracle.adf.model.binding.DCUtil.findContextObject(DCUtil.java:383) at oracle.adf.model.binding.DCIteratorBinding.<init>(DCIteratorBinding.java:127) at oracle.jbo.uicli.binding.JUIteratorBinding.<init>(JUIteratorBinding.java:60) at oracle.jbo.uicli.binding.JUIteratorDef.createIterBinding(JUIteratorDef.java:87) at oracle.jbo.uicli.binding.JUIteratorDef.createIterBinding(JUIteratorDef.java:51) at oracle.adf.model.binding.DCIteratorBindingDef.createExecutableBinding(DCIteratorBindingDef.java:277) at
    oracle.adf.model.binding.DCBindingContainerDef.createExecutables(DCBindingContainerDef.java:296) at oracle.adf.model.binding.DCBindingContainerDef.createBindingContainer(DCBindingContainerDef.java:425) at oracle.adf.model.binding.DCBindingContainerReference.createBindingContainer(DCBindingContainerReference.java:54) at oracle.adf.model.binding.DCBindingContainerReference.getBindingContainer(DCBindingContainerReference.java:44) at oracle.adf.model.BindingContext.get(BindingContext.java:483) at oracle.adf.model.BindingContext.findBindingContainer(BindingContext.java:313) at oracle.adf.model.BindingContext.findBindingContainerByPath(BindingContext.java:633) at oracle.adf.model.BindingRequestHandler.isPageViewable(BindingRequestHandler.java:265) at oracle.adf.model.BindingRequestHandler.beginRequest(BindingRequestHandler.java:169) at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:161) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ]
    .server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17) at oracle.lite.web.CheckSessionFilter.doFilter(UNKNOWN Source) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:119) at com.evermind[Oracle
    Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112) at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260) at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230) at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33) at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303) at java.lang.Thread.run(Thread.java:595)## Detail 0 ##java.lang.NullPointerException at oracle.lite.web.WTGJdbcDriver.connect(UNKNOWN Source) at java.sql.DriverManager.getConnection(DriverManager.java:525) at java.sql.DriverManager.getConnection(DriverManager.java:193) at oracle.jbo.server.ConnectionPool.createConnection(
    ConnectionPool.java:174) at oracle.jbo.server.ConnectionPool.instantiateResource(ConnectionPool.java:135) at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:536) at oracle.jbo.pool.ResourcePool.useResource(ResourcePool.java:326) at oracle.jbo.server.ConnectionPool.getConnectionInternal(ConnectionPool.java:87) at oracle.jbo.server.ConnectionPool.getConnection(ConnectionPool.java:66) at oracle.jbo.server.ConnectionPoolManagerImpl.getConnection(ConnectionPoolManagerImpl.java:56) at oracle.jbo.server.DBTransactionImpl.establishNewConnection(DBTransactionImpl.java:911) at oracle.jbo.server.DBTransactionImpl.initTransaction(DBTransactionImpl.java:1156) at oracle.jbo.server.DBTransactionImpl.initTxn(DBTransactionImpl.java:5891) at oracle.jbo.server.DBTransactionImpl2.connect(DBTransactionImpl2.java:120) at oracle.jbo.common.ampool.DefaultConnectionStrategy.connect(DefaultConnectionStrategy.java:194) at oracle.jbo.server.ApplicationPoolMessageHandler.doPoolConnect(
    ApplicationPoolMessageHandler.java:478) at oracle.jbo.server.ApplicationPoolMessageHandler.doPoolMessage(ApplicationPoolMessageHandler.java:367) at oracle.jbo.server.ApplicationModuleImpl.doPoolMessage(ApplicationModuleImpl.java:7769) at oracle.jbo.common.ampool.ApplicationPoolImpl.sendPoolMessage(ApplicationPoolImpl.java:4074) at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2161) at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1961) at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793) at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453) at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233) at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424) at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(
    SessionCookieImpl.java:419) at oracle.adf.model.bc4j.DCJboDataControl.rebuildApplicationModule(DCJboDataControl.java:1543) at oracle.adf.model.bc4j.DCJboDataControl.beginRequest(DCJboDataControl.java:1404) at oracle.adf.model.binding.DCDataControlReference.getDataControl(DCDataControlReference.java:99) at oracle.adf.model.BindingContext.get(BindingContext.java:457) at oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:280) at oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:248) at oracle.adf.model.binding.DCUtil.findContextObject(DCUtil.java:383) at oracle.adf.model.binding.DCIteratorBinding.<init>(DCIteratorBinding.java:127) at oracle.jbo.uicli.binding.JUIteratorBinding.<init>(JUIteratorBinding.java:60) at oracle.jbo.uicli.binding.JUIteratorDef.createIterBinding(JUIteratorDef.java:87) at oracle.jbo.uicli.binding.JUIteratorDef.createIterBinding(JUIteratorDef.java:51) at oracle.adf.model.binding.DCIteratorBindingDef.createExecutableBinding(
    DCIteratorBindingDef.java:277) at oracle.adf.model.binding.DCBindingContainerDef.createExecutables(DCBindingContainerDef.java:296) at oracle.adf.model.binding.DCBindingContainerDef.createBindingContainer(DCBindingContainerDef.java:425) at oracle.adf.model.binding.DCBindingContainerReference.createBindingContainer(DCBindingContainerReference.java:54) at oracle.adf.model.binding.DCBindingContainerReference.getBindingContainer(DCBindingContainerReference.java:44) at oracle.adf.model.BindingContext.get(BindingContext.java:483) at oracle.adf.model.BindingContext.findBindingContainer(BindingContext.java:313) at oracle.adf.model.BindingContext.findBindingContainerByPath(BindingContext.java:633) at oracle.adf.model.BindingRequestHandler.isPageViewable(BindingRequestHandler.java:265) at oracle.adf.model.BindingRequestHandler.beginRequest(BindingRequestHandler.java:169) at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:161) at com.evermind[Oracle Containers FOR J2EE
      10g (10.1.3.0.0) ].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17) at oracle.lite.web.CheckSessionFilter.doFilter(UNKNOWN Source) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:119) at
    com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112) at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260) at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230) at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33) at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831) at com.evermind[Oracle Containers FOR J2EE 10g (10.1.3.0.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303) at java.lang.Thread.run(Thread.java:595)

Maybe you are looking for

  • Why doesn't it work anymore?  I just paid for pfd to Excel, Word, etc function through Adobe...

    I'm signed in but the program asks me to sign in when I try to convert a file.  Then it asks me to pay again!  It was working fine for about an hour...then this snafu...

  • Problem with Creative Cloud Desktop app since update to Windows 8.1

    Hi, I have updated my desktop and laptop to Windows 8.1 over the past day, and have noticed a problem with the Creative Cloud Desktop app. Some menu items when I right-click on either the CC system tray icon, or click on the Settings menu icon in the

  • Use composite input tv as second monitor

    Hello, Does anyone know how I would go about using a tv with RCA connections as a second monitor? I get how to do it with the mini-dvi to vga for expanded desktop but I don't think the mini-dvi to video adapter allows for expanded mode - I think it o

  • Using an external display

    Whats the highest resolution external display that the eMac can support? Because I wanted to use the external display as a main screen and set the eMac in the floor. Also, does anyone recommend a widescreen external diplay?

  • FormCalc Help

    I wrote a custom script to validate date/time field Here is the script in the validate event var numOfDays=$.rawValue; var dt=Date2Num(numOfDays,"YYYY-MM-DD"); if(dt>Date()) then return true; else return false; endif It is showing systax error at ret