OBIEE executable filenames

Hi,
Does anyone know of the main executable filename(s) for Oracle Business Intelligence Enterprise Edition?
I want to use a sniffer tool that will detect when OBIEE is installed/running in my environment and I need to be able to identify whether an exe file is related to OBIEE.
Thanks!
Ellice

Hi Ellice,
Oracle Business Intelligence Enterprise Edition (OBIEE) makes use of services:
eg.
-- Windows
net start "Oracle BI Server"
net start "Oracle BI Presentation Server"
net start "Oracle BI Java Host"
net start "Oracle BI Scheduler"
-- Unix/Linux
Server- & Presentation Services     
/usr/local/OracleBI/setup
Start Server     ./run-sa.sh start
Start Presentation ./run-saw.sh start
Start Scheduler ./run-sch.sh start
Hope this helps.
Kind Regards,
Daan Bakboord

Similar Messages

  • OBIEE EXECUTE PHYSICAL sql as Data Model Query

    The following SQL was generated using OBIEE. I'd like to use it as the SQL query for my data model. It works fine it I hard code all of the values into the where clase. However when I attempt to pass parameter values (:ACCOUNTING_PERIOD & :FISCAL_YEAR) into the below SQL statement, I get an error and the report will not generate. The error is the typical "The report can't be rendered. Check with your administrator". Any ideas on how I can pass parameter values into this SQL?
    EXECUTE PHYSICAL CONNECTION POOL SDEVDW SELECT A.BUSINESS_UNIT,A.PROJECT_ID,A.PROJECT_STATUS,A.EFFDT FROM SPSDW.PS_PROJECT_STATUS A WHERE A.EFFDT = (SELECT MAX(B.EFFDT) FROM SPSDW.PS_PROJECT_STATUS B WHERE B.BUSINESS_UNIT = A.BUSINESS_UNIT AND B.PROJECT_ID = A.PROJECT_ID AND B.PROJECT_STATUS<>'C' AND B.EFFDT <= (SELECT PPERIOD_END_DT FROM SPSDW.PS_D_DET_PERIOD WHERE PPERIOD_CD = 6 AND PYEAR_NUM = 2008 AND DT_PATTERN_CD = '01' AND SRC_SYS_ID = 'FSCM')
    ) ORDER BY 1,2,3

    I turned on debug and bounded OC4J. After I ran the report, I did not see any link.
    The error that returns is:
    "The report cannot be rendered because of an error, please contact the administrator."
    Where will the link be located. Is there are log file that I can review. We are using BI Publisher enterprise (10.1.3.3.0).

  • OBIEE execute stored procedure to load tables before running report

    Hi..
    I want to execute a stored procedure to load database tables before running a report in OBIEE .
    I need to pass 2 parameters to the stored procedure which loads into tables.
    In the Connection Pool --> Connection Script Tab --> Execute before query, I wrote the below query using the repository variables VAR1 & VAR2 to execute the
    DECLARE VAR1 number; VAR2 number;
    BEGIN
    schema_name.package_name1.package_body('VALUE OF(VAR1)', 'VALUE OF(VAR2)'); COMMIT;
    schema_name.package_name2.package_body('VALUE OF(VAR1)', 'VALUE OF(VAR2)'); COMMIT;
    END;
    I am receiving the following error to declare the schema_name.package_name
    +++Administrator:2a0000:2a0004:----2010/06/21 14:29:00
    -------------------- Sending query to database named ACBS-OCC (id: <<49419>>):
    BEGIN schema_name.package_name1.package_body1('VALUE OF(VAR1', 'VALUE OF(VAR2'); COMMIT; schema_name.package_name2.package_body2('VALUE OF(VAR1)', 'VALUE OF(VAR2)'); COMMIT;END;
    +++Administrator:2a0000:2a0004:----2010/06/21 14:29:00
    -------------------- Query Status: Query Failed: [nQSError: 16001] ODBC error state: S1000 code: 6550 message: [Oracle][ODBC][Ora]ORA-06550: line 1, column 7:
    PLS-00201: identifier 'SCHEMA_NAME.PACKAGE_NAME1' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    ORA-06550: line 1, column 93:
    PLS-00201: identifier 'SCHEMA_NAME.PACKAGE_NAME2' must be declared
    ORA-06550: line 1, column 93:
    PL/SQL: Statement ignored.
    [nQSError: 16015] SQL statement execution failed.
    Please suggest how to declare and execute the stored procedure.
    Thanks in advance.

    Hi,
    I know that any Function / Procedure needs to be called using a EVALUATE function in OBIEE.
    Thanks,
    Vijay

  • Switch Executive error: -1074126826

    The following error occasionally occurs when executing a Disconnect All TestStand step, Switch Executive:"Filename",Connect/Disconnect.
    I Need a solution
    Error, Error executing substep 'Post'. An error occurred calling 'RunStep' in 'ISubstep' of 'TestStand Ivi Step Types' An error occurred while executing the step. Unexpected Error: Switch Executive failed to initialize for virtual device 'NLAWQAT_Rev01'. Details: NLAWQAT_Rev01_init returned an error: -1074126826 (0x%3). Source: TSIviStepTypes [Error Code: -1074126826, User-defined error code.]

    Hi Ken,
       does this occur if this switch is simulated too?
    That error can sometimes point to a timeout error in trying to connect to the device itself.
    Is there anything else going on at that point?
    Does it occur even if you step your way through the sequence?
    Does it ever occur on a cut down sequence?
    You say a "Disconnect All" step. Do you mean you have a step type that does this (i.e. the IVI-C switch step type) or you have this set on the switching tab of another step type (i.e. using switch executive)?
    What version of TestStand are you using?
    What is the model and manufacturer of the switch? Can you provide the driver install for that switch?
    Does it happen in the sequence editor, the operator interface or both? If both, which one does it happen in more?
    Which IVI compliance package do you have installed, and what's your version of VISA.
    Any other information you think is pertinent would also help.
    Thanks
    Sacha Emery
    National Instruments (UK)
    // it takes almost no time to rate an answer

  • Capturing OBIEE Performance Monitor - Counters

    Is there a place the counters displayed on the performance monitoring page in OBIEE is captured or can it be read so that we can see some trending on the cache usage?
    Thank you in advance for any help.

    The DMS counters are not captured anywhere.
    You can access them using OPMN or WLST, and capture them using your own tools.
    This post lists your options with more details: http://www.rittmanmead.com/2013/03/performance-and-obiee-execute-and-measure/ (under "OBI Metrics")

  • Problem with outer join with filter on join column

    Hi,
    In physical layer I have one dimension and two facts, and there's an outer join between the facts.
    dim_DATE ,
    fact_1 ,
    fact_2
    Joins:
    dim_DATE inner join fact_1 on dim_DATE.DATE = fact_1.DATE
    fact_1 left outer join fact_2 on fact_1.DATE = fact_2.DATE and fact_1.SOME_ID = fact_2.SOME_ID
    When I run a report with a date as a filter, OBIEE executes "optimized" physical SQL:
    select fact1.X, fact2.Y
    from
    Fact_1 left outer join on fact_1.DATE = fact_2.DATE and fact_1.SOME_ID = fact_2.SOME_ID
    where Fact_1.DATE = TO_DATE('2009-05-28' , 'YYYY-MM-DD' )
    and  Fact_2.DATE = TO_DATE('2009-05-28' , 'YYYY-MM-DD')
    The filter on Fact_2.DATE effectively replaces outer join with inner.
    Is there a way to disable this "optimization", which is actually very good for inner joins, but doesn't allow outer joins?
    Thanks in advance,
    Alex
    Edited by: AM_1 on Aug 11, 2009 8:20 AM

    If you want to perform a Fact-based partitioning with OBIEE (two fact with the same dimension), you have to :
    * create in your physical layer for each fact table the joins with the dimension
    * create in the Business Model layer ONE star schema with ONE logical fact table containing the columns of your two physical fact table
    In this way when you choose minimal one column of your fact1 and one column of your fact2, OBIEE will perform two query against each fact table/dimension, join them with an OUTER JOIN and your problem will disappear.
    Cheers
    Nico

  • Can I install Windows 7 without the disk?

    I can download Windows 7 through my college, so I won't get the disk, is it possible to install through Boot Camp without the 7 disk?

    They are both right. Hatter's reply would be perfect if you were at a college or university that provides Windows 7 to students through a site license. Some schools provide the physical media - a bootable installer DVD. Other schools provide a download of a special installer package usually in the form of a Windows executable - filename.EXE. Unfortunately, you cannot use it on a Mac. You have to run it on a Windows computer in order to extract the ISO disc image. Some schools can just provide you with the ISO disc image. Once you have the ISO image on your Mac you can burn it to a blank DVD-R that can be used to install Windows 7 on your Boot Camp partition.
    An alternative to Boot Camp is to use Parallels, or VM Fusion, or VirtualBox to create a virtualization of Windows on the Mac that runs concurrently with OS X. You also have the advantage that VM software will install Windows from the ISO disc image instead of needing it burned to a DVD. VirtualBox is freeware.

  • Can someone throw light on this issue please

    I have report with some dimesional columns & measure and user wants another additional measure which has month-3 values.Currently this is achieved using Ago function in obiee which is causing performance issue.I want to make this report simple by simplying the procedure to create the month-3 measure.
    Thanks

    Hey Hsekar,
    There is a work around for past period measurements that doesn't use the ago function. It involves using the Combine with Similar report function of OBIEE and UNION'ing the current month with the prior month values.
    It would look like this in your case:
    SELECT Dim1, dim2, VALUE AS CUR_MONTH_VALUE, 0 AS MONTH_3_VALUE
    WHERE MONTH = CURRENT_MONTH
    UNION
    SELECT Dim1, dim2, 0 AS CUR_MONTH_VALUE , VALUE AS MONTH_3_VALUE
    WHERE MONTH = CURRENT_MONTH - 3
    OBIEE executes two queries (one for each of the unions). Each one is pretty simple SQL when they don't have to perform a time series function (like Ago or ToDate).
    I've seen this method perform up to 10X faster than a standard OBIEE time series function.
    Good luck!
    -Joe

  • How to use the JRE included in the installed dir??

    In windows, Id like to just bundle the JRE directory with my application, for example if the app is installed in
    F:\MyApps\MyJavaProgram the jre dir will be in
    F:\MyApps\MyJavaProgram\jre
    but how do i get the main program to use this jre only?
    thanks

    But what about when the system you are using (in this case Windows) doesn't have JRE installed on and you are using native executables? You cannot type "java" when you haven't got Java on your system and in native executables case you just type the executables filename.
    Install Anywhere includes the whole "jre" folder (excluding some unneeded files) in the installation package and it is copied to program folder during the installation. The program then uses that JRE when it is run. I metion again that I don't want to use Install Anywhere.
    So, how can you make the programs native executable use the JRE copied (by hand) in the program's folder?

  • Two Filter on Two dimensions without constraining the fact table

    Hi All,
    does anybody know how to avoid the fact constraint when creating a report with two filters on different dimensions?
    I have a big fact table with more than 10 Million rows. In the starmodel the is the dimension customer and products. I create a filter on the customer atrribute "Status" and choose the value "Active". Now I add the column "Product Type" from the dimension "Product" to the filter section. When I want to choose a value OBIEE executes a select statement within the fact table. So I have to wait very long to select a value. Is there any way to say OBIEE only to select the dimension table without joining the fact table?
    Thank you very much in Advance.
    Regards,
    Stefan

    Hi Stefan,
    Generally queries on the dimensions (across dimesions also) always go through a fact. In case, you would like the queries not be through fact table, but just the dimension tables right away, you can set up a separate subject area for them.
    You can create a separate subject area based on a dummy fact table to get these prompt values.
    Please refer to http://gerardnico.com/wiki/dat/obiee/presentation_service/obiee_parameter_prompt_subject_area for more details on this setup.
    Hope this helps.
    Thank you,
    Dhar

  • Aggregate amount - Content tab

    Hello,
    In my repository, I have 2 stars schemas joined by a common dimension.
    Fact1 <- Dim_F1
    Dim_Common
    Fact2 <- Dim_F2
    Everything is OK concerning the filling of the content tabs for logical table source and for the aggregate amount according to the dimension hierarchies for Dim_F1, Dim_F2 and Dim_Common. So, when I query :
    Dim_F1.val1, Fact1.amount_sum2, Dim_Common.val2, Fact2.amount_sum2, Dim_F2.val3
    the result is coherent.
    But if I only query
    Dim_F2.val3, Fact2.amount_sum2
    or only Fact2.amount_sum2
    the result is aggregated according to the content tab of the logical column Fact2.amount_sum2.
    So instead having only one amount, I have many lines as OBIEE execute :
    select c3 from (
    select id_common c1, id_dim_F2 c2, sum(amount_sum2) c3
    from ...
    where ...
    group by id_common, id_dim_F2)
    Is this mean, that I have to create 2 amount_sum in my Fact2 table ? One to use when I want to see the Fact2.amount with the Fact1.amount and another one when I only take fields from the star schema in which Fact2 is ?
    I'm completely lost and I really would like to understand this point so if my post is not clear don't hesitate to tell me.
    Another point, is there a mean to fill the content tabs of a logical columns automatically according to the content tab of a logical table source ?
    Thanks in advance for your help.

    Thank you for your reply Wildmight but I have tried to put an implicit fact on an amount of Fact2, but I continue to have my problem :
    If I query only Fact2.amount_sum2, then the generated SQL is :
    select D1.c1 as c1
    from
    (select sum(T23105.MTINIT_TBE) as c1,
    T22952.ID_RT as c2,
    T23089.ID_TS as c3,
    T23105.ID_TS as c4
    from
    Dim_F2 T23089,
    Dim_Common T22952,
    Fact2 T23105
    where ( T22952.ID_RT = T23105.ID_RT and T23089.ID_TS = T23105.ID_TS )
    group by T22952.ID_RT, T23089.ID_TS, T23105.ID_TS
    ) D1
    and the results is
    10
    20
    25
    But what I want if I only query an amount is 55.
    Do you have another idea ?
    Thanks in advance.

  • Installing EPM 11.1.1.3 on Solaris x64

    Hello Gurus,
    I am not able to install EPM 11.1.1.3 on Solaris x64. I am facing an issue while I execute installTool.sh. It gives me an error
    Cannot execute <filename>
    Could anyone please help. What are the steps that I need to keep in mind before doing that.
    Thanks and Regards,
    Saurabh

    CLOSING THE QUESTION AS NO ANSWER TO IT SINCE LONG TIME

  • Error compiling a library

    A little cross-post, please help
    Trouble compiling a library
    Thx
    Rob

    Peter Chr. Hansen (guest) wrote:
    : I'm working on a project of porting our Economy Application
    from
    : a scoopen server to a linux server but when I try to ling the
    : shared oracle library libclntsh.so (we have copied it to a file
    : called Sql.so) I get the following error:
    : /oase5.0/Shared/Sql.so: undefined reference to `slpmprodstab'
    : Where is this defined??
    : There is no problem when I compile the demos included whith
    : oracle
    : Yours,
    : Peter Chr. Hansen
    Try this link line as posted earlier:
    cc -o <executable> <filename>.c \
    -L$ORACLE_HOME/lib/ \
    -L$ORACLE_HOME/rdbms/lib \
    $ORACLE_HOME/lib/scorept.o \
    -I$ORACLE_HOME/rdbms/public \
    -lnetv2 -lnttcp -lnetwork -lncr \
    -lvsn -lcommon -lgeneric \
    -lcore4 -lnlsrtl3 -lepc -lsql \
    -lclient -lclntsh
    Maturi
    null

  • Time synchronization on client device

    Is there any functionality in OLite 10g R2 which can maintain time synchronization on client devices (WM5 PPCs)? Obviously we could use some special application for such purpose, but it would probably need some user interaction, which we'd like to avoid...

    Thanks for your post - I thought so :(
    I already have one working solution, but I don't like it at all, because it's too complicated for such trivial task. I created new OTL command, which takes an application executable filename as parameter and launches it on the device (this OTL script also has to be present on the device). Than I created simple SNTP client application and published it on the mobile server for client devices. Now I can schedule a device command which launches this application to perform time synchronization with some time server on regular basis.

  • Including js files

    Hi,
    is there way to include own javascript file to the portal? but not using narrative, not as a part of a report.
    thanks
    robo

    Hi Robo,
    Check John Minkjan's blog; http://obiee101.blogspot.com/2009/02/obiee-executing-your-own-javascript.html
    Good Luck,
    Daan Bakboord

Maybe you are looking for

  • Function module (FM) to read budget  to be used in n-step approval badi

    We have SRM 5.0 with ECC 6.0 (extended classic). For capital expenses we are going to have budget check in SRM based of account assignment internal orders in R/3. In shopping cart line item approval workflow, it is required to read the budget availab

  • Problem with variable name in ZXRSRTOP include (virtual KF)

    Hi all, I am coding a routine to use a virtual key figure in the BEx. I have just a little problem with the name of a variable: as explained in the documentation, I created the variable with the prefix G_POS_, the name of the infocube and the name of

  • Pull username and password from client

    I need to pull the LAN username and password of a client using Windows XP and active directory authentication. The end goal is to automatically log a visitor into the application I'm writing without having to reauthenticate them using their LAN crede

  • My PLaYbOoK BrOwSeR KeEpS ClOsInG

    my internet keeps closing on me  i tried security wipe twice but still not working. Please help. Thank you. Solved! Go to Solution.

  • 404 Error Downloading Oracle9iAS Java Edition 9.0.3 for Windows NT/2000

    When I click on the 9iAS_Java_Windows.zip from the Oracle9iAS download page (http://www.oracle.com/technology/software/products/ias/htdocs/javasoft.html) I get redirected to the following URL which gives me a 404 page not found error: https://profile