Date functions in Oracle 8i Lite

When i am trying to type in the following command in my win98 o/s:
select to_char(to_date('01-jul-1997','dd-mon-yyyy'),'day ww')from dual
My sql*plus returns the following error message:
OCA-30021: error preparing/executing SQL statement
[POL-2423] invalid value for date/time field
However, I can run this statement under the 8i lite WINNT environment. I want to know whether this is due to limitation of 8i lite running on Win98 or there is some problem with my configuration of Oracle 8i?
null

This syntax doesn't work.Do you mean it hurls an exception or just doesn't return the expected result? Please describe the expected and actual behaviour, with error messages if appropriate. Because it ought to work...
SQL> select * from dds;
        ID SDATE     EDATE
         1 11-FEB-06 11-MAR-06
         2 06-APR-06 11-APR-06
         3 11-APR-06 11-MAY-06
SQL> set serveroutput on
SQL> declare
  2    d1 date := trunc(sysdate, 'MM');
  3    d2 date := last_day(sysdate);
  4  begin
  5    for r in ( select * from dds
  6               where sdate >= d1 and edate <= d2 )
  7    loop
  8       dbms_output.put_line(r.id||'::'||r.sdate||'::'||r.edate);
  9    end loop;
10  end;
11  /
2::06-APR-06::11-APR-06
PL/SQL procedure successfully completed.
SQL> Cheers, APC

Similar Messages

  • Raw to date function in oracle

    Hi..
    I would like to know the details and usage of Raw to date function in oracle database.Could some one let me know the function details?

    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> set serveroutput on
    SQL> DECLARE
      2   rv RAW(32) := '786B060818023A';
      3   dt DATE := NULL;
      4  BEGIN
      5    dbms_stats.convert_raw_value(rv, dt);
      6    dbms_output.put_line(TO_CHAR(dt, 'DD-MON-YYYY'));
      7  END;
      8  /
    08-JUN-2007
    PL/SQL procedure successfully completed.
    SQL>Regards,
    Jo
    PS: This is not my own example. I don't recollect the link I got this example from. Will post the link if I come across it again. I think its www.psoug.org (not sure)

  • Convert Date function to oracle

    The follwoing Sql for Sqlserver, what is the equivalent function in oracle. Need help on this.
    YTD:
    YOUR_DATE_FIELD between DATEADD(yy,
    DATEDIFF(yy,0,@Prompt('BEGIN_DATE','D',,mono,free)), 0) AND
    @Prompt('END_DATE','D',,mono,free)
    MTD:
    YOUR_DATE_FIELD between DATEADD(mm, DATEDIFF(mm, 0,
    ,@Prompt('BEGIN_DATE','D',,mono,free)), 0) AND
    @Prompt('END_DATE','D',,mono,free)
    WTD
    YOUR_DATE_FIELD between (,@Prompt('BEGIN_DATE','D',,mono,free) -
    DATEPART(dw, ,@Prompt('BEGIN_DATE','D',,mono,free)))+1 AND
    @Prompt('END_DATE','D',,mono,free)

    Extracting month,year,day from sysdate (You may even opt to use to_char)
    SQL> select extract (month from sysdate) from dual;
    EXTRACT(MONTHFROMSYSDATE)
                            4
    SQL> select extract (year from sysdate) from dual;
    EXTRACT(YEARFROMSYSDATE)
                        2007
    SQL> select extract (day from sysdate) from dual;
    EXTRACT(DAYFROMSYSDATE)
                          5
    Adding 5 days to today's date
    SQL> select sysdate + 5 from dual;
    SYSDATE+5
    10-APR-07
    Adding Months
    SQL> select add_months(sysdate,3) from dual;
    ADD_MONTH
    05-JUL-07
    Date Difference
    SQL> select sysdate - to_date('01/04/2007','dd/mm/yyyy') from dual;
    SYSDATE-TO_DATE('01/04/2007','DD/MM/YYYY')
                                    4.42670139
    Date Difference
    SQL> select trunc(sysdate) - trunc(to_date('01/04/2007','dd/mm/yyyy')) from dual
    TRUNC(SYSDATE)-TRUNC(TO_DATE('01/04/2007','DD/MM/YYYY'))
                                                           4
    SQL>

  • Date functions in Oracle

    Hello
    I need to rewrite the following sql I used in MSSQL server to sql for Oracle:
    declare @lastmo_start datetime,
         @lastmo_end datetime
    select @lastmo_start = dateadd(month, -1, getdate())
    select @lastmo_end= dateadd(day, -1, getdate())
    Basically I need to declare 2 variables and then set those values to the first day of the month and the last day of the same month.I will use these variables later in my script.
    How I can do this in Oracle?
    Thank you,
    Lena

    This syntax doesn't work.Do you mean it hurls an exception or just doesn't return the expected result? Please describe the expected and actual behaviour, with error messages if appropriate. Because it ought to work...
    SQL> select * from dds;
            ID SDATE     EDATE
             1 11-FEB-06 11-MAR-06
             2 06-APR-06 11-APR-06
             3 11-APR-06 11-MAY-06
    SQL> set serveroutput on
    SQL> declare
      2    d1 date := trunc(sysdate, 'MM');
      3    d2 date := last_day(sysdate);
      4  begin
      5    for r in ( select * from dds
      6               where sdate >= d1 and edate <= d2 )
      7    loop
      8       dbms_output.put_line(r.id||'::'||r.sdate||'::'||r.edate);
      9    end loop;
    10  end;
    11  /
    2::06-APR-06::11-APR-06
    PL/SQL procedure successfully completed.
    SQL> Cheers, APC

  • JDBC2 support for Oracle 8i Lite

    Hi,
    I was just wondering if the JDBC driver included with Oracle 8i Lite supports JDBC2, and if not, is there a newer version that does (I couldn't find anything on the downloads page).
    Thanks,
    Raj.

    Just wondering if any one has been able to write a CodeWarrior project that connects to a database through ODBC. I've been having problems compiling my CodeWarrior project file. I am trying to use my existing code which connects to a DB2 Everywhere database, but instead replacing it with an Oracle 8i Lite database.
    If any one has had experience with this, e-mail me at [email protected]
    Thanks for your help.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Alvin Chin ([email protected]):
    Mark,
    The SQL functions being undefined in my C file are as follows:
    SQLAllocEnv
    SQLAllocConnect
    SQLFreeEnv
    SQLConnect
    SQLFreeEnv
    SQLFreeConnect
    SQLAllocStmt
    SQLDisconnect
    SQLPrepare
    SQLBindParameter
    SQLExecute
    SQLFetch
    SQLGetData
    SQLFreeStmt
    Is it a correct assumption that since I used these ODBC functions from DB2 Everywhere (which were in the DB2e library and header files), that I can still use these functions with Oracle 8i Lite? Isn't the ODBC API for Oracle Lite standard for all ODBC applications? Or does Oracle Lite implement these differently. What header files and library files am I missing?
    I tried to do a search for the SQLAllocEnv function and the only files that contain this are:
    sqlapi.h
    odbc.h
    odbc.lib
    olod2040.lib
    olsql40.lib
    I tried to include the olod2040.lib and olsql40.lib files but I after compiling, I got "illegal file object data'.
    So what files am I missing in order to compile?
    Thanks.
    <HR></BLOCKQUOTE>
    null

  • Imbed Date Function????

    Hi,
    I am having trouble with a date function in Oracle Administrator. How do I make max_date a condition (for a case statement)? I am trying to return a value (a ranking) for the most recent ranking date.
    Ie:
    Case
    When Date = Max --I know you can use a Max(date) function but 
    and (another condition) --how do you make that a condition within case
    Then (return value) -- statement?
    Else 0
    End
    Is this a case where I have to import an Oracle Function? Or can I get around this by using a pre-existing function?

    Multiple posting
    Date Function - Holiday?

  • Using R function on Oracle data base

    for using R, I only can use Oracle data mining algorithms or I can use R function like social network in Oracle data base?

    Oracle Advanced Analytics provides multiple language (SQL, R and if we include GUIs, Oracle Data Miner workflow UI) support to the in-DB analytics. Using SQL, R or the ODM'r GUI, you can access a library of simple descriptive, summary and coparative statistics that have been implemented in the Oracle Database + a dozen hi-perf in-DB data mining algorithms (e.g. regression, decision trees, text mining, clustering, associations, anomaly detection, etc.) and solve a wide range of business and technical problems.
    Should you require additional techniques e.g. R CRAN packages, then Oracle Advanced Analytics supports that through R to SQL transparancy where it "pushes down" R language intentions to matching in-DB SQL functions e.g. ETL, stats and data mining OR it can make a callout to R via "embedded R mode" and have the Database manage the flow of data and the process.
    There is an OTN Discussion Forum that focuses entirely on the "R" aspects of the Oracle Advanced Analytics Option. I suggest that you re-post your questiion here R Technologies for additional discusssions and for the benefit of that Oracle Advanced Analytics/Oracle R Enterprise OTN forum/community.
    cb

  • Problem sync Satellite Forms data with Oracle 8i Lite through iConnect Consolidator.

    I receive following exception in the hotsync log:
    java.lang.Exception: Compose raw metadata not implemented for SMSE
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at oracle.lite.sync.palm.SMRL4PRecord.composeRawMetaData(SMRL4PRecord.java:126)
    at oracle.lite.sync.HeliosSession.<init>(Compiled Code)
    at oracle.lite.sync.HotSyncSession.RunTime(Compiled Code)
    OK Oracle with 1 message(s)
    This is when I after installed the satellite forms performes a sync.
    I use PalmV with PalmOS 3.3, performes the sync with HotSync through iConnect Consolidator for Oracle 8i Lite 4.0.0.2.0
    In the Satellite Forms App Designer I have check the Oracle Lite option in the property form.
    This happends for both the sample forms and the one I have created.
    I use the Satellite Form 3.0 beta 2, is there a new release and where can I find it ?
    Anyone with any ideas to solve this ?
    Thanks in advance !
    /Patrik

    Hello Patrik,
    Did you resolved this problem ? I have the same error message. Please, let me know what i can do.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Patrik Strid ():
    I receive following exception in the hotsync log:
    java.lang.Exception: Compose raw metadata not implemented for SMSE
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at oracle.lite.sync.palm.SMRL4PRecord.composeRawMetaData(SMRL4PRecord.java:126)
    at oracle.lite.sync.HeliosSession.<init>(Compiled Code)
    at oracle.lite.sync.HotSyncSession.RunTime(Compiled Code)
    OK Oracle with 1 message(s)
    <HR></BLOCKQUOTE>
    null

  • Storing Foreign Characters in oracle 9i Lite Client Database.

    Hi All,
    My Database configuration Is
    RDBMS VERSION 9.0.1.1.1
    NLS_CHARACTERSET AL32UTF8
    NLS_NCHAR_CHARACTERSET AL16UTF16
    NLS_LANGUAGE AMERICAN
    NLS_TERRITORY AMERICA
    Operating System Windows 2000
    My Oracle Lite configuration Is
    Oracle9i Lite Release 5.0.2.0.8
    Client Locations:
    Africa,Europe,Asia,America
    Currently all clients store data only in English in the client odb either through java and oracle forms applications.
    We want to now store data for some specific tables, in the clients own language.Also we should be able to retrieve that data and see that data as it was entered.
    For example :
    The client in china after downloading the odb should be able to enter the data for that specific tables in the Chinese language.(They use windows 2000/XP English version).
    1. What are the settings i need to do in the client environment?
    like installing Chinese font or setting NLS_LANG parameter etc...
    2. What are the settings i need to do in the server environment?
    Because there should not be any loss of any data or junk values getting stored instead of actual values entered by clients.
    Also when i query that specific tables in the oracle database after synchronization i should be able to view that data entered by the clients in their own language.
    Eg:data entered by china clients should be visible in chinese fonts,
    data entered by brazil clients should be visible in brazilian fonts,
    data entered by vietnam clients should be visible in vietnamese fonts.
    3. will there be any synchronization issues when clients try to sync after data entry with
    their own languages?
    Please do advice on these issue...........

    I have given you the info of how to set up Oracle Lite for UTF8. I can only point you in the direction for globalization on the enterprise server. Also note that Oracle Lite only support NLS_LENGHT_SEMANTICS=BYTE, your EE database will be CHAR, so you have to alter the session paramter before you create the repository and/or publish your application.
    Here is a Oracle Document on Globalization:
    http://www.oracle.com/technology/tech/globalization/pdf/TWP_AppDev_Unicode_10gR2.pdf
    Here is what Oracle Lite's Developers Guide has on development of linguistic sorts:
    2.11 Support for Linguistic Sort
    Linguistic sort is a feature for the ASCII version of Oracle Database Lite. It produces culturally acceptable order of strings for a specified language or collation sequence. The ASCII version supports several code pages defined by single-byte 8-bit encoding schemes. Each of these code pages is a super set of 7-bit ASCII, and the additional accented characters necessary to support a group of European languages are included in the upper 128 bytes. A new string comparison mechanism is provided that produces strings in a linguistically correct order by mapping each collation element of a string to the corresponding 8-bit value of the supported code page.
    2.11.1 Creating Linguistic Sort Enabled Databases
    The linguistic sort capability must be enabled when the database is created using the CREATEDB command line utility with the <collation_sequence> enabled.
    Note:
    For more information on the CREATEDB utility, see Section A.2, "CREATEDB".
    The behavior of the ORDER_BY clause and the WHERE condition are determined by how the NLS_SORT parameter is implemented. Binary sorting is the default setting, and is used unless the <collation_sequence> parameter is set to use the linguistic sort ordering rules.
    NLSRT is not supported in the current version of Oracle Database Lite. Therefore, NCHAR data type is not yet available.
    2.11.2 How Collation Works
    Collation refers to ordering of strings into a culturally acceptable sequence. A collation sequence is a sequence of all collation elements from an alphabet from smallest collation order to the largest. Once a collation sequence is given, orders of all strings from the same alphabet are fixed. As such, the collation sequence encodes the linguistic requirements on collation. A collation element is the smallest sub-string that can be used by the comparison function to determine the order of two strings.
    2.11.3 Collation Element Examples
    Normally, a collation element is just one character. In binary sorting, only one property, the code value that represents a character, is used. But in linguistic sorting, usually three properties. The primary level of difference is the base character. The secondary level of difference is for diacritical marks on a given base character. The tertiary level of difference is for the case of a given character. Punctuation can function as a fourth level of difference, but comparisons for punctuation occur last and are made at the binary rather than the linguistic level. These are used for each collation element. The following sections contain examples that demonstrate sorting priorities.
    2.11.3.1 Sorting Normal Characters
    This section lists a set of examples that describe how to sort normal characters.
    Example 1
    'a' < 'b'. There is a primary difference between them on the character level.
    Example 2
    'À' > 'a'. This difference occurs on the secondary level. Note that 'À'and 'a' are considered "equal" on the primary level.
    Example 3
    'À' < 'à' in FRENCH but 'À' > 'à' in GERMAN. This difference on the tertiary level. Note that 'À' and 'à' are considered being "equal" on the primary and secondary level. Also note that the case convention may be different for different language.
    Example 4
    'às' < 'at'. This is a difference on the primary level. This example shows the role of difference levels: the lower level differences are ignored if there is a primary level difference anywhere in the strings.
    Example 5
    '+data' < '-data' <'data' <'data-'. If strings are compared and present no difference on the primary, secondary, or tertiary levels, they are compared for punctuation.
    2.11.3.2 Reverse Sorting of French Accents
    Some languages, particularly French, require words to be ordered on the secondary level according to the last accent difference. This behavior is known as French secondary sorting or French accent ordering.
    Example
    'côte' < 'coté' in FRENCH but 'coté' < 'côte' in GERMAN. Note that the secondary difference of 'e' and 'é' occurred later than those of 'ô' and 'o'.
    2.11.3.3 Sorting Contracting Characters
    There are some special cases where two or more characters in a group can function as a single collation element. These types of collation elements are called 'contracting characters' or 'group characters'. In these cases each of these characters properties are assigned appropriate values.
    Example
    'h' < 'ch' < 'i' in XCZECH. Here 'ch' is assigned a primary property value which differentiates it from 'h' and 'i', such that 'h' < 'ch' < 'i'. Note that 'ch' is treated as a single character.
    2.11.3.4 Sorting Expanding Characters
    If a letter sorts as if it were a sequence of more than one letter, it is called an 'expanding character'. For example, in German the sharp s (ß) is treated as if it were a string of two characters 'ss' when comparing with other letters.
    2.11.3.5 Sorting Numeric Characters
    Only sorting of single digit characters from '0' to '9' is currently supported. For the supported European languages a digit character is always sorted as greater than any alphabetic character. For other languages this may be not the same. Other numeric characters such as Roman numeric characters and counting sequences, such as "one", "two", "three", are not supported at this time.
    Example
    '1' > 'z' in any European language, '1' < 'a' in LATVIAN. Note that this difference occurs on the primary level.

  • 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

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

  • Oracle Database Lite API Specification JDBC

    Hello.
    I would like to create a schema with Oracle Database Lite API Specification.
    I have done a script to create an application in the Mobile Server in this way:
    "Platform p = new Platform("WINCE_ARMV4_US_OLITE_STD42");"
    "Application app = new Application(nombre_app, ruta_virtual_app, p);"
    And using ConsolidatorManager for the conection:
    "ConsolidatorManager cm = new ConsolidatorManager();"
    "cm.openConnection(user, password, dir_repository);"
    But after that, I can't get the application. Could you help me, please?
    Thank you.
    With best regards.

    Is this subscription parameter causing a problem?
    unless the subscription parameter name is referenced in the select statements for any of the publication item definitions, it will be ignored by the processing as the subsetting parameters are just used to supply values for bind variables at query time
    If you have other valid subsetting parameters for the user, then try (if all your set up is done via APIs and you do not have an APPLICATION, only a PUBLICATION, this may not work)
    1) go into the mobile manager > users
    2) search for user name, and click on the link under the user name
    3) go to subsetting parameters and pick a valid one
    4) select the data and do cntrl C cntrl V (cut and paste)
    5) press the save button
    The above has the effect of resetting the user account, and refreshes sequence values, c$all_client_items etc.
    If you can do the above steps, but this does not remove the subsetting variable, you should be able to go to it and set the value to NULL
    I do not think that there is a delete function due to the dependancy to the select statements which would be complex to validate

  • Data Federator Universe Date Functions

    Hi,
    I created a Data Federator Universe from target tables (Source Tables from: Sql Server 2005 and Oracle 10g). Now, I want to create a object in the universe: "Days between 2 dates"(coming from 2 different target tables). I don't see any other date functions other than CURDATE(). How to create my object?
    Alternatively, Can I create a caliculated column in the existing target table? For Example, I want to create a new column "Days between 2 Dates" from 2 different tables by using a formula in Default mapping of the target table.
    Thanks & Regards,
    Peter

    Hi Amit,
    Thanks for your reply.
    Ok. So, Universe on top of Data Federator has limited functionality.
    And, other option you mentioned is on report level. I am creating an adhoc universe and I have few objects which will calculate days between 2 dates coming from 2 different tables.
    But, how can I achieve this on Data Federator level. I have no function there to find Days Between 2 dates. I see lot of time and date functions but not the one I required. Also, I added a column in the target table and tried to apply the formula there in the default mapping area. But, I see only the selected target table. I need another date column from another table, which is not displayed in the default mapping area.
    How can I achieve this?
    Regards,
    -Peter

  • 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

  • Error while installing Oracle Database Lite 10.2.0.1.1 for Win

    Hello,
    I am trying to install Oracle Database Lite 10.2.0.1.1 on Windows XP. I am going according screens on this page:
    http://www.oraclebrains.com/2008/07/installing-oracle-database-lite-10g-release-3-mobile-server/
    But at Step:12 - Mobile Server repository Wizzard after password enter I get error --- Io exception: The Network Adapter could not establish the connection. May I insert specific password for Username SYSTEM? Or where is problem?
    Thanks for hint
    David

    Hi,
    I have the same problem but, how can i know what my SID is ? i am trying with "ORCL" and it doesnt work.
    Do you know in which file i can get it ? in the documentation of the installation i found this:
    "If you are not sure of the values to enter for the URL, then you can query the data dictionary to obtain these values.
    Connect as SYSTEM and run the following queries.
    To retrieve the SID, execute: select instance_name from v$instance;
    If you need to retrieve the port number, check the listener.ora file on the
    back-end database."
    But how can i query the database if i have not finished to install it yet and where is located the listener.ora file ?
    I hope you can help me.
    Thank you.

Maybe you are looking for

  • I am unable to copy or Sync songs from my iTunes library to my iPhone

    I took a new IPhone 5 on the 2nd Nov in India; I am unable to copy or Sync songs from my iTunes library to my iPhone ( The IPhone symbol appears on my ITunes screen , But when I drag the songs my library to IPhone I am unable to Sync songs ) Can anyo

  • "no drive found" installing w 8.1 on SSD on Flex 2 15

    Dears, I've been going crazy for 1 week, trying and trying everything to make a clean installation of Windows 8.1 64bit on an SSD I bought for my Flex 2 15. I've read thousands of pages of forums, changed 3 different SSDs, but nothing was successfull

  • How do I transfer from one computer to another?

    Good afternoon. I just purchased a new computer with the new iweb 09. My website is up and running and was created with my mac air computer. Now I want to transfer the air file to my desktop iweb program. Your assistance would be very much appreciate

  • Can't download remote files with Adobe AIR

    Hi all, I have an adobe AIR application that tries to allow the user to directly download a remote file. Here's the current code: var fileRef:FileReference = new FileReference(); // Bunch of Event listeners here var urlReq:URLRequest = new URLRequest

  • Need to consolidate based on non leading ledger using EC-CS

    Hi Guys I have a issue, our leading ledger for various company code is based on local GAAP and the non leading ledger is based on US GAAP for the all the company codes Now we are in the process of implementing consolidation using EC-CS Consolidation