Installing Oracle 9i Lite Database standalone

We are interested in installing the Oracle 9i Lite Database standalone for Windows 2000. Can you send me the instructions that you mentioned below in a previous response? In addition, I need to know the size of the database footprint.
Thanks,
Sarah
[email protected]

We are interested too, we have Satellite Forms and having many problems for connect to Oracle Lite Database on Palm Device. If you have any other information
for to do it, i will appreciate eternaly.
Jorge
[email protected]
We are interested in installing the Oracle 9i Lite Database standalone for Windows 2000. Can you send me the instructions that you mentioned below in a previous response? In addition, I need to know the size of the database footprint.
Thanks,
Sarah
[email protected]

Similar Messages

  • Sequencing and Trigger on Oracle 9i lite database

    We created a schema (TESTSCHEMA) on Oracle 8.1.7 Enterprise edition and have a created a trigger which will use the sequence object to generate primary key for the table (TEST_TABLE)
    Sequence creation:
    CREATE SEQUENCE TESTSCHEMA.TEST_TABLE_SEQUENCE START WITH 6000 INCREMENT BY 1 MINVALUE 6000 MAXVALUE 6999 NOCACHE NOCYCLE NOORDER ;
    Trigger creation:
    CREATE OR REPLACE TRIGGER TEST_TABLE INSERT BEFORE INSERT ON TEST_TABLE FOR EACH ROW
    DECLARE
    pkValue NUMBER;
    BEGIN
    pkValue := 0;
    Select TEST_TABLE_SEQUENCE.NextVal into pkValue from dual;
    :NEW.TEST_KEY := pkValue;
    END TEST_TABLE_INSERT;
    We have created a snapshot of the schema on mobile server, synchronized the data with the client (Win32 for testing purpose).
    The trigger works fine on the server, but when I run the same query on the lite database with msql it gives me an error:
    [POL-3221] null key in primary index
    I was wondering if Sequence generation and Triggers are supported on Oracle 9i lite database ? Or am I missing out something ??
    Any information/ help is appreaciated
    Thanks
    Neeraj

    You can't use SAVEPOINT / ROLLBACK TO SAVEPOINT statements in the database trigger:
    ORA-04092: cannot SET SAVEPOINT in a trigger
    ORA-04092: cannot ROLLBACK in a trigger
    I am not sure what you need exactly, but you can try this:
    Simulating ROLLBACK TO SAVEPOINT Behavior in a Database Trigger
    http://www.quest-pipelines.com/pipelines/plsql/tips02.htm#JUNE
    Regards,
    Zlatko Sirotic

  • Can we install Oracle 10g lite in HTC VIVA (T2223)

    hi,
    can we install oracle 10g lite in HTC viva... if so ...
    how to do it..
    regards,
    Deepak

    Looks like it has Windows Mobile 6.1. The answer is yes.
    Look at the following tutorial.
    http://download.oracle.com/docs/cd/B28928_01/doc/server.103/b28923/nvwcetu.htm

  • Installing Oracle 9i Lite on Pocket PC

    Only a couple of the executables seem to work right after I run the install. I keep getting errors about picking the application that will run them. Anyone else get this running? If someone has a better install and config doc than is in the Oracle doc, that would be even better. Thanks.

    Unfortunately, I have not yet installed Oracle 9i Lite on a Pocket PC. I also ran into some issues with the product.
    You may want to contact Oracle Corporation directly at [email protected] for detailed questions regarding Oracle9i Lite.
    Good Luck.

  • 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

  • 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

  • Oracle Lite database Standalone?

    Is it possible to install Oracle Lite Database on a Laptop without installing any Mobile Server. We just need a good database management system for the client, we don't need a Mobile Server.
    Maybe there are some other solutions from Oracle?!
    Regards Robert

    Oracle Lite requires an installed mobile server. The mobile server also requires a Oracle Database Standard (minimum). You need at least 5 oracle standard licences and 2 oracle lite licences (germany conditions).
    The Oracle Lite IS NOT a standalone database! A normal Oracle Database Server (Standard or better) is required to hold the repository. Simply start the lite server on a client device and connect to the lite server on this device would be wishful... but it is impossible. So you cannot use your preferred IDE/RAD/DB tools directly against this "database".

  • Oracle 9i Lite database size growing

    The database size on Oracle 9i Lite is increased.
    If I extract data and recreate database with them, volume can be reduced at 5-10 of time.
    Whether there are any other ways of reduction of the size? Some tools, or may be internal Java classes.

    Can i create the database without using the sync or the create db. Or programatically how do i create the database Check out the client side APIs, examples can be found in the documentation, see WINCE (PocketPC) Developer's Guide.
    RP.

  • Is it possible to use Oracle Forms 10g with Oracle 10g Lite Database?

    Hi All,
    We are in process of migrating our forms from 6i to 10g environment.
    We have two kinds of applications, one set run on general Oracle 11g database and the other set of forms run at the client machine using Oracle lite database.
    We dont have any problem with Forms 6i to connect to Lite database as it allows to connect through ODBC:DSN names. When we try to connect to a lite database (10gR3) from Forms 10g through ODBC/DSN, it's not allowing and throwing the below error.
    ORA-03121 : no interface driver connected - function not performed
    Can someone tell me if there is something wrong in our approach? Also advise how to use Oracle Lite database with Forms 10G.
    Sincerely,
    Praveen Manthena

    Hi,
    I have experience with 6i with lite database 10g. There are two version of lite database one is multi language support and other one in english. There lang problem in connectivity with multi language 10g lite database. I done connectivity with single language connectivity of 6i with 10g lite database. You should try this one with forms 10g.
    Regards,
    Naveed Ali

  • Connect Forms 6i application to Oracle 10g Lite database on notebook

    We are currently looking at mobilising one of our legacy systems. This application uses forms 6i. I have build the Olite Mobile Server and installed the olite database on a notebook. We have sucessfully synchonised from a 9i database to the Olite database on the notebook and have been able to validate the snapshot using msql
    when we try to connect to the olite database on the notebook using developer we get the following
    POL-5150 Access violation - Program attempted to access a database system table
    has anyone sucessfully connected forms 6i to an olite 10g database or know of someone who has.
    Thanks
    Sean

    I believe Oracle Lite is a non-SQLNET database and Forms can only connect via SQL*Net. If I am wrong and Oracle Lite can use SQL*Net I suggest you call Oracle Support and ask them to analyze your situation.

  • Oracle 9i lite database creation

    Can i create the database without using the sync or the create db. Or programatically how do i create the database

    Can i create the database without using the sync or the create db. Or programatically how do i create the database Check out the client side APIs, examples can be found in the documentation, see WINCE (PocketPC) Developer's Guide.
    RP.

  • 9i lite database written in Java?

    Is the Oracle 9i lite database entirely written in Java?

    We are interested too, we have Satellite Forms and having many problems for connect to Oracle Lite Database on Palm Device. If you have any other information
    for to do it, i will appreciate eternaly.
    Jorge
    [email protected]
    We are interested in installing the Oracle 9i Lite Database standalone for Windows 2000. Can you send me the instructions that you mentioned below in a previous response? In addition, I need to know the size of the database footprint.
    Thanks,
    Sarah
    [email protected]

  • Oracle 9i Lite/Sql Plus Installation Instructions?

    I am having the same problem with install Oracle 9i Lite. Really I need to get SQL PLUS up and running. I am installing it in Windows 98 and would like to use it on a stand alone pc/home pc.
    I ended up just installing sql plus without net8 and other mobile server components because I don't know what the port name and hostname is. I am just trying to get sql plus to work.
    After just installing sql plus, I get the same login username/password/host string. I think you can log in as SYSDBA or SYSOPER but what is the password and host string. I am not running sql plus from a server/internet I would like it to be stand alone. I know the host string has something to do with what type connection is being used but I don't have any (other than aol dial up connection) so I would just like to run sql on a stand alone pc!!! HELP!!
    Dionne

    Did your SQL*Plus install include create a database to connect to? I think a quick thing to check would be:
    Do you have a valid tnsnames.ora in $ORACLE_HOME\network\admin
    (address = is on one line)
    ie:
    orcl =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = orcl.localhost)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = orcl.localhost)
    Where orcl is the name of the database you want to connect
    to and local host is your machine. (Check Network configuration). If you are on a network you will replace with orcl.mynet.com
    I think for a standalone SQL install they might expect you are on a NetWork and have a database to connect to. Maybe
    you should download the whole install for standalone use...
    9i and 8.1.7 are available for download. (8.1.7 is a little smaller and doesn't require as much memory depending on your home system)
    I'm not even sure what you are trying to do. Please post more details if this doesn't help.

  • Oracle 9i lite installation on WIN NT

    Am trying to install 9i lite on NT. Am unsure what to put in for the Mobile Server Repository Database information. I assume that this is where my database will reside so I put down my localhost for hostname and named the service LOCAL. When the files has been installed, at the Mobile Server Repository Wizard page, when I try accessing it, it tells me unable to find listener. Does anyone have any advice? Would appreciate any help.
    THanks
    Jeremy

    Dear Siarhej,
    I read about the problem of Jeremy installing Oracle 9i lite on Win NT.
    I tried to do the same but on Windows 2000.
    My problem starts in understandin the terms used in the installation of 9i lite and the JDeveloper. I habe received them both on two in CD.
    I just want to test and learn developing a database and the jdeveloper suite to consider if this will be the right product for me.
    I have already developed a database for a shop on DOS with clarion 2.1 but always standalone and years ago.
    The system requirements in the documentation tells me about windows 2000 server which I don't have. I have only the windows 2000 desktop and want to start using oracle 9i lite but i think many of the things are missing or I didn't have been installed them because I haven't made the correct selections during the installation.
    You have written to send an installation guide by mail to Jeremy.
    Would you be son kind and send this instructions too to [email protected]
    Thank you in advance.
    Roland

  • 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

Maybe you are looking for

  • How to save the template with cell locking?

    Hi Gurus,      I have successfully locked the cell by using Data validation of Excel function in BPC input schedule. But when I save and reopen it once again the data validation does not work. My target is to distribute the cell locked template to di

  • Monitor on off button

    The on-off button popped out.  Tell me how to put it back in.

  • Questions & answer type powerbuilder 12.5.2 classic tutorial

    Dear All, Can anybody give me any web link / tutorial / e-book regarding powerbuilder 12.5.2 classic where the information represented as questions & answer type. Thanks Avishek

  • Color Picker has the Button skin

    Hey guys, I'm using some Color Pickers in my application. I also use mx buttons in some places so I've created a css style for these which includes some bitmap graphics as well. The problem is that the color picker has the skin of my mx button even t

  • Can someone help with a div that pops up when you hover over a button?

    I made a div that pops up (stacked on the rest of the page) when you hover over a button (gigs). It works in the safari preview but when I test it online it doesn't. It's above the logo instead of blocking it and on the left site instead of the right