Documentation for Oracle 10g Lite

Hello
I have docummnetation for oracle 10g Lite but there is only informations what to do step by step. I'm looking generally informations about the features mobile databases, synchronization system, managment, and all development support. Where can I find them??

I run Oracle Lite on Pocket PC, and I make some simple program which did some operations on database. I know that the support for .NET is small. But I'm writing the master of science work about three mobile databases (sql ce, oracle lite and sybase) and I have to write a program which will be testing performance of those databases on the mobile device.
Generally I hope this program will work ok. But I also have to write about fuures for example oracle database lite RDBMS, but in documentation there is only few generally informations and almost all document is about how to configure it and how to do something.
So if you have some generally documents (I have those white papers and other pfd on oracle site) please send it to me [email protected] .

Similar Messages

  • Documentation for oracle 10g graphs - pie

    Is there a documentation for building a pie chart graph using oracle 10g.
    Can someone clarify also the difference between group and slice.
    thanks.

    I run Oracle Lite on Pocket PC, and I make some simple program which did some operations on database. I know that the support for .NET is small. But I'm writing the master of science work about three mobile databases (sql ce, oracle lite and sybase) and I have to write a program which will be testing performance of those databases on the mobile device.
    Generally I hope this program will work ok. But I also have to write about fuures for example oracle database lite RDBMS, but in documentation there is only few generally informations and almost all document is about how to configure it and how to do something.
    So if you have some generally documents (I have those white papers and other pfd on oracle site) please send it to me [email protected] .

  • Documentation for Oracle 10g spatial

    Hi,
    Is there any documentation avilable for oracle spatial 10g ?
    Any link would be helpfull.
    Regards
    Vikesh

    http://otn.oracle.com/pls/db10g/portal.portal_demo3?selected=3#index-SPA
    http://download-west.oracle.com/docs/cd/B13789_01/appdev.101/b10826/toc.htm

  • Oracle 10g Lite with ADF/BC4J Application(Offline access in Mobile )

    Hi All,
    We have the following requirement from one of our client.
    Customer Company has R12 Apps instance(which is having 10g Database APPSDB). The users will come in the morning
    and connect to the System(NEWSYSTEM) to download their daily worksheet(resides in APPSDB) to their Mobile Devices
    (Windows XP - http://www.keenzo.com/zoom.asp?zoom=3830134) and then disconnect from the system. The download of data
    should start after login into their Mobile Device Custom Application So that only their worksheet will be downloaded
    to their Mobile Device DB.
    Then they will goto their fields and review their daily worksheet in the Mobile Device application(NEW APPLICATION)
    in offline mode. And update in the application with their findings, which should be stored in the Mobile Device database(MOBILEDB).
    In the evening the uses will come and connect to the system(NEWSYSTEM) and login into their Mobile Application and
    start the upload process, then the updated data from their Mobile Database will be uploaded into APPSDB via the NEWSYSTEM.
    I checked the links, http://www.oracle.com/technology/products/lite/index.html and http://lite.us.oracle.com and I have
    got some understanding about Oracle 10g Lite. For the above requirement we are proposing the NEWSYSTEM as Oracle 10g Lite Server
    and the NEW APPLICATION as ADF/BC4J which can run in their Mobile Devices(work offline and then sync with DB).
    I have the following questions.
    1) The above proposing system is feasible?
    2) Can we develop the Mobile Application using ADF/BC4J and using that we would like to
    control the sync process from our custom application.(so that only their worksheet will come to their Mobile Device DB)
    3) If I want to have the above system,
    a) I should have Oracle 10g Lite server installed(im Unix or Windows)
    b) I should have Oracle 10g Lite client installed in a Windows PC/Laptop
    c) To get my custom application in My Mobile Device, first I have to deploy the application
    in Oracle 10g server using Oracle Mobile Server. Then I have to connect my Mobile Device to the Oracle 10g Lite server,
    and deploy the application in my Mobile Device using Oracle Mobile Manager.
    4) I would like to do a POC before start the project.
    What are all the installations I have to do in my Laptop.(Consider I am installing Oracle 10g Lite server/client, Mobile Manager in my Laptop)
    I am new to Oracle 10g Lite, correct me if any of my understanding is wrong.
    If you have any comments in the approach please add it.
    Thanks in advance.
    With Regards,
    Kali.

    1) The above proposing system is feasible?
    perfecly feasible, and actually a reasonably standard use of oracle lite
    2) Can we develop the Mobile Application using ADF/BC4J and using that we would like to
    control the sync process from our custom application.(so that only their worksheet will come to their Mobile Device DB)
    Actually two different questions here. The application code that runs on the client device can be written in any thing that will run on that type of device, and is capable of using the APIs to connect to the local database, and the other functionality like synchronisation. From the forum there look to be VB, C, java users out there (an i even believe if you wanted to, you could use forms). Main decision regarding the Platform for the application code development tends to be whatever you have the skills in.
    In terms of the sync process only downloading a particular users worksheet, this would be defined when you define the snapshots of the database tables you want to download, rather than the sync login process itself.
    For example - you have a table WORKSHEETS on the server that you want to download, it has a column EMP_NO which is the employee identifier. You would define the selection for the snapshot as
    select * from WORKSHEETS where EMP_NO=:emp_no (note the bind variable)
    when you then add users to the oracle lite application (actually the database), then you will have a parameter called EMP_NO to define with the employee number for that particular user, and this will be used automatically as the bind variable in the download.
    NOTE subsetting in this way does not need to be direct, for example things like
    select * from TASKS where id in (select task_id from user_tasks where emp_no=:emp_no) is perfectly valid
    NOTE when reading the forum and documentation, be careful of the word application. There are actually two different things to be developed, both normally called 'application'
    Within oracle lite you create an application with publication items, scripts, sequences etc. and then subscribe your users to this application. The application in this context is actually the database and synchronisation management ONLY (you can include files and code for download)
    The second application is your runtime code that has a user interface, functionality, processing and validation. This is written in some development platform, and accesses the database created above for select, insert, update etc.
    3) If I want to have the above system,
    a) I should have Oracle 10g Lite server installed(im Unix or Windows)
    YES this goes on the app server and installs a repository schema MOBILEADMIN within your database
    b) I should have Oracle 10g Lite client installed in a Windows PC/Laptop
    YES - once the server is set up, this is downloaded and set up by accessing the <server url>/webtogo/setup
    c) To get my custom application in My Mobile Device, first I have to deploy the application in Oracle 10g server using Oracle Mobile Server. Then I have to connect my Mobile Device to the Oracle 10g Lite server,
    and deploy the application in my Mobile Device using Oracle Mobile Manager.
    steps in outline are
    1) install server
    2) develop the oracle lite application (ie: database) and publish this to the mobile server (can use the development kit or java APIs for these two steps
    3) add a user with the relevant subsetting parameters
    4) set up oracle lite win32 client on the laptop from the server download
    5) synchronise using the msync utility on the client to create the databases and odbc entries
    6) develop your application code using the client database
    7) during development, then changes to database structure would be via changes and re-publish of the oracle lite application, followed by a sync to update the client database
    8) once all development is complete, the runtime application code can be bundled up into the oracle lite application if you want, and then the initial sync for live users will download the database and application code.
    4) I would like to do a POC before start the project.
    What are all the installations I have to do in my Laptop.(Consider I am installing Oracle 10g Lite server/client, Mobile Manager in my Laptop)
    You can set up a standalone server on the laptop, but better to do this on a development app server so you can use the main server development database as the data souce for the snapshot definitions (pretty easy install). there are conflicts if you try and put the oracle lite client and the mobile development kit on the same machine, but if you are familiar with java, the API development is fairly straightforward to use (i have developed applications in this, and i know only the basics of java) you do not need the MDK
    Basic for a POC i would say is to
    1) set up mobile server on development
    2) define a simple oracle ite application on two server tables. one has select * from table, and the other has select * from table where .... including bind variable. at this stage use complete refresh as the mode for simplicity
    3) publish the application, create user and define the subsetting variable
    4) set up mobile client and synchronise user. use the msql utility to interrogate the database and check the content, and do some updates 9standards SQL syntax)
    5) create simple appliaction code to conect to and read the database on the client
    6) do a sync after the updates above and check they appear in the server
    The above should be reasonably quick and proves
    a) ability to define the data you want to be sent to the users
    b) ability to create an app to manage the database running on the client device in you preferred software platform
    c) data download and upload
    after this basic POC, you can extend into defining fast refreshes to improve the efficiency of the sync process, managing the MGP process, developing a more comprehensive database and application etc. If you have complex joins between server table, you may also want to look at creating views to denormalise data and use these as the basis for the snapshots

  • Oracle 10g Lite

    Is OCI supported by Oracle 10g Lite on the Mobile Client?
    I can't find any documentation supporting this assertion.

    Hi,
    There is no specific release for Lite on Windows CE. The WinCE client comes with the Windows version of Lite, found here:
    http://www.oracle.com/technology/software/products/lite/index.html
    Cheers,
    Junius

  • Oracle 10g Lite Mobile Devices

    Hi,
    1. Does Oracle 10g lite Support Arabic?
    2. Does Oracle 10g lite Support Windows Mobile 5.0, PPC 2005?
    3. On a PPC 2003 OS the sync worked well but after it finished the device manager started to register the device on the mobile server, there is an error raised that has invalid error code and as description 'Insufficient information to proceed',
    Help Me In That Please?

    Hi,
    ad 1: Oracle Lite should support all the charsets the "big" Oracle server supports - even unicode afaik.
    ad 2: yes, OLite supports WM5 (you have to install a patchset from metalink to enable WM5 support - try to search previous threads)
    ad 3: what is the regional settings of your device? if it's some arabic culture which is not present in default OLite installation, you'll have to make some changes into Oracle Lite system tables to support your platform. In OL10g the "platform" is defined as a combination of OS type, CPU type and current OS culture settings - for example something like "WM5 + XScale CPU + czech culture". I used something like this to replace all the japanese platforms with our language to enable support for devices wit czech locale settings:
    UPDATE mobileadmin.dm$all_platforms
    SET NAME = REPLACE(NAME, ';JA', ';CS'),
    TYPE = REPLACE(TYPE, '_JA_', '_CS_')
    WHERE NAME LIKE '%;JA';
    INSERT INTO mobileadmin.DM$LANG_MAP
    (LANG_ID, LANG_NAME, LANG_CODE, LANG_REG, CODE_PAGE)
    VALUES
    ('CS', 'Czech', 'CS', 'CZ', '1250');
    you'll than probably also need to copy some files from default US locale to your new locale directory:
    {ora10gLiteR2}\mobile_oc4j\j2ee\mobileserver\applications\mobileserver\setup\us => {ora10gLiteR2}\mobile_oc4j\j2ee\mobileserver\applications\mobileserver\setup\{your_locale}
    than the device should be able to get registered...

  • Oracle forms & reports support on oracle 10g lite

    Currently our oracle forms & reports 6i application works on oracle 8i database with oracle 9i lite.
    We upgraded our database to oracle 9i r2 and lite to 10gr2.
    After publishing the application when i try to open the application the forms screen disappears for ever.
    I wanted to know whether oracle forms and reports 6i is supported on
    oracle 10g lite r2?
    Thanks,
    Ashok Kumar.G

    No. Not only it isn't certified, but it is also impossible to run forms compiled with the 11g compiler with the 10g runtime. For 11g there is a install bundle for the developer suite / application server.
    cheers

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

  • Documentation for oracle webcenter wiki and blog server 10.1.3.2.0

    Hi
    Can anyone tell me where I can get the documentation for oracle webcenter wiki and blog server 10.1.3.2.0. I am specifically interested in this version and not the latest version Oracle® WebCenter Wiki and Blog Server 10g Release 3 (10.1.3.4.0) because I have heard the older version provided out of the box portlets for creation of blogs.
    Since we want blogs very fast, I want documentation of this older version.
    Can anyone point them out to me as soon as possible please

    You can find the demo portlets here: http://www.oracle.com/technology/products/webcenter/owcs_10132_demos.html#wiki_blog_disc_samples
    I do not believe there were any portlets provided with the earlier release.
    Anyway what i think is it should not take you more than a few hours to integrate blogging functionality if you are using the Connection & Task flows provided by WebCenter.
    Venkat

  • Oracle 10g Lite Product Information

    Hi all !
    I just need a help regarding the Oracle 10g Lite product from Oracle.
    I need to work on a Java/J2EE project that requires an Oracle DB as backend. I recently came to know about Oracle Lite and want some suggesstions.
    My requirements:
    1. I need a local Database in my "laptop". Can this software be used for that purpose.
    2. I should be able to create a new schema with some tables and procedures (I thnk this is possible in Oracle Lite).
    3. I have a Windows XP Home Edition. I read in many threads that Oracle Products do not work on Windows XP Home Edition. How true is this ?
    4. Is Oracle Lite appropriate for my requirement.
    I am reading the Oracle Lite white pages to find out more info. Please share your thoughts on this.
    Thanks.
    P

    Hey Robert,
    Dont think I can use Oracle Express Edition. :((
    Look at the system specs !
    Requirement
    System architecture : Intel (x86)
    Operating system: One of the following 32-bit Windows operating systems:
    * Windows \\      2000 Service Pack 4 or later
    * Windows \\      Server 2003
    * Windows \\      XP Professional Service Pack 1 or later
    The OS is my prob. I got Windows XP Home Edition !
    Thanks
    P
    Edited by: Drink Up on Sep 8, 2008 4:14 PM
    Edited by: Drink Up on Sep 8, 2008 4:14 PM

  • Oracle 10g Lite Database User Creation

    Hi,
    I am using Oracle 10g Lite Database Release 3, I Like to Know How to Create a user in Oracle 10g Lite Database through Command ,Any Advice
    Thanks U
    SHAN

    Shan,
    In the same way you create user in any other oracle database. I recommned to check following Oracle Lite Sql reference document for creating user from command line.
    http://download.oracle.com/docs/cd/B19188_01/doc/B15917/sqcmd.htm#sthref487
    or
    sql> CREATE USER liteuser IDENTIFIED BY "litepassword"; -- And add required privs to the user.
    Regards

  • Hardware specification for Oracle 10g

    Hello all,
    I need a hardware specification for Oracle 10g. Where can I find any information about this topic?
    Thanks
    Wisnia

    Minimal HW requirements are described in documentation.
    As you question is very general (you didn't provide some parameters) then maybe this site will help you: http://www.sizinglounge.com/

  • Oracle 10g Lite Review

    Hello,
    It seems there are a lot of folks out there who have successfully implemented Oracle Lite solutions for their remote users and leverage database snapshot replications.
    Can anyone please share their input about this product from implementation/ deployment and maintainence perspective?
    We are in the midst of product evaluation but are unable to estimate how much (if applicable) difficult it is to develop a system using Oracle lite 10g.
    Oracle 10g Lite has no patches available yet. Do you think it has significant bugs to hinder development efforts significantly?
    If you could let me know if this product has significant issues implementing or maintaining, it would be great.
    Thanks much for any input on the matter,
    Milind Shah

    Hi Milind/Payal
    I have currently implemented a web application(struts) on Oracle Lite Webtogo and is now running in production. Currently around 30 users are working on this. Some 100 more users would be added in mid June, 2005 and another 150 users in mid Sep, 2005.
    The application size is also very big around 20MB of jar file size. So you can imagine how big the application it is. Also one more good point is that we have also implemented XML FOP for generating PDF reports at runtime which are also huge reports. We also have tables with BLOB column to store documents as documents cannot be accessed directly from file path.
    Yes I had some problems in between but I could resolve it by my own.
    There are some more problems that we are facing nowadays but are not very critical but though critical for the user point of view.
    1. A critical issue of changing sequences window/thresold size after publishing it for the first time. Resolved after writing a consolidator program to change the same into the mobile server repository.
    2. Some users are facing performance issue i.e. The application is taking around 3-5mins to open up after clicking on the link in the client workspace. We have identified that it is not the problem with Oracle Lite but with Tablet PCs the users have been given to work on. There is no problem in desktop or laptop and not even in most of the Tablet PCs. But I am still working on this issue to resolve.
    3. There are 2-3 users who are getting java.lang.Exception error message on clicking of the application link on the client workspace. We are still working on this issue to resolve it. Still don't know what can be the possible reason.
    I hope this answers your queries. If you have more queries do feel free to let me know at [email protected]
    regards
    ramchow

  • Oracle 10g Lite database - Replacement

    Hi,
    Can u mention some database similar to oracle 10g Lite database features which supports forms10gr2?]
    Note: Thin Database required.
    Regards
    Sreenivas

    Shan,
    In the same way you create user in any other oracle database. I recommned to check following Oracle Lite Sql reference document for creating user from command line.
    http://download.oracle.com/docs/cd/B19188_01/doc/B15917/sqcmd.htm#sthref487
    or
    sql> CREATE USER liteuser IDENTIFIED BY "litepassword"; -- And add required privs to the user.
    Regards

  • Archiving Best Practices / How To Guide for Oracle 10g - need urgently

    Hi,
    I apologize if this is a silly question. But i need a step by step archiving guide for Oracle 10g and cannot find any reference document. I am in a rather remote part of S.E. Asia & can't seem to find DBA's with the requisite experience to do the job properly. I have had 1 database lock up this week at a big telecoms provider and another one at a major bank is about to go. I can easily add LUNS & re-structure mirrors etc at the Unix level [ i am a Unix engineer ]
    but i know that is not the long run solution. I am sure the 2 databases i am concerned about have never been archived properly.
    This is the sort of thing DBA's must do all the time. Can someone point me to the proper documentation so i can do a proper job and archive a few years data out of these databases. I do not want to do a hack job. At least i can clone the databases and practise on the clones first before i actually do production.
    -thanks very much
    -gregoire
    [email protected]

    I'm not so sure this is a general database question, as it would be specific to an application and implementation, and as the technology has changed, the database options to support it has too.
    So for example, if you have bought the partitioning option, there may be some sensible procedure for partitioning off older data.
    Things may depend on whether you are talking about an OLTP, a DW, a DSS, or mixed systems.
    DBA's do it all the time because the requirements are different everywhere. Simply deleting a lot of data after copying the old data to another table (as some older systems do) may just wind up giving you performance problems scanning swiss-cheesed data.
    Some places may not archive at all, if they've separated out OLTP from reporting. If all the OLTP stuff is accessed through indices, all the older stuff just sits there. The reporting DB may only have what is needed to be reported on, or be on a standby db where range scans are sufficient to ignore old data. There there's exadata, which has it's own strengths.
    Best Practices have to be on similar enough systems, otherwise they are a self-contradiction.
    Get yourself someone who understands your requirements and can evaluate the actual problem. No apology needed, it is not a silly question. But what is silly is assuming what the problem is with no evidence.

Maybe you are looking for