How to cancel a transaction in Oracle Lite 10g R3

Hi,
I have a publication with 7 publication items (updatables), Server wins in any conclict.
I made some changes in some records of the 7 tables of my oracle lite database.
I synchronize the changes, without any error messages, But I cannot find those changes in the tables in my oracle database (9i).
So, I check in the Mobile Manager, in the Data Synchronization/Repository/Input Queue.
I find the transaction #203 with all the publication items.
I also find an error in the "Error queue", It seems like there was a conclict in one of my publication items. So I choose the option "Take value from server", then the error disapear from the "Error queue". However, the transaction stay in the "Input queue".
I made other changes to the tables in the database lite, and then synchronize. But It seems like nothing happens, there isn´t any other transaction in the "input queue", and I cannot fin all the changes I made in my database (9i).
Can anyone help me????
Regards, Santiago

I found this messagein the MGP History User
Applied Record     Counts:
Insert Count     = 3
Update Count     = 6
Delete Count     = 0
Applied PubItems:
TECNICO
SUSCRIPTOR
LISTA_MATERIALES
LIQCLI
VALORAC_ACTIVIDADES_OPE
CARGA_DEMANDADA
DESCSOL
TECNICO
SUSCRIPTOR
LISTA_MATERIALES
LIQCLI
VALORAC_ACTIVIDADES_OPE
CARGA_DEMANDADA
DESCSOL
TECNICO
SUSCRIPTOR
LISTA_MATERIALES
LIQCLI
VALORAC_ACTIVIDADES_OPE
CARGA_DEMANDADA
DESCSOL
Compose Error:
java.lang.Exception: MGP apply_before_compose aborted and compose postponed for SGARCIA as apply will generate sync errors
     at oracle.lite.sync.Consolidator$O8Server.fastPush(Unknown Source)
     at oracle.lite.sync.MGP$MGPG.run(Unknown Source)
     at java.lang.Thread.run(Thread.java:534)
/*********************************************/

Similar Messages

  • How to connect using netbean 6.5 and oracle lite 10g

    Hello everyone.. I am really really new in this kind of thing. My task is that I need to develop a simple system using netbean and oracle lite 10g..Does anyone can at least give me a little bit tutorial for a head start in order to connect them.. I really appreciate for those who answer this.. Thank you guys...

    you mean to connect from java to oracle lite server or client?
    -if it is server you mean then you probably need to run some oracle apis (e.g. the consolidator aps).
    String url="MOBILEADMIN/123@jdbc:oracle:thin:@MYSERVER:1521:MYDB" ;
    ResourceManager.initialize(url);
    rm = ResourceManager.getInstance();
    User usr = rm.getUser(user);
    for (Enumeration e = usr.getDevices(); e.hasMoreElements();) {
    Device dev = (Device)e.nextElement();
    }//AND you may continue from here in order to send commands to the devices
    -if you have a oracle repository at the back end and you want to connect to that then you can connect like:
    DriverManager.registerDriver ((Driver)Class.forName ("oracle.jdbc.driver.OracleDriver").newInstance ());
    String url="jdbc:oracle:thin:@myserver:port:database;
    c=DriverManager.getConnection( url,"username", "password" );
    s=c.createStatement();
    s.executeQuery("Select TRIM(CODES) AS CODES,TRIM(SURNAME)||'_'||TRIM(FIRSTNAME) AS NAME from MYDB.USERS");
    ResultSet rs =s.getResultSet();
    -now if you want to connect to the oracle lite client database then you may connect using the polite
    you should write something like (i havent tried it because i use handheld clients)
    String ConnectMe=("jdbc:polite:SCOTT/tiger:polite;DataDirectory=c:\Oracle_Home;Database=polite;IsolationLevel=SINGLE;USER;Autocommit=ON;CursorType=DYNAMIC")
    try {
    Connection conn = DriverManager.getConnection(ConnectMe)
    catch (SQLException e)
    (check the internet for jdbc:polite connection strings)
    gl

  • JDeveloper 10G (BPEL Designer): how to create db connection to Oracle Lite

    I want to create a JDeveloper database connection to the Oracle Lite database installed with JDeveloper 10G BPEL Designer, but haven't been able to find any info on the subject.
    Can anyone point me to some info or walk me through it?
    Regards

    To connect JDeveloper 10g to an Oracle Lite database, you will need to follow this setup.
    1. Create an ODBC entry for the Oracle Lite database. If you have installed Oracle Lite 10g Mobile Development Kit, you should have a copy of POLITE.ODB pre-installed. Check your ODBC.ini, or run Administrative Tools > Data Sources (ODBC), and follow the polite entry pattern. If you create a new Oracle Lite database, you must create a matching enrty in the ODBC configuration file.
    2. In JDeveloper, create a new connection for your Oracle Lite database.
    The Connection Name should match your entry in ODBC for ease of reading.
    The Connection Type should be Oracle Lite.
    The Username is system.
    The Password is xxx.
    The Deploy Password box is checked.
    The Datasource Name must match the ODBC entry exactly.
    Leave the rest of the fields as is.
    Test your new connection.
    Enjoy.

  • Unable to install Oracle Lite 10g on Windows 7 64-bit

    I've tried installing Oracle Lite 10g on my Windows 7 64-bit computer but I get a message saying "JDK is not installed on machine". I even have Java installed on my computer too.
    Any ideas what could be causing the issue?
    Thanks
    Gareth

    Oracle lite 10g is not supported on Windows 7.    The core issue is you are running on an unsupported platform.
    You have may have to go in the docs and figure out what JDKs were supported, i think 1.4 and 1.5. and try
    installing one of those and maybe you can get uninstall to work.   This is just a guess though.
    thanks
    mike

  • How to use unicode fonts in Oracle forms 10g?

    Hi I am working in forms 10g for quite a long time, the software that I have developed so far are all in English language. Now I have requirements to use Bengali Fonts in Forms 10g. I am facing difficulties doing that. Please reply with help. Thanks
    Hasan Al Mamun

    Check this forum post (though that is for 6i, it would be of helpful for you)
    How to use unicode fonts in Oracle forms 10g?
    -Arun

  • How to check image size in oracle 9i & 10g database

    hi,
    i have inserted an Image into a table in oracle database & I want to View the Query How to check image size in oracle 9i & 10g database
    thanks
    Edited by: user8920919 on May 30, 2010 1:43 AM

    user8920919 wrote:
    hi,
    How to check image size in oracle 9i & 10g database
    thanksWhat do you mean with "image size"?

  • Creating table in oracle lite 10g

    Hi,
    I believe the following is the way to create a database table in Jdeveloper 10g and Oracle BPEL process Manager 10.1.3.1.0
    1.Created bpel project--> right click project ---> create schema---> right click schema---> create table(completed the wizard and created schema and table)
    2.Right click schema ---> new---> database tier---> offline database objects ----> SQL generated from offline database objects(and then complete the wizard)
    If the above is the correct approach to create the table, then I am facing two situations.
    a. In the project properties(offline database), if the 'database to emulate' is set to oracle lite 10g release 1, then "SQL generated from offline database objects" option is not enabled to choose in the step 2 above. So I cannot proceed further.
    b. If the 'database to emulate' is set to oracle database 10g release 2 (this is default), "SQL generated from offline database objects" in step 2 is enabled, but in the wizard that follows, when I tick 'perform operation against the database' it asks me for oracle database connection settings. But I only have the Oracle 10g Lite version and not Oracle database 10g. So I am not able proceed further.
    All I need is to create tables in the Oracle Lite database that I have.
    Any help on this issue will be greatly appreciated.
    -Sagar

    While waiting for an answer here ... you may want to investigate the Oracle Lite forum at Database Mobile Server (inc. legacy Database Lite)

  • Efragdb.exe in Oracle Lite 10g R3

    We have the following situation when working on Oracle LIte 10g R3. We used defrag.exe with a database created in Oracle Lite R2. During the "Dumping Triggers" phase, it shows the error message "Wrong trigger type 34 for trigger TRIG_INSUPDPVDETPAGCAJ.". The refered trigger is based on a java procedure, and it was created in the source database without errors.
    If we drop the trigger and defrag.exe is run again, the "Loading Extents" phase show the error message "Invalid opcode: 65!!!".
    I will appreciate any suggestion about this.
    Monica Bancayan

    Please open a service request with Oracle Support.
    Olaf

  • Unable to Install oracle lite 10g mobile server on windows

    Hi all,
    Basically I am a .net developer, i want to explore Oracle Lite 10g mobile database.
    for that I am trying to install Olite 10g Mobile server on my windows system it is installing upto 95%, after that nothing is happening. it is not giving any error message.
    even i waited for 5 to 6 hours then also it is at the same stage.
    In my sytem JDK 5.0 is there and Oracle Database 10g Express edition is also there.
    Please help me on this issue.

    i know that this might be silly but have you checked the guide for the installation and made sure you have all the preq?
    please check
    http://download.oracle.com/docs/cd/E12095_01/nav/portal_booklist.htm
    please check the getting started guide and especially chapters
    3 Requirements Before Installation or Development
    4 Installation of Oracle Database Lite
    i have seen that it says:
    3.3.2 Certified Oracle RDBMS to Use With Oracle Database Lite
    Use one of the following database versions with Oracle Database Lite: Oracle 9.2, Oracle 10g Release 1 (10.1.0), Oracle 10g Release 2 (10.2.0), or Oracle 11g.
    i dont know if the express edition is supported correctly.

  • Upgrade Oracle Lite 9i to Oracle Lite 10g rel3

    Can you please advise me on the effort and impact in attempting to upgrade Oracle Lite 9i to Oracle Lite 10g rel3 ?
    Thank you.

    I did an upgrade to 10G rel2 and database is running fine

  • Oracle Lite 9i to Oracle Lite 10g upgrade

    Can you pls advise on the effort and impact in attempting to upgrade an application now deployed in Oracle Lite 9i to Oracle Lite 10g rel3

    I did upgrade to 10G R2 and the database is running fine. Working on 10G R3 upgrade.

  • Is oracle lite free or is there any license for Oracle Lite 10g for product

    Is oracle lite free or is there any license for Oracle Lite 10g for production use ??
    -Thanks-

    Please note that Oracle Lite is no longer being actively developed, and no further releases are planned. The recommended small footprint database from Oracle is Berkeley DB.
    http://www.oracle.com/technetwork/products/berkeleydb/overview/index-085366.html
    Eric

  • Oracle Lite 10g

    Hello,
    does spatial work with oracle lite 10g, is it possible to build mobile spatial application with oracle database?
    Thank you

    I have looked into this and believe that it is possible as follows.
    1. Add to you database table a CLOB field (supported by Lite) and have
    it contain a textual description of the SDO_GEOMETRY. Two formats
    are possible: SVG and WKT. I prefer SVG as then the mobile client
    gets a styled version of the shape that it can use in the PDA application
    without the need to worry about styling.
    2. You need table level before insert and update triggers that will convert
    from your CLOB <-> SDO_GEOMETRY. (I did this for my previous employer
    using SVG and SDO_GEOMETRY and could get the code for you to use.)
    Thus it doesn't matter is the Lite application creates/updates a shape or
    a "GIS" application creates one: both are kept in sync via the trigger.
    3. You then use Oracle Mobile to extract and return the data between Lite
    and the DBMS.
    4. In the client PDA you then purchase an SVG toolkit from one of the commercial
    vendors (or use Batik or SharpVectorGraphics in open source) to display
    the data in the Lite database.
    5. You also purchase a GPS control (or use open source) to communicate
    with a GPS for navigating to or capturing new data from it.
    My former employer is investigating use of Lite as a field recording tool.
    I hope to provide input into this project over time.
    Simon Greener
    Independent GIS Consultant
    Allens Rivulet Tasmania
    Australia
    Longitude: 147.2048
    Latitude: -43.0141

  • How I enable network service of Oracle database 10g XE ?

    Hi,
    How I enable network service of Oracle database 10g XE ?
    Following error occurs when printing:
    ORA-20001: The printing engine could not be reached because either
    the URL specified is incorrect or a proxy URL needs to be specified.

    ORA-20001 is a user defined error. So you will have to find out where it comes from.
    Regards
    Marcus

  • Hibernate and Oracle Lite 10g

    Has anyone been able to get Oracle Lite 10g working with Hibernate?

    What problems are you having? You are using Webtogo OC4J right?
    It has been a while since I worked with Hibernate and in theory, it should work with any relational database. Since Oracle Lite closely resembles Oracle, I can't see an issue with the database, just the container that it is running in.
    <property name="connection.driver_class">oracle.lite.web.WTGJdbcDriver</property>
    <property name="connection.url">jdbc:oracle:webtogo</property>
    <property name="connection.username"></property>
    <property name="connection.password"></property>

Maybe you are looking for

  • How to increase the speed of network file transfer

    hi , In my application i want to use the file from one system to another system. i am using stream reader to get the file over the network , its working fine for small file, but i want to access file size exceed 10 MB then i faced the problem. Its ge

  • Terms of Payment to determine due date as last date of the month

    Hi Experts, Does any one know how to configure a Terms of Payment to determine due date as last date of the month ? I tried by puting fixed date as 31 in the Terms of Payment in FI but when I am creating in FI-CA it gives me an error "_Term of paymen

  • Duplicate notifications for emails

    I set up gmail when I started using my Droid phone.  I had problems with my last phone and was given the Droid Razr.  Whenever I receive an email, I get the notification twice.  It appears in two places on my phone.  One is under the g for my gmail a

  • Upgrade LR5 to PS CC...

    Hey, I bhought my LR5 few weeks ago and i'd like to upgrade to PS CC. LR5 is included in PS CC and I'd not be happy to pay LR5 twice... Is there a discount system for upgrade like this ? Thanks, Harold (Paris, France)

  • Anyone successfully do ATV update from 4.3 to 4.4.2?

    Has anyone updated ATV from 4.3 to 4.4.2?