10g Lite with OBIEE

Does anyone know if I can use 10g lite as the datasource for OBIEE and use the sample SH schema if it is a implemention option? I am trying to get the SH schema into 10g XE to go along with the existing HR sample schema but have not found anything on it so now I am trying 10g Lite.
Thanks for your response.
Ryan

Just taking a quick glance at OBIEE, it looks like it uses ODBC. If that is the case, then you might be able to set something up.

Similar Messages

  • 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

  • Connecting SQL Analysis Services 2005 cube with obiee 10g

    Hello experts,
    I'm trying to link an SQL Analysis Services 2005 cube with obiee 10g.
    In Oracle BI Administration, when I choose File -> Import -> From
    Multi-dimensional, I have to fill the next gaps:
    Provider Type: Analysis Services 2005
    URL: ***********
    User: blank
    Password: blank
    Before to do that, I need to create the URL path.
    To create the URL, I have followed this link.
    http://erpthings.blogspot.com/2008/08/obiee-connection-to-msas-2005-
    cube.html
    But, it hasn't worked because when I was trying to configure the HTTP
    access to SQL Server 2005 Analysis Services, we have to perform a test to ensure that it has been well configured. In IIS -> WebSites -> Default WebSites -> olap, we should browse the document called "msmdpump.dll" and this should show an xml document, but it doesn't.
    Thanks!

    Hi Alex
    It sounds like your MS data pump might not be configured correctly. First ensure that is working before trying to put the values into OBIEE. Don't worry about the 500 error - I get that too instead of an XML page.
    You can read a bit more about SSAS support on my blog here:
    http://total-bi.com/2010/12/obiee-sql-server-analysis-services-cubes/
    Here's the link to Microsoft's description of setting up msmdpump.dll
    http://technet.microsoft.com/en-us/library/cc917711.aspx
    Paul

  • Forms6i connectivity with oracle 10g Lite Edition

    Dear Sir,
    how to connect forms6i with oracle 10g lite edition
    Can you tell me the step by step procedure?
    Regards
    Mukesh Sharma

    Hello,
    look at this thread: connecting form 6i  to oracle database 10G express edition
    and this one: Re: Forms 6i on Oracle 10g UTF8 - Problem solved
    If my answer is helpful, please click on helpful/correct. :)

  • 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

  • Forms 6i or forms 10g connectivity with oracle 10g Lite

    Hi,
    We have install oracle 10g lite db on our PC (Windows XP professional), but we are unable to connect to forms 6i and report 6i.
    Can you please tell us how can we connect oracle 10g lite db to forms & reports 6i?
    Thanks
    Omprakash

    Welcome to the OTN Forums. Before posting anything else, please read the following:
    http://blogs.oracle.com/shay/2007/03/02/

  • Oracle 10g Lite Mobile Devices

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

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

  • Oracle forms & reports support on oracle 10g lite

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

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

  • Oracle Database 10g Lite -- SYNC Error

    Hi,
    I am Using Oracle Database 10g Lite.While doing the Sync Process With the Mobile Server i am getting following error message in my Ol_SYNC.log file
    "SUCCESS",0,"03/09/2009 18:02:36","","New2008"
    "ERROR",POL-3011,"03/10/2009 12:27:54","a device read error was detected:",""
    "SUCCESS",0,"03/10/2009 13:20:12","","New2008"
    What i did is ....
    First I Download the Client New2008 from Mobile Server
    Second I done some DML operation in that Downloaded File (in the forms of *.odb and *.obs)
    Third I start to SYNC that Client "NEW2008"
    Sync process is web based only .....
    after the SYNC process Completed i got the log off Screen in MY Internet Explorer
    i always check the ol_sync.log file for the confirmation( about the SYNC) and i got the error message in that file as mentioned above.
    Error is Releated what ?
    Any Advice
    Thanks
    SHAN

    See if following OTN forum thread helps...
    Re: POL-3011/3012 when database is on SD Card.

  • Oracle 10g Lite

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

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

  • Oracle 10g Lite Product Information

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

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

  • Oracle 10g Lite for WinCE availability

    Anyone know when 10g Lite will be released for WinCE.

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

  • Oracle 10g Lite Review

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

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

  • Oracle 10g Lite Packaging Wizard

    I need to publish an application with WTGPACK.exe packing applocation. The document that comes with Oracle 10g Lite is doesn't match the GUI. Does anyone have instructions on how to publish an application using Oracle 10g Lite?

    You may have figured this out, but your connection string is invalid:
    jdbc:oracle:thin@my_server:1521:my _DSN
    The correct string would be jdbc:oracle:thin:@my_server:1521:<SID>
    Hope this helps.

  • Rdf file with obiee works???

    hi,
    Does rdf file of ebs suite works with obiee 10g? If it works, can anyone explain it?

    Hi,
    http://catb.org/esr/faqs/smart-questions.html#beprecise
    Waht do you mean by a .rdf-file. I guess it's a Reports Definition File?
    Please ask your questions once!
    Thanks
    Daan Bakboord
    http://obibb.wordpress.com

Maybe you are looking for

  • Error Message when installing Companion CD for HTMLDB 1.6 and HTTP Server

    Hi. First time forum user so bear with me. I'm not sure if this is the correct forum for this but the assistance of anyone who may be able to shed some light on the problem whould be greatly appreciated. I am having a problem when attempting to insta

  • Error when double clicking a timeline clip

    Hello, I'm editing a movie on the latest and legal version of Mac's Premiere Pro CC. I began working on various projects and some days ago I merged them into one. Now, when I double click a timeline clip to preview or modify the in/out point of it an

  • Transfer from itouch to computer

    how do i copy all my music from my old itouch to the computer/itunes so i can put it on my new itouch

  • MM implementation and configuration steps

    I am doing my first MM implementation project, just want to know about the correct sequence of the steps involved. What to do first and what to do next, please guide me. I know the process just want to know the sequence involved in configuration impl

  • Number range based on change type

    Gurus, In SAP PLM "Engineering Change Management", my requirement is to have couple of INTERNAL change numbers defined and they should be generated based on the change type. That mean, for change type "ZAAA", first internal number range(00001 to 4999