Oracle Lite Sync error

Im getting the following error when sync. ???? Cant trace it please help
Sync session exception stack trace:
java.sql.SQLException: ORA-00932: inconsistent datatypes: expected DATE got NUMBER
     at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:189)
     at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:242)
     at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:554)
     at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1478)
     at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:888)
     at oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:2077)
     at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:1987)
     at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2704)
     at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:458)
     at oracle.lite.sync.Subscription.execPrepUpdate(Unknown Source)
     at oracle.lite.sync.DmlProcessorM.executeInsertUpdate(Unknown Source)
     at oracle.lite.sync.DmlProcessorM.executeInsertUpdate(Unknown Source)
     at oracle.lite.sync.DmlProcessorDB.reExecuteDml(Unknown Source)
     at oracle.lite.sync.DmlProcessorDB.flushIs(Unknown Source)
     at oracle.lite.sync.HeliosSession.startSession(Unknown Source)
     at oracle.lite.sync.resume.Client$1.run(Unknown Source)
     at oracle.lite.sync.resume.ThreadPool$PoolTask.run(Unknown Source)

I know the Database Mobile Server (inc. legacy Database Lite) forum doesn't get a lot of traffic but it really is the best place to ask Lite questions. It is an entirely different product from the real database and as such requires specialist knowledge.
At the very least you should cross-post these questions there. I'm not normally a fan of duplicate postings but I make exceptions for these cases.
Good luck, APC

Similar Messages

  • 10g Lite  SYNC Error  --   POL-3201 "Invalid Slot Number"

    Hi,
    I am Using Oracle Lite 10g R3, I am doing manual SYNC Process.
    Today I started the manual Sync Process i encountered the Error Message in the Screen "POL-3201 Invalid Slot Number"
    Oracle document States that
    POL-3201 Invalid slot number
    Cause: Internal error caused by referencing an object that has been deleted. Each
    object in the database, such as a row has a unique object identifier (OID) that
    identifies the location of the object in secondary storage. Each database file is
    divided into fixed size chunks called disk pages. An OID can become invalid
    when the:
    ■ disk page being referred by the OID does not exist in the database file.
    ■ physical read or write of the disk page fails due to an operating system related
    error.
    ■ address of the object (as indicated by the internal encoding in the OID) in the
    disk page is outside the page.
    ■ object is not found in the page.
    Has anyone faced this error and resolved it successfully?
    Please advice.
    Thank U
    SHAN

    Hi,
    I am getting the following information in the debug file
    CONNECT SQL sipdb=72310728
    cmd:SELECT CONSTRAINT_NAME,TABLE_NAME FROM ALL_CONSTRAINTS WHERE CONSTRAINT_TYPE='R'
    cmd:SELECT CONSTRAINT_NAME,TABLE_NAME FROM ALL_CONSTRAINTS WHERE CONSTRAINT_TYPE='U'
    14:23:34.511 startOfPublication()end
    Error at C:\ADE\omeprod_ol103021\olite\db\build\win\ocapi\..\..\..\src\ocapi\processop.cpp line:735 rc:-3201
    Build date Nov 18 2008
    okErr=(invalid slot number)
    mess=(SYS_LSI_AGE)
    AddLog(-3201 "ERROR",POL-3201,"04/30/2009 13:24:28","invalid slot number:SYS_LSI_AGE","DURBAN2008")
    14:23:34.527 ROLLBACK OKAPI conscli
    ROLLBACK SQL sipdb
    ROLLBACK OKAPI sipdb
    14:23:34.527 okDis(env=3816c84)
    DISCONNECT OKAPI conscli okEnv=3816c84
    14:23:34.527 okFinal 0
    14:23:34.527 DISCONNECT SQL sipdb
    14:23:34.527 okDis(env=4454fac)
    DISCONNECT OKAPI sipdb okEnv=4454fac
    Free SQL ENV
    14:23:34.527 okFinal 0
    DoProcess()=-3201
    in prepareErrorReport
    m_okEnv=4454fac
    okSetTimeout(20000)=0
    getDsnAttribute0(DURBAN2008_conscli)=0
    14:23:34.527 okConnect1()... 14:23:34.543 okConnect1(F:\mobileclient\oldb40\DURBAN2008\conscli.odb)=2633737
    CONNECT OKAPI conscli=2633737 okEnv=4454fac
    makeFnameBase(00000000000000000)
    BeginTranz(0 0)
    EndTranz nDirty=2
    EndTranz(0 0)
    14:23:34.543 okDis(env=4454fac)
    DISCONNECT OKAPI conscli okEnv=4454fac
    14:23:34.636 okFinal 0
    ocDoSyncronize done 14:23:34.636
    Please Advice
    Thank U
    SHAN

  • Oracle.lite.sync.Consolidator.PubItemProps = isLogBased ?

    Hi All,
    I am a little confuse about isLogBased.
    Doc said:
    isLogBased
    If true, log based (automatic) publication item will be created
    Does it mean that if isLogBased = true, then Oracle Lite does not use trigger process, but capture data
    in redo logs (like streams) ?
    Of course this does not work whith Standard Edition main db , only with enterpriseEdition ?
    If it is clear for you, thak you for your clarification.
    All the best.
    Fabrice

    Hi all,
    I was completely lost.
    Setting "isLogBased" to True enables automatic sync for a pub item.
    The following example uses the automatic synchronization version of createPublicationItem method, which uses the PubItemProps class to define all publication item definitions, including automatic synchronization, as follows:
    PubItemProps pi_props = new PubItemProps();
    pi_props.owner = "MASTER"; // owner schema
    pi_props.store = STORES[0]; // store
    pi_props.refresh_mode = "F"; //default // uses fast refresh
    pi_props.select_stmt = // specify select statement for snapshot
    "SELECT * FROM "+"MASTER"+"."+STORES[i][0]+ " WHERE C1 =:CLIENTID";
    pi_props.cl2log_rec_stmt = "SELECT base.C1 FROM " // client sub-query to
    + "MASTER"+"."+STORES[i][0] + " base," // return unique clientids
    + "MASTER"+".CLG$"+STORES[i][0] + " log"
    + " WHERE base.ID = log.ID";
    // Setting "isLogBased" to True enables automatic sync for this pub item.
    pi_props.isLogBased = true;
    // If doChangeNtf is true, automatic publication item sends notifications
    // from server about new/modified records
    pi_props.doChangeNtf = true;
    cm.createPublicationItem(PUBITEMS[i], pi_props);
    cm.addPublicationItem(PUB,PUBITEMS[i],null,null,"S",null,null);
    Regards.
    Fabrice

  • Oracle 9i Lite SYNC Error in PALM

    Hi,
    I have Installed Oracle 8.1.6 Server in a Machine & Oracle 9i Lite 5.0 in a Machine, when i try ro connect & SYNC with my PALM Device OS 3.5 i get a [CNS-2000] Server send Error - 9025:0
    Message, check log in the PALM device using mSYNC.
    I have installed the Patchset 5.0.0.4 and have done all the settings related to the configuration.
    Kindly help as it is very urgent to establish the connection SYC between the PALM & the Oracle.
    Thaks & Regards,
    Viswanathan

    If this is happening on the upload of the data from the client, it is normally due to a mismatch between the DDL of the publication item and the corresponding in queue table (CFM$WTGPI_nnnnn).
    Have you made changes on the server to the table/view definitions?
    If so then have you re-published? If there is data in the in queue or error queue it will sometimes not refresh the mobileadmin tables with the changed columns/data types, although if you use API's i believe you may be ok. If there is no mismatch on the server, what about the format of the table on the client? it may be trying to upload some changes

  • Oracle Database 10g Lite -- SYNC Error

    Hi,
    I am Using Oracle Database 10g Lite.While doing the Sync Process With the Mobile Server i am getting following error message in my Ol_SYNC.log file
    "SUCCESS",0,"03/09/2009 18:02:36","","New2008"
    "ERROR",POL-3011,"03/10/2009 12:27:54","a device read error was detected:",""
    "SUCCESS",0,"03/10/2009 13:20:12","","New2008"
    What i did is ....
    First I Download the Client New2008 from Mobile Server
    Second I done some DML operation in that Downloaded File (in the forms of *.odb and *.obs)
    Third I start to SYNC that Client "NEW2008"
    Sync process is web based only .....
    after the SYNC process Completed i got the log off Screen in MY Internet Explorer
    i always check the ol_sync.log file for the confirmation( about the SYNC) and i got the error message in that file as mentioned above.
    Error is Releated what ?
    Any Advice
    Thanks
    SHAN

    See if following OTN forum thread helps...
    Re: POL-3011/3012 when database is on SD Card.

  • Oracle 10g Lite-Sync Error

    Hi,
    I am Using Oracle 10g"Lite" Database, I am doing manual SYNC Process.
    Today I started the manual Sync Process i Got this Error Message in the Screen "POL-3201 Invalid Slot Number"
    I referred a document Shows this information
    POL-3201 Invalid slot number
    Cause: Internal error caused by referencing an object that has been deleted. Each
    object in the database, such as a row has a unique object identifier (OID) that
    identifies the location of the object in secondary storage. Each database file is
    divided into fixed size chunks called disk pages. An OID can become invalid
    when the:
    ■ disk page being referred by the OID does not exist in the database file.
    ■ physical read or write of the disk page fails due to an operating system related
    error.
    ■ address of the object (as indicated by the internal encoding in the OID) in the
    disk page is outside the page.
    ■ object is not found in the page.
    But i did not delete any thing in the Lite database.
    Yesterday the Manual SYNC was Successful ...After i did not touch the Lite Database.Today I started the SYNC and i Got the Error.
    Did any one face this error?
    Please advice on this Error
    Thank U for the Useful Information
    SHAN

    See if following OTN forum thread helps...
    Re: POL-3011/3012 when database is on SD Card.

  • Sync Error in lite 10g.

    Im getting the following error when sync. ???? Cant trace it please help
    Sync session exception stack trace:
    java.sql.SQLException: ORA-00932: inconsistent datatypes: expected DATE got NUMBER
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:189)
    at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:242)
    at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:554)
    at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1478)
    at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:888)
    at oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:2077)
    at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:1987)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2704)
    at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:458)
    at oracle.lite.sync.Subscription.execPrepUpdate(Unknown Source)
    at oracle.lite.sync.DmlProcessorM.executeInsertUpdate(Unknown Source)
    at oracle.lite.sync.DmlProcessorM.executeInsertUpdate(Unknown Source)
    at oracle.lite.sync.DmlProcessorDB.reExecuteDml(Unknown Source)
    at oracle.lite.sync.DmlProcessorDB.flushIs(Unknown Source)
    at oracle.lite.sync.HeliosSession.startSession(Unknown Source)
    at oracle.lite.sync.resume.Client$1.run(Unknown Source)
    at oracle.lite.sync.resume.ThreadPool$PoolTask.run(Unknown Source)

    If this is happening on the upload of the data from the client, it is normally due to a mismatch between the DDL of the publication item and the corresponding in queue table (CFM$WTGPI_nnnnn).
    Have you made changes on the server to the table/view definitions?
    If so then have you re-published? If there is data in the in queue or error queue it will sometimes not refresh the mobileadmin tables with the changed columns/data types, although if you use API's i believe you may be ok. If there is no mismatch on the server, what about the format of the table on the client? it may be trying to upload some changes

  • 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)
    /*********************************************/

  • Oracle Lite not working

    Definitely I can't make it to work.
    I get allways this error : ORA-12537 (TNS Connection closed) with SQL Plus.
    I use Login "system", password "system", host "webtogo.world"
    I tried also login "system", password nothing; or password "master", or "change_on_install"
    When I start webtogo at I get this info :
    H:\Ora9i\Mobile\Server\bin>webtogo
    log1: Translated JDK:'Cp1252' to IANA: 'WINDOWS-1252'
    log1: desktop 1521
    And hangs, doesn't go to the command prompt
    What's wrong ? I don't understand nothing about Oracle Administration, I'm just a developer, help me
    my configuration is this :
    My computer IP : 192.168.0.104
    My computer name : desktop
    Oracle Home : H:\Ora9i
    TNSNAMES.ORA
    WEBTOGO.WORLD =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (COMMUNITY = tcp)
    (PROTOCOL = TCP)
    (Host = 192.168.0.104)
    (Port = 1521)
    (CONNECT_DATA = (SID = WEBTOGO)
    LISTENER.ORA
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = desktop)(PORT = 1521))
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = webtogo.world)
    (ORACLE_HOME = H:\Ora9i)
    (SID_NAME = webtogo)
    SQLNET.ORA
    NAMES.DEFAULT_DOMAIN = 192.168.0.104
    USE_DEDICATED_SERVER = on
    NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT)
    WEBTOGO.ORA
    [WEBTOGO]
    USE_SYSTEM_CLASSPATH = YES
    MODE = SERVER
    PORT = 1521
    #IAS_MODE=NO
    ORACLE_HOME=H:\Ora9i
    BASE_URL=/webtogo
    ADMIN_TNS_NAME=WEBTOGO.WORLD
    ADMIN_JDBC_URL=jdbc:oracle:oci8:@WEBTOGO.WORLD
    APPLET_USE_THIN_JDBC = YES
    THIN_JDBC_URL=jdbc:oracle:thin:@::
    SITE_OFFLINE_PERIOD=0
    CUSTOM_WORKSPACE=no
    CUSTOM_DIRECTORY=myworkspace
    DEFAULT_PAGE=myfirstpage.html
    ROWS_PER_PAGE_IN_ADMIN_TOOL = 25
    [EXTERNAL_AUTHENTICATION]
    #CLASS=com.acme.SampleAuthenticator
    # Web-to-go workspace's font
    FONT_NAME=Arial
    [FILESYSTEM]
    TYPE=OS
    ROOT_DIR=H:\Ora9i\mobile\server\repository
    #TYPE=O8
    #TYPE=OL
    #TYPE=OS
    # Cache size in MBs
    #CACHE_SIZE=10
    MAX_CONNECTIONS=4
    [DEBUG]
    TRACE_ENABLE=Yes
    # There are 3 trace levels: basic (1), sql (2), java method (4)
    # The TRACE_LEVEL value will be used to do "Bitwise AND" against these
    # 3 levels to decide if trace of any particular level should be printed.
    # For example, 1 for only basic level, 7 for all levels, 3 for basic and sql
    # but not java methods.
    TRACE_LEVEL=1
    # This is comma seperated list of valid user names. Empty string indicates
    # tracing all users, "TRACE_NO_USER" indicates tracing no user.
    TRACE_USERS=
    # The trace output can be FILE, CONSOLE, or REMOTE.
    TRACE_DESTINATION=CONSOLE
    # Value to be used if trace destination is FILE.
    # The base name for the trace file
    TRACE_FILE_NAME=trace.log
    # Maximum file size in MB
    TRACE_FILE_SIZE=10
    # Maximum number of trace file to be used.
    TRACE_FILE_POOL_SIZE=5
    # Does every user have her own file pool?
    TRACE_FILE_PER_USER=No
    # Value to be used if trace destination is REMOTE.
    # Machine name and port where wsh.exe -m is running. Web-to-go
    # will send debug output to that machine.
    #TRACE_REMOTE_MACHINE=
    TRACE_REMOTE_PORT=2000
    [APPLICATIONS]
    XMLFILE = ws1.xml
    PACK_HELP=H:\Ora9i\mobile\doc\wtg\html\wtgdep.htm
    [PUBLIC]
    oracle.lite.sync.ConsolidatorServlet=/Consolidator
    [CONSOLIDATOR]
    # Installer will change these values
    SERVER_VERSION=8.1.7
    # 8.1.7
    # Installer won't change these values
    MAX_THREADS=3
    JDBC_DRIVER=oracle.jdbc.driver.OracleDriver
    CREATE_USER_OPTIONS_O8I=PROFILE CONSOLIDATOR_CLIENT_P DEFAULT TABLESPACE USERS QUOTA UNLIMITED ON USERS TEMPORARY TABLESPACE INDX QUOTA UNLIMITED ON INDX
    CREATE_USER_OPTIONS_O8=PROFILE CONSOLIDATOR_CLIENT_P DEFAULT TABLESPACE USR QUOTA UNLIMITED ON USR
    TEMPORARY TABLESPACE TEMPORARY QUOTA UNLIMITED ON TEMPORARY
    TEMP=H:\Ora9i\mobile\server\bin
    WTG_PROXY_PORT=80
    TRACE_ENABLE=Yes
    # There are 3 trace levels: basic (1), sql (2), java method (4)
    # The TRACE_LEVEL value will be used to do "Bitwise AND" against these
    # 3 levels to decide if trace of any particular level should be printed.
    # For example, 1 for only basic level, 7 for all levels, 3 for basic and sql
    # but not java methods.
    TRACE_LEVEL=1
    # This is comma seperated list of valid user names. Empty string indicates
    # tracing all users, "TRACE_NO_USER" indicates tracing no user.
    TRACE_USERS=
    # The trace output can be FILE, CONSOLE. Note REMOTE is not valid.
    TRACE_DESTINATION=CONSOLE
    # Value to be used if trace destination is FILE.
    # The base name for the trace file
    TRACE_FILE_NAME=mgptrace.log
    # Maximum file size in MB
    TRACE_FILE_SIZE=10
    # Maximum number of trace file to be used.
    TRACE_FILE_POOL_SIZE=5
    # Does every user have her own file pool?
    TRACE_FILE_PER_USER=No

    Hi
    There could be two reasons.
    1) You may be having classesXX.zip where XX can be 111 or 12 in the classpath.
    Remove this from your system classpath
    2) Check the symjit.dll and rename it to some other name in your system. This file belongs to XP and has some problems in running Java programs in P4.
    regards
    Yugandhar

  • Starting with Oracle Lite, help needed

    Hi everybody,
    I have a desktop application written in Java which connects to a Oracle 10g database and I want to use the same application on ultramobile devices under WinXP. These devices will use the application offline and then will synchronize with the DB.
    As far as I know, I need Oracle Database Lite on mobile devices for getting database snapshots and track offline changes. I want to know if I need to install the Mobile Server for managing data synchronization between mobile devices and DB.
    Do I need to develop a web-app for managing data synchronization or there is a easier way to sinchronize in this case using only the desktop application?
    Thanks in advance for your help and sorry for my poor English.

    You want to look at Win32 applications. There are APIs in multiple programming languages that utilize the Oracle Lite Sync API to sync, or you can just use the mSync tool.

  • Error while trying access JSP page first time using Oracle Lite

    Hi,
    We are doing a proof of concept using Oracle Lite 10gR3. Installed Mobile server and published a JSP based application. Installed web-to-go setup.exe on a client machine and synchronized the application. However when we tried to open the page, it comes up with an error. We are using jdk version 1.4. Any advise will be highly appreciated. Thanks.
    Error message:
    Requested URL:/webtogo/18Mar1/MyIndex.jsp
    Exception: oracle.classloader.util.AnnotatedClassFormatError:_MyIndex (Unsupported major.minor version 49.)
    Invalid Class: _MyIndex
    Loader:mobileclient.web.18Mar1.jsp22486527:0.0.0
    Code-Source: /C:/MyInstallation/mobile_client_oc4j/j2ee/mobileclient/application-deployments/mobileclient/18Mar1/persistence/_pages/
    Configuration: *.jsp in C:\MyInstallation\mobile_client_oc4j\j2ee\mobileclient\application-deployments\mobileclient\18Mar1\persistence\_pages
    Dependent Class: oracle.jsp.runtimev2.JspPageInfo
    Loader: oc4j:10.1.3
    Code-Source: /C:/MyInstallation/mobile_client_oc4j/j2ee/mobileclient/lib/ojsp.jar
    Configuration: <code-source> in META-INF/boot.xml in C:\MyInstallation\mobile_client_oc4j\j2ee\mobileclient\oc4j.jar
    This class was compiled for a newer version of the JRE. Expected version 48.0, found 49.0

    (Since this is the general forum for the 'big' database, my advice would be to ask in the Oracle Lite forum. Database Mobile Server (inc. legacy Database Lite)
    If this is a formal evaluation, you could also get a Sales-sponsored trial which usually comes with 30-90 days of Metalink support. You would be able to search for notes like Doc 414106.1
    Bottom line is that the code is for JDK 1.5 and it's being deployed against JDK 1.4.2. Something needs to be either upgraded or downgraded.

  • Error when installing Oracle Lite for Mobile Field Service Laptop

    Hi,
    I am facing a strange problem when installing Mobile Field Service Laptop agent "Oracle Lite" on my laptop.
    When I run the setup, it asks me username and password, after entering the information, when I proceed, I see setup window which displays below messages
    "Authenticating with server... "
    Please wait. This may take several minutes ...
    Then it hangs for several minutes, approx 5 to 10 mins, and then gives message
    "Could not connect to server: HTTP/1.0 502 Bad Gateway"
    I am not able to proceed with setup.
    But none of my other colleagues are facing this issue, even though the network, proxy settings and java version are same.
    Any idea about this error?
    Regards,
    Mohammed

    I thought polite.ini us required....how r u using MFS without polite.ini?

  • Error in Oracle Lite Database connection

    Hi,
    I have installed the Oracle Application server 10.1.3.1.0 on my laptop (basic installation).
    I tried to define a database connection in the JDeveloper connection navigator to the Oracle lite database. When I test the connection I got an error:
    "Internal Error:Invalid Connect String".
    I have defined in the connection tab of the Edit database connection in the following way:
    Driver class: oracle.lite.poljdbc.POLJDBCDriver
    Library: OLite
    Classpath: C:\product\10.1.3.1\OracleAS_1\bpel\lib\olite40.jar
    URL: jdbc:polite4@localhost:100:orabpel
    Could anyone tell me which user and password I should define for the oracle lite database which is delivered with Oracle Application server 10.1.3.1.0?

    Hi,
    Did you start the SOA suite on your workstation?
    If so, can you reach the BPEL Console
    if so, check via Enterprise Manager the connect string in the OC4J instance of BPEL (oc4j_soa -> administartion -> JDBC > conenctions, or data-sources.xml)
    Copy the connect string into your OLite config if it works

  • Data not arriving in oracle lite using qbased syncing

    Hi,
    I am currently having difficulty adding new publication Items to our current queue based syncing in Oracle lite.
    I have set up the Queue using : createQueuePublicationItem
    I have set up the Index using : createPublicationItemIndex
    I have added the publication item using : addPublicationItem(
    I have added the user to the new PI using the screen.  This I think should be everything.  Unfortunately what happens is that the data gets as far as the out queue tables ie mobileadmin.ctm$ppec_pi for my new PI of ppec_pi.  But when I go onto the olite database on the client device, the new table is created, but there is no data.
    Is there something I am missing,
    Thanks,
    Justin.

    I did redefine the table, so all columns that are part of PK index and used in my SQL statement are data type NUMBER.
    My unique index is (dc_nbr, company_nbr, offering_group_id, offering_id), the same columns are used in my WHERE clause.
    Still Oracle Lite always builds the large temporary table before it goes to this temp table and sequentially reads and returns first 19 records.
    Trace File:
    Tid=060c, Statement Text:select dc_nbr, company_nbr, offering_group_id, offering_id
    from uoc.ship_dc_offering
    where dc_nbr = 6
    and company_nbr = 1
    and offering_group_id = '00001'
    and offering_id > '100129'
    and rownum < 20
    Table Order: UOCDB.UOC.SHIP_DC_OFFERING
    Tid=060c, Compilation Time: 0 (mil. sec.)
         Temporary Table Created: POL_WS_1_1
         Table Name: UOC.SHIP_DC_OFFERING
         Access Method:
         Term[0], Index No: 903266475, IndexName: UOC.POL_SYS_CONS20030
         Table Name: POL_WS_1_1
         Access Method: Sequential
    Tid=060c, First Fetch Time: 2323 (mil. sec.)

  • Oracle lite xsql web to go installation error

    I have installed Oracle lite in windows 2000 professional. I installed the XSQL also. I configureged web to go. I get the demo (index.html) screen. I changed the connection name in helloworld.xsql to lite. WhenI try to run it
    I am getting the following error
    XSQL-007: Cannot acquire a database connection to process page.
    java.lang.ClassNotFoundException: oracle.lite.poljdbc.POLJDBCDriver
    What should I do to correct this?
    null

    the web-to-go server portion of Oracle Lite can only be installed on NT at this time. the future relase version 4.1.1 should support solaris (per oracle support).
    After installation on the server side is complete, the web-to-go client software can be pushed down by connecting through a web browser to your web-to-go server by
    typing http://yourwebtogoservername/webtogo/setup
    the client setup.exe file that will download can be run on 95,98 and NT (per Oracle support)

Maybe you are looking for

  • PI 7.31 Single Stack

    Hi All, Do we have a document or link which points to all the settings that are needed to be done in PI when using RFC,Proxies,IDOC and other adapters from dual stack to single stack. Basically the settings needed for these adapters when communicatin

  • Method Limits? a stressed newbie

    pls can anyone tell me if i can have the following in a method? (WHOLE CLASS) class SuperMethod      public static double aTaxRate (double currentSalary)           if (currentSalary < 6000)                currentSalary = currentSalary * 0.15;        

  • Using the Invoice Balance Due in Queries

    I am putting together a custom aging report and have hit a snag. I can not find a field name for the balance due information in the invoice, only doc total. Do I have to use a formula? If so, any suggestions? Thanks!

  • Compliance Template

    I'm trying to setup and compliance template to check and deploy a configuration change based upon the following criteria All Switches, any fastethernet interface with a interface description containing the string "bmg" should have the command no snmp

  • When I go to a web page power point presentation saved as Adobe the first page loads then I keep getting error message:

    I have Adobe Acrobat Pro XI And its up to date. When I go to a web page Power point presentation saved as Adobe the first page loads then I keep getting error message: There was a problem reading this document (14) I've tried refreshing the download.