JDeveloper 9.0.5 apps with Oracle Lite 10g

Hello:
Has anyone else attempted to develop an ADF UIX Struts Web application using JDeveloper 9.0.5 and deploying the application to an Oracle Lite 10g Webtogo environment. We have a need to have offline activity on the client machine, storing the data in an Oracle Lite 10g database, until the user can connect to a database server for a synchronization cycle.

Jim,
We didn't certify JHeadstart against the production release of JDeveloper 10g (9.0.5.1)yet. The document that you probably used refers to the preview release of JDeveloper 10g.
We are in the process of certifying and didn't make our initial planning. We are struggling with some last issues. We will keep this forum informed about the new release.
Regards,
Ton van Kooten
JHeadstart Team

Similar Messages

  • Forms 6i based application compatibility with Oracle Lite 10g

    My client is currently using an Oracle Forms 6i based application (together with a Jinitiator)
    in an application deployed to 50 countries using Oracle Lite 9i as the Mobile Application Server and Oracle 8i as the database.
    We are considering an update to Oracle 10g database and 10g Rel 3 mobile application server.
    Can anyone advise on the impact of such an application on the Forms 6i application and if there is a recommended process for the upgrade of the forms application?

    do you mean the OAS 10g Rel. 3 ? That application server has no forms-component. Only the Rel.2
    Your Forms 6i is certified against 10g databases with patch 17 and 18. Download them from the metalink.oracle.com

  • Oracle Text with Oracle Lite 10G?

    I would like to be able to perform text searches in my OLITE 10g R2 database. Is is possible to install Oracle Text for use with OLITE? If so, how to I install it -- do I use the manual procedure described elsewhere, by taking the script files from an Oracle Enterprise or Standard Edition installation, and running those scripts against my OLITE db? Thanks.
    Marty

    Marty,
    Did you ever resolve this issue? We would also like to run Oracle Text with OLite, but I cannot find any information on doing this.

  • 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 to getJ2ME to work with Oracle Lite

    Has anyone tried using J2ME with Oracle Lite for PDA devices. We are trying to build a cross platform application. The handheld app will run on J2ME container (In PDA) . We want to use Oracle Lite , but cannot get J2ME to talk with Oracle Lite. Can someone help ?
    Is Oracle Lite Supported with J2ME for PDA

    Yes. please resolve it and also give pointers where it is mentioned - how one can use olite as a database on Nokia S60 3rd edition platform mobile devices with J2ME as developement plaltform.

  • Launch apps with oracle jre 7

    With Apple discontinuing support jre 7 on its mountain lion, i am trying to find a way to launch my mac apps with oracle jre7. There are two situations occuring to me.
    1. Oracle jre7 could be before hand installed and my app should be able to detect and launch
    2 Or Bundle the oracle jre 7 with my Mac app and get into lauching it on mountain lion without any issues.
    Is there a better way or apple providing support in this regards.
    Help appreciated.

    Thanks NickClark_uk,
      I am able to install the java 7, but the Mac app i am trying to launch is unable to detect the oracle jre 7 and works fine with app store jre's. So we may need to bundle the jre or modify our apps to detect the installed JRE.
    I was looking at what would be the better approach in order to have my Mac app run with oracle jre 7.
    Thanks

  • Solaris x86 with Oracle RAC 10g Enterprise Edition Release 10.2.0.3.0

    Hello,
    Maybe you can help me (new on RMAN backup) in doing this.
    I have configured a single Oracle 10g database to have backup with RMAN with following steps:
    1. $ mkdir $ORACLE_BASE/rman_scripts
    2. $ mkdir $ORACLE_BASE/logs
    3. $ mkdir $ORACLE_BASE/tracking
    4. $ mkdir $ORACLE_BASE/c_backup
    5. $ sqlplus sys/<password> as sysdba
    6. SQL> alter system set db_recovery_file_dest_size = 50G scope=both;
    7. SQL> alter system set db_recovery_file_dest='${ ORACLE_BASE}/flash_recovery_ area' scope=both;
    8. SQL> alter system set log_archive_dest_10='location= use_db_recovery_file_dest';
    9. SQL> shutdown immediate
    10. SQL> startup nomount
    11. SQL> alter database archivelog;
    12. SQL> alter database open;
    13. SQL> alter database enable block change tracking using file '${ORACLE_BASE}/tracking/rman_ change_track.f';
    14. $ rman target /
    15. RMAN> CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK
    TO '/var/opt/oracle/flash_ recovery_area/ORCL/c_backup/% F';
    16. RMAN> CONFIGURE CONTROLFILE AUTOBACKUP ON;
    17. RMAN> CONFIGURE BACKUP OPTIMIZATION ON;
    18. RMAN> CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 7 DAYS;
    19. RMAN> exit
    I need to configure incremental backup with RMAN on a two node Solaris x86 with Oracle RAC 10g Enterprise Edition Release 10.2.0.3.0 installation.
    We also use ASM to store database files, and have Oracle software installed on separate file systems (two Oracle roots for Node1 and Node2).
    I have following questions:
    1) where to put Flash Recovery Area (FRA)?
    I saw recommendations to put FRA on the ASM, is this the best way to do it?
    2) Can I put FRA on another file system (not on the ASM) which is available only from Node1? This way I can save space on the ASM.
    3) Is it possible/recommended to run RMAN from Node1 only?
    Below is the script used to run RMAN on the normal Oracle database (without RAC) which I need to change :
    =============================================================================================
    2.0 Oracle backup script: /opt/app/oracle/rman_scripts/backup.sh
    Use this for daily backups, possiblly as a cron job.
    Once a week run this: /opt/app/oracle/rman_scripts/backup.sh FULL
    All other days of the week: /opt/app/oracle/rman_scripts/backup.sh INCREMENTAL
    Note: You may have to change ORACLE_SID, ORACLE_BASE below to match your database.
    =============================================================================================
    #!/usr/bin/ksh
    ORACLE_SID=orcl
    ORACLE_BASE=/opt/app/oracle
    ORACLE_HOME=${ORACLE_BASE}/product/10.2.0/db_1
    PATH=${ORACLE_HOME}/bin:/usr/bin
    LOGDIR=${ORACLE_BASE}/logs
    LOGFILE=${LOGDIR}/rman.log
    if [[ $# < 1 ]]
    then
    echo "usage: backup.sh FULL|INCREMENTAL"
    exit;
    fi
    BACKUPTYPE=${1}
    full='FULL'
    incremental='INCREMENTAL'
    if [[ $BACKUPTYPE == $full ]]
    then
    $ORACLE_HOME/bin/rman target / nocatalog log ${LOGFILE} append << eof
    run {
    backup database;
    SQL 'alter system archive log current';
    backup archivelog all;
    delete noprompt obsolete;
    exit;
    eof
    echo ''
    fi
    if [[ $BACKUPTYPE == $incremental ]]
    then
    $ORACLE_HOME/bin/rman target / nocatalog log ${LOGFILE} append << eof
    run {
    backup database;
    backup incremental level 1 database;
    SQL 'alter system archive log current';
    backup archivelog all;
    delete noprompt obsolete;
    exit;
    eof
    echo ''
    fi

    Hi [email protected],
    Q1) where to put Flash Recovery Area (FRA)?
    A1) With RAC: on the shared storage
    I saw recommendations to put FRA on the ASM, is this the best way to do it?
    If you want your backups to be available for both nodes you have to use shared storage or tape using an mml library.
    So if you want to use the FRA for rman backups and the database is on ASM just make ASM the standard for the FRA as well.
    Q2) Can I put FRA on another file system (not on the ASM) which is available only from Node1? This way I can save space on the ASM.
    A2) Than you cannot recover in case Node1 is down. Best would be to send your storage admin to a training course so he can manage the clustered raw devices needed for ASM.
    Q3) Is it possible/recommended to run RMAN from Node1 only?
    A3) No see A2.
    Regards,
    Tycho

  • 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.

  • 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>

  • 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

  • Pinging ip's with oracle developer 10g

    db and dev 10g rel2 ,
    hi all,
    i want to ping some ip's through a form built with oracle developer 10g rel2 ,
    - i have two choices here ,
    -there is an application can ping a lot of ip's automatically , it has options to load a file in which ip's are stored , and another option to save the result into a .csv file ,
    so i am searching for a way to control that application , i want a way to do these tasks through a button on my form :
    1- open that application .
    2 -load the ip's .
    3- save the result to a .csv file .
    4- transferring the .csv data to a block on my form . -- and this is the simple step which i can do individually , but i do not know how to deal with the steps previously mentioned .
    2- the second choice is to open the os command prompt through a button , and ping through it , but the problem is the result would not be displayed in columns , and i do not know a way to load the result into a block on the form.
    if you could help me with any of these choices , or if you have another one , i would appreciate that .
    thanks in advance

    i've tried to use it like it is in the example : , i used only the first two parameters
    DECLARE
      c  utl_tcp.connection;  -- TCP/IP connection to the Web server
    BEGIN
      c := utl_tcp.open_connection(remote_host => 'www.acme.com',
                                   remote_port =>  80); 
    end ; by the way , before i posted the thread , i've tried it , but i faced problems while executing it , that's why i asked if it is
    suitable for me or not .
    when i execute it by the above code , the engine tells me that "procedure successfully completed , but without any result .
    2- if you could tell me what does "remote_port" means , because i posted the number in the example as it is .
    i do not know what is port ?
    3- do you know about a jave bean can do my requirements ?
    thanks a lot

  • Help with Oracle 9i/10g on RedHat 4?

    If anybody can help would be greatly appreciated...
    I get the same error with Oracle 9i & 10g when installing on Red Hat Fedora 4, it's java related...
    Exception in thread "main" java.lang.UnsatisfiedLinkError: /tmp/OraInstall2007-03-16_01-09PM/jre/lib/i386/libawt.so: connat restore segment prot after reloc: Permission Denied
    Red Hat Fedora is weak on java, it only has the Java 1.4 JRE installed. I tried to upgrade to Sun's JRE 6 but got dependency errors.
    Jon

    Red Hat Fedora 4Does not exist.
    Exception in thread "main" java.lang.UnsatisfiedLinkError: /tmp/OraInstall2007-03-16_01-09PM/jre/lib/i386/libawt.so: connat restore segment prot after reloc: Permission DeniedSolution 1: Modify /etc/selinux/config and change value of SELINUX to "disabled" and reboot computer.
    Solution 2: Upgrade selinux-policy-targeted-1.25.2-4.noarch.rpm (Use command: "yum upgrade selinux-policy-targeted")
    Red Hat Fedora is weak on java, it only has the Java 1.4 JRE installed. I tried to upgrade to Sun's JRE 6 but got dependency errors.??? OUI does not have to do with external JRE.
    Oracle Installation comes with bunled JRE.
    If you are using Fedora then you might consider these articles useful:
    http://ivan.kartik.sk/oracle/install_ora9_fedora.html
    http://ivan.kartik.sk/oracle/install_ora10gR2_fedora.html

  • Manually register rman backup with oracle database 10g

    Dear All.
    I want to restore full backup of database.
    I have not configure flash_recovery_area.
    how i can manually register full rman backup of database with oracle database 10g.?
    Please help me.
    Thanks & Regards
    Ravi Kumar

    This is the 10gR2 documentation on the CATALOG command :
    http://docs.oracle.com/cd/B19306_01/backup.102/b14194/rcmsynta011.htm#sthref230
    You must be specific when stating the version you are running.  Commands may be limited or unavailable in older versions versus more recent versions of Oracle.
    Hemant K Chitale

Maybe you are looking for

  • Can't resize video in Sequence monitor window anymore ???

    OK Help... I have been working on a project in CS4 and the project settings are HD 1080. I have been able to bring in other SD clips and simply "click" on the video in the monitor window and a box comes up around the video and I can resize it and the

  • Flash 8 crashing upon opening Actionscript panel

    Someone please help, I have buit an animation and can't apply the stop action to my final frame so the animation just replays over and over. BIG PROBLEM. Console saying: Jul 19 20:23:22 Brad-Haynes-Computer crashdump[230]: Flash crashed Jul 19 20:23:

  • Trying to diplay jpg images in JSP.....plz help

    I have a set of jpg images that I have stored in my server, not in a database. So far, my code can iterate over the directory the images are stored in and can display them as links that users can click on. I can locally click on these links and see t

  • Double arrow mouse pointer on mouse over - URGENT!

    When we use HDividedBox, the UI shows a grip in the middle of the two containers. When we hover over it, it shows a double arrow. How do I get it for my custmo component?

  • How to select username from v$logmnr_contents in oracle 10g

    Hi, Can anyone to provide solution for the below mentioned problem. I use select sql_redo,cscn,USERNAME from v$logmnr_contents where sql_redo is not null and operation_code in(1,2,3,7) and seg_type in(0,2) and (seg_owner is null or seg_owner not in('