Suggest me software to make nice in Oracle BI.

My system specification

RAM: 4 GB

Operating system-Windows 7 Service Pack 1

Type of system - 64 bit

Free space - 31.5 GB

Database-Oracle Database 11g Enterprise Edition Release 11.1.0.6.0

FYI

I'm not able to install some Applications Oracle Business Intelligence 11.1.1.7 in my local computer.

If you can suggest me the

  1. What is the required software that must install before installing Oracle BI?
  2. Where should I install RCU, server or local computer?
  3. Which one should be installed from http://www.oracle.com/technetwork/middleware/bi-enterprise-edition/downloads/bus-intelligence-11g-165436.html
  4. Where should I install Oracle BI server or local computer?

Thanks in advance

Installation Guide is provided by Oracle to tell you everything you need to know:http://docs.oracle.com/cd/E28280_01/bi.1111/e16518/toc.htm. It meets each of the question you asked, if you follow from beginning to end.

1. you're looking for an installed JDK and an Oracle DB of metadata repositories.

2. the remote control can be installed anywhere where it can access the Oracle database that you will use for the meta-data repositories.

3. you must install the Oracle Business Intelligence 11 g (you can choose the version - last is 11.1.1.7) and the client developer tools.

4. you can install OBIEE on your local computer for use test / personal. But of course if he's finally going to be an a great enterprise system installation, you need to have it on a server so that other users can access it!

But please, follow the guide I posted above because the installation is simple enough just click on install and wait until it ends.

Thank you

GEO

Tags: Business Intelligence

Similar Questions

  • I get a saying of popup, that I need to install software to make sure that my browser is the latest version, but I already have firefox 28.0 and I am bit suspicious.

    I just started having this extra window that says: "RECOMMENDED updates! It is recommended to install the software to make sure that your browser is the latest version. Please update to continue. "The link says: Rvzr - a.akamaihd.NET. I'm a little reluctant to touch anything because it never happened. In addition, I've doubled checked and my firefox is 28.0 isn't up-to-date. I even re-downloaded firefox to ensure, and I always get the pop-up window.

    You're smart to be wary. You can check to see if an unnoticed add-on slipped? In particular, I suggest disable all non-essential or unrecognized extensions on page modules. Either:

    • Command + shift + a
    • Tools menu > Modules

    In the left column, click Extensions. Then, when in doubt, turn off.

    Typically, a link will appear above at least an extension disabled to restart Firefox. You can complete your work on the tab and click one of the links in the last step.

    That get rid of the nagging dialog boxes?

  • Oracle software for integrated security of oracle 10g

    Hi experts

    What software is required to Setup oracle failsafe on 10g on windows 2003

    He separated liecense and Extractor for infallible oracle?

    Please suggest.

    Thank you in advance

    http://www.Oracle.com/technetwork/database/Windows/downloads/failsafe-downloads-167740.html

  • How can I make the ERP Oracle connection same powers as company IDs?

    Hello

    I have to run business with Oracle ERP authentication authentication.

    We have the same credentials for our company interrnal (Gmail and Helpdesk, Jira) Portal, but we have different credentials (username and password) for ERP, as these two password are kept in two separate systems.

    Please suggest me how can I do ERP Oracle qualifications from the society Gmail (AD) identification information so that if we change the passowrd of gmail, then with the same password society we should be able to connect to oracle ERP.

    We are unable to perform such a LDAP authentication through recommonded EBS with SSO and OID integration solution. As for the SSO and the OID, we will require OAM, who is the licensed version. We are 8000 + employees and it will be a huge cost to society. So we dropped this idea.

    Our idea is the following:

    We will define a password hardcoded to the LES for all users to identify the user is a valid user for Oracle EBS.

    When click on Login , happen internal authentication LDAP that identify this same password hardcoded as a password valid internally and then the user is able to see the Oracle ERP homescreen.

    Please suggest me how can I do the LDAP using the OPS (JDeveloper 10.1.3.3.0) authentication.

    Is it possible to do this?

    Assume that POC, we have 2 fields username and password, and properly integrate into our company AD, this means that if I put my AD company credentials, it should allow me to login in there.

    Please suggest how can I do this? is there an API for it? Also suggest me another possible solution for ERP Oracle credentials identical to that of AD.

    Kind regards

    Monika

    Hi Monika,

    First to write all your calls of dbms_ldap in the procedure a pl/sql. Do not call dbms_ldap api functions separately in java.

    Didn't test it, but it should work.

    1 Wrrite a pl/sql package. You can also add create api user.

    create or replace package apps.xxanil_pkg as
    
        function authenticate(p_dn in varchar2, p_password in varchar2 ) return varchar2;
    
        function password_operation ( username varchar2, newpassword varchar2 ) return varchar2;
    
    end;                      
    
    /
    
    create or replace package body apps.xxanil_pkg as
    
        function authenticate(p_dn in varchar2, p_password in varchar2 ) return varchar2 is
            l_ldap_port   number        := 389; --ldap port
            l_ldap_host   varchar2(100) := '';
            l_out         varchar2(1);
    
            l_retval      pls_integer;
            l_retval2     pls_integer;
            l_session     dbms_ldap.session; 
    
            l_string      varchar2(256);
    
            my_attrs     dbms_ldap.string_collection;
            my_message   dbms_ldap.message;
            my_dn        varchar2(256);
            my_entry     dbms_ldap.message;
            x_retval     pls_integer;
            x_dn         varchar2(256);
    
            ldap_base     varchar2(256):= '';
            l_admin_dn    varchar2(256):= '';
            l_admin_pass  varchar2(256):= '';
        begin
            if p_password is null then
                return 'N';
            end if;
    
            l_retval                    := -1;
            dbms_ldap.use_exception     := true;       
    
            begin
                l_session   := dbms_ldap.init( l_ldap_host , l_ldap_port );
                l_retval    := dbms_ldap.simple_bind_s( l_session, l_admin_dn, l_admin_pass );
                my_attrs(1) := 'distinguishedName';
                x_retval    := dbms_ldap.search_s( l_session, ldap_base,  dbms_ldap.scope_subtree, 'sAMAccountName='||p_dn ,my_attrs , 0, my_message);
                my_entry    := dbms_ldap.first_entry(l_session, my_message);
                my_dn       := DBMS_LDAP.get_dn( l_session, my_entry );
                l_retval2   := dbms_ldap.unbind_s( l_session );
                if my_dn is not null then
                   x_dn := my_dn;
                end if;
            exception when others then
                x_dn := null;
            end;      
    
            begin
                l_session       := dbms_ldap.init( l_ldap_host , l_ldap_port );
                l_retval        := dbms_ldap.simple_bind_s( l_session, x_dn, p_password );
                l_retval2       := dbms_ldap.unbind_s( l_session );
                l_out := 'Y';
            exception when others then
                l_retval2       := dbms_ldap.unbind_s( l_session );
                l_out := 'N';
            end;  
    
            if l_out = 'Y' then
                return 'Y';
            end if;            
    
            return 'N';
        exception when others then
            return 'N';
        end;
    
        function password_operation ( username varchar2, newpassword varchar2 ) return varchar2 is
            l_result                    boolean;
            l_out                       varchar2(1) :='N';
            l_user_exist                varchar2(1);
            l_user_password_correct     varchar2(1);
        begin
    
            select decode(count(*),0,'N','Y') into l_user_exist from fnd_user where user_name = username ;
    
            if l_user_exist = 'Y' then  -- user exists
    
                l_user_password_correct := fnd_web_sec.validate_login(username,newpassword);
                if l_user_password_correct = 'N' then  -- user exists but password is wrong. change the password
    
                    l_result := fnd_user_pkg.changepassword(username,  newpassword );
                    commit;
    
                    if l_result then
                        l_out := 'Y';
                    else
                        l_out := 'N';
                    end if;
    
                else -- user exists, password is correct, do nothing
                    l_out := 'N';
                end if;
    
            else -- user not exists. create user here
                null;
            end if;  
    
            return l_out;
        exception when others then
            l_out := 'E';
            return l_out;
        end;   
    
    end;                      
    

    2. decompile LoginCO.class and add after the code before "hashmap.put ("username", s1);". Launch OAExceptions if any statement that may be called by error occurs.

    OAApplicationModule am = oapagecontext.getApplicationModule(oawebbean);
    OADBTransaction txn = am.getOADBTransaction();
    
    CallableStatement csLdap = null;
    String ldapResult =null;
    String sqlldap = "Begin :1 := APPS.xxanil_pkg.authenticate(:2, :3); End;";
    csLdap = txn.createCallableStatement(sqlldap, 1);
    try {
      csLdap.registerOutParameter(1, Types.VARCHAR);
      csLdap.setString(2, s1);
      csLdap.setString(3, s2);
      csLdap.execute();
      ldapResult = csLdap.getString(1);
    } catch (SQLException e) {
      //throw OAException here, cut the process
    } finally {
      try {
      if (cs != null)
      cs.close();
      } catch (SQLException e) {
      //throw OAException here, cut the process
      }
    }
    
    if("Y".equals(ldapResult)) {
      CallableStatement cs = null;
      String result =null;
      String sql = "Begin :1 := APPS.xxanil_pkg.password_operation(:2, :3); End;";
      cs = txn.createCallableStatement(sql, 1);
      try {
      cs.registerOutParameter(1, Types.VARCHAR);
      cs.setString(2, s1);
      cs.setString(3, s2);
      cs.execute();
      result = cs.getString(1);
      } catch (SQLException e) {
      //throw OAException here, cut the process
      } finally {
      try {
      if (cs != null)
      cs.close();
      } catch (SQLException e) {
      //throw OAException here, cut the process
      }
      }
    }
    

    Kind regards

    Anil

  • I want to buy adobe where I can save and print in PDF format, also check out files, editing files etc... I also want to have photoshop when I can make nice ads and brochures.  Which plan is for me? Thank you.

    I want to buy adobe where I can save and print in PDF format, also check out files, editing files etc... I also want to have photoshop when I can make nice ads and brochures.  Which plan is for me? Thank you.

    Hi mirelas80826977,

    As you search for the Acrobat application and two Photoshop then either you can go for separate program Adobe Document Cloud programs and CC photography

    or go for the Creative individual cloud program

    View all rates and details here:

    Plans and prices. Adobe Acrobat DC

    Pricing plans and creative Cloud membership | Adobe Creative Cloud

    Thank you

    Abhishek

  • Apple Watch stopped monitoring activities (walking, movement, etc.) suggestions on how to make. I have already reset my phone and watch and which did not help.

    all of the suggestions!

    Hi loulou

    Try the following steps:

    • On your iPhone, go to: settings > privacy > Motion & Fitness - check that fitness and health monitoring are enabled.
    • On your iPhone in the app shows, go to: My Watch (tab) > General > detection of wrist - make sure it's open.
    • On your iPhone, in the application of the watch, go to: Watch My > privacy > Motion & Fitness - Fitness Tracking off turn (or, if it is currently disabled).
    • Restart both devices in two turn off together, and then restart your iPhone first:
      • To turn off your iPhone: press and hold the sleep/wake button until the Red slider appears. slide it to turn off. To restart, press and hold the sleep/wake button.
      • To turn off your watch: press and hold the button side until you see the cursor off the power; slide it to turn off. To reactivate: press and hold the side button until you see the Apple logo.
    • If you disabled fitness in step 3, now go back to the configuration and turn it back on.
  • my laptop freezes and won't do anything that I should stop with the power button of the suggestions on how to make it work again

    When I turn on my laptop (dell inspiron 1525, windows vista) it freezes and won't do anything even ctrl alt del work nothing I went back and in SafeMode system restore and run antivirus scans and registry fix also uninstalled no recent data again, nothing don't market it please help I need laptop for school

    Hello

    1 have you done any recent software or the hardware changes on your computer?

    2. are you able to boot to the desktop in normal mode?

    Method 1:

    If you are not able to boot into normal mode, then I suggest you to start in safe mode and perform the clean boot.

    How to troubleshoot a problem by performing a clean boot in Windows Vista or Windows 7 http://support.microsoft.com/kb/929135

    Note: when you are finished troubleshooting, follow step 7 article to start on normal startup.

    Method 2:

    I also suggest you to disconnect all external devices and then try to start.

    See also:

    Island of the Windows recovery environment (WinRE) Windows Vista, 7, Server 2008, Server 2008 R2 ve'yi kurtarmak

    http://blogs.technet.com/b/bulentozkir/archive/2009/12/29/Windows-recovery-environment-WinRE-Ile-Windows-Vista-7-Server-2008-ve-Server-2008-R2-Yi-kurtarmak.aspx

  • What is the best software to make book covers?

    I want to learn how to make professional eBook and print the covers of books. What software is best for who?

    But it is possible to do it with Photoshop and InDesign if you do not, or did not learn Illustrator.  Build your objects such as shape layers and save as EPS files.  That said, I eally I should take some time and learn Illustrator.

  • Good software to make a font?

    I did a search here, but the last thing that appears is from 2003.

    Anyone know of any good software I can make fonts with? This is my first attempt and I want something free or cheap just to see how I like it.

    Thank you!

    Here are your options. Note that some commercial applications have a free demo version, but the limitations of the demo can be too big for your needs.

    Forge of fonts: open source, free. Not all that easy to use, don't use standard OS user interface controls. Powerful enough and done a lot. A very good choice if you're a technogeeks with lots of time and zero money.

    TypeTool: $99, the "low end" tool from the creators of FontLab Studio, same interface etcetera. Probably your best choice if you might want to take seriously, even if it's not terribly easy to use.

    FontCreator: $99. They claim massive popularity for her, but I've only heard of one or two people using it in the type community. No comment on the quality or the interface.

    Fontographer: $349, relatively easy to use.

    FontLab Studio: $649, not so easy to use, but incredibly powerful. The tool used by > 90% of professionals and hardcore font developers.

    CorelDraw can technically be used to make the fonts, but I wouldn't bother unless you already have a copy, what makes 'free' your POV. Even then... ick. It's like eating soup with a fork. You can do it... type of.

    Kind regards

    T

  • Make case-insensitive oracle database

    Hi all

    I use oracle 10g EE that my front end and database backend is in c# .NET. I want to make my oracle database to perform any case comparison insensibly. I searched the net and found several ways to achieve

    1. use the upper function in procedures - cannot afford
    2. order of the function - cannot afford
    3. setting session parameters

    ALTER SESSION SET NLS_COMP = ANSI;
    ALTER SESSION SET NLS_SORT = BINARY_CI;

    The 3rd is promising and can save a lot of time. I have several question

    1 is there a way I can adjust these settings in .NET?
    2 is it possible I can set both and will do only my case insensitive database?

    any link, reference is very appreciated.

    Thank you

    You can create a unique index of the feature based on this column to avoid that these records.

    I don't see that should be case-insensitive database here.

  • What is the best software to make incredible photos on my iMac

    My operating system is OS X and El Capitan version 10.11.6 processor 3.2 GHz Intel core i5 with 8 GB of memory graphics 1867 MHz DDR3 AMD Radeon R9 M390 2048 MB. Trying to find a decent software that will allow you to create and manipulate photos. Anyone know of a program that won't cost a fortune and can do this kind of things?

    Try Hydra - beautiful HDR Imaging

  • my windows media play player music differentlly all a sudden.it sounds a bit like the chipmunks. Anyone have any suggestions on how to make it normal again?

    all of a sudden my music somewhat sounds like the chipmunks. A few days ago, it was beautiful, but now is not. its windows media player 11. any suggestions on how to fix this?

    all of a sudden my music somewhat sounds like the chipmunks. A few days ago, it was beautiful, but now is not. its windows media player 11. any suggestions on how to fix this?

    ==============================
    Sounds like Chipmunks...

    If you have a Realtek Audio Driver...
    This can be caused by the karaoke
    settings in Realtek Sound Effect Manager.

    Go to the control panel and open Sound
    Effect of Manager / sound effect tab...
    Karaoke set to + 0

    More info...

    Using the sound effect Manager
    http://h10025.www1.HP.com/ewfrf/wc/document?LC=en&DLC=en&cc=us&DocName=c00377375

    The card Realtek HD Audio Driver user manual
    http://UK.TS.Fujitsu.com/RL/servicesupport/TechSupport/boards/soundcards/RealTekHDA/hd_audio_driver_usermanualver1-00_0418-05 [1] .pdf

    Why my music sounds like chipmunks sing?
    Troubleshooting Audio playback in Windows Media Player problems
    http://www.cybernetman.com/kb/index.cfm/fuseaction/home.viewArticles/articleid/96

  • trasferring a book of 130 pg in video. PGS contain text drawings transistions & audios ARE in place. You put each where it belongs. 25 successfully accomplished of the GSP. I move audio to pg 26, the system stops suggest another software.

    Director of Windows 2.1

    Director of Windows 2.1

    =================================
    If your project includes still shots and audio...
    PhotoStory 3 can be a better application:

    PhotoStory 3 for Windows
    http://www.Microsoft.com/windowsxp/using/digitalphotography/Photostory/default.mspx

    Sounds like a question of resources of the system or audio
    file may be incompatible with Movie Maker.

    Several formats are apparently compatible with
    Movie Maker, but the most reliable choices are:

    Photos - bmp
    Video - wmv or dv - avi
    Music - wmv, wma, wav

    Might be interesting to try to create several small
    projects and save each of them in .wmv or DV - AVI
    format, and then reimport the finished collection
    video files in Movie Maker and combine them into
    the final movie.

    John Inzer - MS - MVP - digital media experience

  • HOW to TRANSLATE OTHER languages English EBOOKS suggest some software as software for converting fb2 files in the form of text

    software for translete ebooks in English also for converting fb2 files in pdf or txt format

    Hi VASANTHIM,

    You try to read a book in ebook online?

    If all you're trying to read in the ebook online you can serach for the English version of ebook online using your favourtie search engine.

    Or

    You can also use Bing translator to translate any language to English from this link.

    http://www.microsofttranslator.com/

    To convert fb2 shaped pdf or text files, you can favorite your search engine and download any third-party software converter to translate.

    Hope the helps of information. Please post back and we do know.

    Concerning
    Joel S
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Are there 3rd party software to make .mov movies in Vista or windows7

    I have too many clips in .mov to convert to the Director of windows .avi format. Are there 3rd party software that works on windows 7 available for download?

    Hello

    You can use your favorite search engine and find the conversion program that converts . clips from MOV to convert to .avi format.

    Note: Using third-party software, including hardware drivers can cause serious problems that may prevent your computer from starting properly. Microsoft cannot guarantee that problems resulting from the use of third-party software can be solved. Software using third party is at your own risk.

Maybe you are looking for