User Setup in Oracle 8i Lite

I installed Oracle 8i lite 4.0 on Win98. I used SYSTEM user to
create additional User using SQL*Plus. I assigned DDL Role to
user and gave all grants (select, delete, update) on all objects
of POLITE database to the new user. But when login as new user,
I can not select data from the sample tables of POLITE. Like:
SELECT * FROM EMP;
It gives the message as object does not exists. Any help ?
Thanks
null

I saw the table EMP is under the owner of SYSTEM.
Try to use 'Select * from system.EMP;'
regards,
Barry
Andrew (guest) wrote:
: Brinder,
: Who is the owner of the tables? If the owner of the tables is
: User SCOTT and you wanted the User TIGER to have access to them
: then you would have to grant privileges to them as you have
: done. Because TIGER is not the owner of the tables, you need
to
: know where to find the tables. You should be able to access
the
: tables by preceding the tablename with the schema name (e.g.
: SCOTT.EMP) or you could create a SYNONYM for the tables in
: SCOTT's schema into your schema (e.g create synonym TIGER.EMP
: for SCOTT.EMP).
: Regards.
: Brinder (guest) wrote:
: : I installed Oracle 8i lite 4.0 on Win98. I used SYSTEM user
to
: : create additional User using SQL*Plus. I assigned DDL Role to
: : user and gave all grants (select, delete, update) on all
: objects
: : of POLITE database to the new user. But when login as new
: user,
: : I can not select data from the sample tables of POLITE. Like:
: : SELECT * FROM EMP;
: : It gives the message as object does not exists. Any help ?
: : Thanks
null

Similar Messages

  • Oracle 9i Lite on Win98 and EPOC (Psion 5mx)

    Hi,
    I've tried several times to setup up Oracle 9i lite on my Psion
    5mx.
    Obviously there are several new files and new icons. But
    I experience problems
    1/when I try to launch OKDemo, I have a not found message.
    2/When I use MySQL and create a new DB, I have a Kern-exec level
    3 error.
    3/When I try msync, I have a User level 23 error
    4/When I launch aptdata, I've a not supported error message.
    I still don't understand how to set up the desktop (Win98se) as
    well.
    Thanks for advice.

    I use this manual to install over suse 8.2 professional. maybe can help you.
    http://linux.oreillynet.com/pub/a/linux/2003/09/04/oracle_install.html

  • Oracle 8i Lite - OO4O and other Questions

    1.) Can OO4O (Oracle Objects for OLE) be used with the Oracle 8i Lite database ?
    2.) Does Oracle 8i Lite operate as a "client/server" database ?
    3.) Is it possible to have multi-user access to Oracle 8i Lite ?
    4.) Is there documentation somewhere that lists all of the limitations with 8i Lite as compared to 8i ?
    We are in the planning stages of a partial mobile system, and want to know how much difference in development efforts for the 2 platforms (Oracle 8i on Win 2000 server and Oracle 8i Lite on NT/98/95 Laptops).
    Any information on Oracle 8i Lite would be appreciated. -- Especially need an answer to question 1 right now.
    Thanks,
    Paula

    Hi,
    I am qouting below from the oracle 8i Lite documentation which says it supports triggers . Please clarify.
    Oracle Lite DBMS
    Oracle Lite DBMS is a lightweight (50KB - 750KB), Java enabled database designed from the ground up for laptops, handheld computers, PDAs and smartphones. It supports industry standard ODBC, JDBC, SQLJ, and Java Stored Procedures and Triggers. It provides a streaming fast "C" interface, OKAPI, to its object kernel. It also supports Java Access Classes, JAC, a fast and easy way to make Java Objects persistent. Oracle Lite DBMS now supports all popular mobile platforms, including Palm OS, EPOC, and Windows CE, letting you deploy enterprise applications on virtually any mobile device.
    Regards
    null

  • 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 9i lite connection with a Java Client

    Hi,
    I would like to connect a Java Client developed using PersonalJava edition for PDA with an Oracle 9i lite version which is also on PDA.
    I would like to know is it possible to connect such a client (Java) using some JDBC drivers on PDA.
    if yes please do suggest a suitable driver and some input tips as to how to connect a GUI developed in Java directly to Oracle on PDA.
    I am not too sure whether some web/application server is required in the whole setup.
    because in N-Tier Architecture we have a middle layer of Application /Web servers in between a client screen(usually a Browser) and Database.
    but I am not aware weather it is possible to directly connect Java Swing or Client application as I mentioned above developed using Personal edition with a database using only some driver software but no other middle ware component in between.i.e forming a 2 tier client server model.
    please do let me know your valuable suggestions at [email protected]
    thanks,
    Ashish

    I connect to the database through the same user that created those tables. Do I still need a public synonym ?

  • Some doubt regarding oracle 9i lite

    Hai,
    I am doing R @ D on 9i lite. My scenario is as follows,
    1. first i installed oracle 8i 8.1.7 database.
    2. using oracle 9i lite 5.0.2 setup, In another machine instllaing mobile server and mobile development kit.
    3. how to synchronize the 9i lite database with my 8i database.
    My scenario is i need to create a standalone mobile server environment.
    help me.

    Your environment is older versions than we use, but the basic process for creating oracle lite client databases synchronised with the main server database is as follows
    1) install the mobile server following the installation guide.
    This will create the mobile server repository (schema MOBILEADMIN) and application on the app server or standalone. For production the repository data would normally be a seperate schema in the main database, and the mobile application running on one of the app servers
    2) next you need to create your 'application'.
    This consists of defining the tables or views from the main system you want to be able to synchronise with the offline clients. If you are just starting, the easiest way is to use the wtgpack wizard that comes as a part of the development kit. Start this up, create an application name, specify the client environment it will be going to (eg: WIN 32 or PPC2003) do the connection to the main server schema, select a table from the main system you want to synchronise, and take it through to publish
    For the first go to see it working i would advise keeping it simple and just picking a small table, and set the refresh option to complete, with server wins in the conflict resolution. Once you have got things working, you can then go back and add other tables and start to look at using thre data subsetting to select only data relevant to a particular client, fast refresh options, and using views from the main system as the basis for the snapshots (in 5.0.2 i would avoid sequences)
    3) when the application is published, start up the mobile manager tool
    you should now be able to see the application you created, and the publication items (the tables that will be synchrionised). You now need to go to users and create a user and associate them with the application
    4) set up client device
    on a device of the type you want to synchrionse with (we use PDAs), go into IE, and enter the mobile server URL/webtogo/setup. This will give a list of the downloadable clients. Pick the appropriate one and follow the install instructions, using the user/password set up above
    5) synchronise
    on the client device run the msync utility. This will ask you for the user name/password and the server url, enter these and press the sync button and two datyabase files (.odb) should be created on the client - a control one concli, and one with the same name as your application. The client set up should have also installed a utility msql that you can use to look at the new local database

  • 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 8i Lite Installation

    I have downloaded Oracle 8i Lite V4 from the Oracle Website and
    just tried to install it on my PC running Windows NT V4 and it
    failed.
    I ran the setup program and the Oracle Lite Installer started
    up. After I entered in my Oracle Home, the Installer fails with
    the following message "user.stp(352): PERMISSION_DENIED while
    modifying CLASSPATH in $". Any ideas or suggestion on what to
    do would be appreciated?
    Thanks and regards.
    null

    Bruce,
    Thanks. I'm new to NT. I checked with my Administrator and
    that was the case.
    Bruce Nordstrand (guest) wrote:
    : Andrew Chin (guest) wrote:
    : : I have downloaded Oracle 8i Lite V4 from the Oracle Website
    and
    : : just tried to install it on my PC running Windows NT V4 and
    it
    : : failed.
    : : I ran the setup program and the Oracle Lite Installer
    started
    : : up. After I entered in my Oracle Home, the Installer fails
    : with
    : : the following message "user.stp(352): PERMISSION_DENIED
    while
    : : modifying CLASSPATH in $". Any ideas or suggestion on what
    to
    : : do would be appreciated?
    : : Thanks and regards.
    : Just a thought, but do you have administrator rights for your
    : login?
    : Regards
    : Bruce
    null

  • Available Now: Oracle Database Lite 10g Release 1

    The Oracle Database Lite development team is pleased to announce the availability of Oracle Database Lite 10g (10.0.0.0.0) for Windows 2000/XP, Solaris 2.6, 2.7, 2.8, and Red Hat Enterprise Linux AS/ES 2.1/3.0 platforms.
    The Windows release is currently available from OTN at:
    http://www.oracle.com/technology/software/products/lite/index.html
    Oracle Database Lite 10g is a complete and integrated solution for rapid development and deployment of high impact, mission vital applications for mobile and lightweight embedded environments. Oracle Database Lite is an extension to Oracle Database 10g for enterprises wanting to increase productivity, reduce operational costs, and improve customer satisfaction.
    Oracle Database Lite uses data synchronization to reliably and securely exchange data between a corporate Oracle Database and mobile workers. Oracle Database Lite also allows companies to deploy and manage users, mobile applications and devices from a remote central location. Oracle Database Lite provides the necessary framework enterprise customers need to extend their enterprise applications and data to the most popular mobile platforms: Palm OS, Linux, Microsoft Windows CE/PPC, and Microsoft Windows NT/2000/XP/UNIX.
    The following is a partial list of new features for Oracle Database Lite 10g that will make your mobile deployment easier to manage, use, and develop. A complete list will be available for download/viewing soon.
    Device Management
    As the number of mobile devices in an enterprise increases, it becomes more important to have complete control of the devices. Oracle Database Lite Device Management is a complete infrastructure to monitor and manage Oracle Database Lite assets such as database files, software libraries, data, and application files on remote devices. Device management decreases the total cost of ownership and protects an enterprises intellectual property.
    Single Oracle Lite Binary
    The Oracle Database Lite 10g release contains a single set of Oracle Lite database kernel binaries for all languages, removing the necessity of having different binaries for each of the following languages: Korean, Traditional Chinese, simplified Chinese, Japanese, and US/European languages.
    Shared Map
    The shared map function greatly improves performance by reducing sync processing timeand enhances the scalability of shared publication items. Shared maps allow users to share record state information and reduce the size of the resulting replication map tables.
    Offline Instantiation
    Offline instantiation enables quick and easy setup of mobile devices for business applications. Mobile administrators are able to prepare, in batch mode, a client package, which includes the mobile client software and initial data for every mobile user. This procedure helps users avoid an expensive online synchronization processes as part of the first time mobile client setup procedure.
    Synchronization Manager
    The Synchronization Manager is a complete, web-based enterprise management application to manage and monitor synchronization. The Synchronization Manager allows administrators to manage the synchronization service, monitor and analyze sync performance, administer the configuration, trace synchronization history, display and browse synchronization publication and subscription information, and monitor MGP (Message Generator and Processor) performance.
    Oracle Application Server Support
    The Oracle Database Lite 10g Mobile Server now runs as a web application on Oracle Containers for Java (OC4J) – the runtime of Oracle Application Server. If Oracle
    Database Lite 10g is deployed in standalone mode, an embedded version of OC4J will be installed and used. Oracle Database Lite may also be installed against an existing instance of Oracle Application Server.
    Seamless upgrade from Oracle9 i Lite 5.0.2
    The Oracle Database Lite 10g Upgrade Assistant allows customers to easily upgrade from existing Oracle9 i Lite 5.0.2 installations. The Upgrade Assistant automatically converts existing application definitions to the new format, and copies all relevant files to the new installation. As many customers have deployed mission critical systems using Oracle9i Lite technology, the Upgrade Assistant has been designed to minimize system downtime.
    Download
    Oracle Database Lite 10g (10.0.0.0.0) for Windows can now be downloaded from the following location.
    http://www.oracle.com/technology/software/products/lite/index.html

    I am using Oracle 10g lite. Do you know if it supports silent installation.

  • How do I create a db in Oracle 9i Lite?

    I have used Oracle 8i Lite on handheld computers in a replicated environment for quite some time now. I am in the middle of setting up a demo tablet computer, but since Oracle 8i Lite is no longer downloadable from the Oracle website, I instead downloaded 9iLite. When I went to install it, my options were Mobile Server and Mobile Development Kit. I went ahead and followed the install wizard without choosing either one of these two options, thinking I would just get the plain Oracle Lite database environment. After the install completed successfully, I went to look for Oracle Navigator and where the Polite.odb was located, but no where do these two items seem to be installed (or copied to).
    Somewhere in this forum, a person posted that 9iLite needs 8iLite to be installed already in order to use the basic database functionality. Is this the case? Is there anyway to create a database using my create table script for all the tables in my db. I could see that SQL Plus is installed, which is the app I used to run the script in 8iLite.... but you already need a database to log into in order to run SQL Plus.
    How do I create a database in Oracle 9iLite.
    Your help is greatly appreciated.
    PS: I am somewhat in a hurry, since my demo unit needs to be done by the end of the weekend..... I really did not anticipate this trouble with 9iLite.

    Sure but you break the license, or forgive me and a did a mistake
    3.2 Oracle Database XE Installation and Execution Restrictions
    On a single computer, only one installation of the Oracle Database XE software can be performed. This does not affect any existing installation or new installations of Oracle Database 10 g Standard Edition, Oracle Database 10 g Standard Edition One, or Oracle Database 10 g Enterprise Edition. In addition, users can run only one instance of the Oracle Database XE database on each individual computer. To run more than one Oracle Database server instance or install more than one copy of the database software, upgrade to Oracle Database 10 g Standard Edition, Oracle Database 10 g Standard Edition One, or Oracle Database 10 g Enterprise Edition.
    http://www.oracle.com/technetwork/products/express-edition/downloads/toc-090217.html#BABIECJA
    regards
    Peter

  • Oracle 8i Lite: logging to sql plus - uid, password, host string - whats that

    If i install "Oracle 8i Lite" (just locally, not networked). There are two important things : "Navigator", and "SQL Plus". If in navigator, I create a local database called "xxx" (tables under 'system' user). Then if i need to query - i go to SQL Plus. Fine, but how do we log in - what is the "host string" ?.
    The login needs, Userid, Password, Host String. In some docs, it said the userid, password for 'system' account is 'system, manager' respectively. Anyways, now the host string , i had read the 'host string' will be like "@databasename", so I think for me, it will be "@xxx"
    But the way, I'm understing, i cant log, and SQL Plus says something "TNS: could not resolve service name". Maybe i have to something with that tnsnames.ora file....?
    Incase, you could give ANY information, kindly inform.
    Thanks
    null

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Mulyadi Kurniawan ([email protected]):
    Host string usually refers to the host string that is stored in your TNSNAMES.ORA file. You can open TNSNAMES.ORA with a text editor.
    If you get "TNS: could not resolve service name", it's either you have not start the database or your configuration in TNSNAMES.ORA is wrong.<HR></BLOCKQUOTE>
    hi,
    iam getting the same error(the TNS thing)can you be a bit more explaining regarding how to solve the problem.
    thanks
    null

  • Oracle 8i Lite - No listener

    Hi.
    I've just installed Oracle 8i Lite. When I try to access my database using Sql Plus, I got the message No listener. If I take a look at my services (under Windows 2000 Pro), there's nothing like Oracle.. :(
    I dont even have a file named "lsnrctl*.*" on my system. I've try to reformat my system, then reinstall Oracle 8i Lite and the same thing happens... Am I missing something or what? Thanks for any help. I really have to test this before we plan to buy a lot of licence for or mobile users. Thanks.
    null

    hello,
    when you start your sqlplus program you just type system for username,manager for password,odbc:polite for host string and you can go in..
    good luck
    can you do a favour to me.can you tell me how oracle8ilite works with mobile if i have a mobile phone and an oracle lite database.

  • Oracle 8i Lite: TNS error (ORA-12203)

    Hi,
    I Have Installed oracle 8i Lite for win 98/and palm operating system on a WIN 98 , pentium III machine. THE INSTALLATION IS SMOOTH. I am able to see the database and users through the Oracle Navigator. But when i try to connect through sql*plus i get
    TNS-12203 TNS:unable to connect to destination error
    1)How to find whether oracle services are runnong or not?
    2)how to start listener on this 8i lite
    3)I have also tried creating service name with bequath protocol
    nothing works
    Pls Help. Any lead is appreciated

    Hi
    Your oracle database and forms are installed on different oracle home so when you configurate your sql net that time you are configurating only your oracle database. So for form you must be having different oracle home. you cand change thid from start/oracle inatallation products/home selecter. so change our home and run the form. and if still having problem than check for tnsnames.ora file you must be having two files and both must be having right configuration.
    thanks

  • Oracle 8i Lite Synchronizatoin Problem--Very Crucial and Urgent

    Currently,we are using Oracle 8i lite Version Release 4.0.1 in
    our project.
    Following is the problem we are facing during Web-To-Go
    Synchronization.
    We have published about 200 snapshots of tables on the Web-to-go
    server.
    After Installing the Web-to-Go Client,
    the first time we went Offline, both the webtogo.odb and the
    user odb got downloaded to the client's machine.
    the size of user odb was about 10.7 MB containing 200
    snapshots,without any data and the application about 15 MB.
    We checked up the odb using plus80 and verified that all the
    tables have been created(200 snapshots+200 snapshot logs).
    Once we went Online , a memory/application error (illegal
    operation,unable to access memory) was displayed.The m1 file
    also remained in the client's machine.
    Basically the synchronization fails from client to server.
    Everytime the synchronization is fine,if the odb needs to be
    created freshly,but once created and synchronized,the same error
    is displayed.
    We tried publishing with a reduced no of tables,and it went on
    fine with both offline and online up to a size 8.28MB,with
    about 152 tables.
    An increase of even 10 KB by an addition of 2 more tables,gives
    out the same error.
    The limit on the no of snapshots is specified as 256 per refresh
    group.
    We are using only 200 as of now and that should be ok.
    Please let us know the possible reasons for such kind of a
    problem.
    Let us know in case of any other clarification regarding the
    problem.
    Is there any limitation or requirement at the client site,w.rt
    memory?
    Pls Help
    Meena.

    Sanjay Kumar M.C. (guest) wrote:
    : Hi,
    : I had downloaded Oracle 8i Lite for NT (approx. 105 MB),
    zip
    : files data around 3 times and each time I get the error
    message
    : that the zip archive is corrupted . Is it the problem with the
    : archive at the Oracle site.
    : Can anybody help me to get the installable data set?
    : Regards
    : Sanjay
    Hi
    I experienced the same problem.
    I have downloaded the file segments for oracle 8iLite and had
    run the batch file.
    And it worked.
    Thanks!
    null

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

Maybe you are looking for

  • How do I change the order of mail accounts in the side bar?

    It seems to me this should be fairly simple but I can't figure out how to do it. That is, I just added a new account and it went to the bottom of my list, and I want it near the top.

  • Photoshop merged my layers for me, can I recover

    I exported a project as a pdf by clicking Save As under the file menu, then I saved the original psd by choosing Save As again and selecting PSD this time.  When I came back to the project today all the layers had been merged into one.  I _never_ mer

  • Problem with APDUCommand in javax.smartcardio

    Hi, There seem to be a bug (from my point of view) with the javax.smartcardio when i attempt to send a command over to the card. There a code frag factory = TerminalFactory.getDefault();         try {             terminals = factory.terminals().list(

  • Error in importing technology in topology by local agent

    Hi , I am trying to import technology using following command Startcmd OdiImportObject -WORK_REP_NAME=<<Work repo name>> -IMPORT_MODE=SYNONYM_INSERT -FILE_NAME=<<TECH_Informix.xml>> Note: localAgent is in running mode. But i am getting error like : [

  • Connecting to sybase

    Hi, Could someone help me with this problem. I am trying to copy data from sybase to oracle. The table structures(contains long datatype) for the two db are similar. But when i try using the copy command in sqlplus, i get the error message:end of com