Oracle Business Intelligence Applications

Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture

How to download RPD file from Oracle Business Intelligence 12C?

Received Response
1447
Views
4
Comments

Hello everyone,

We have installed Oracle Business Intelligence 2.2.1.2.0 on our server. We need to download the RPD file from the instance. Can anyone please help us with some link or steps regarding the same? If anyone has the solution, please help as this is a very high priority for us.

Thank you.

Regards,

Arpit

Answers

  • vanantha komara-Oracle
    vanantha komara-Oracle Rank 3 - Community Apprentice

    We use datamodel.sh (linux side ) or datamodel.cmd (windows side) to download and upload rpd in obiee 12c.

    1. Download the RPD and supply the repository password on the command line with the -W parameter, or omit the -W parameter and enter the password when prompted. For example:

    DOMAIN_HOME\bitools\bin\datamodel.cmd downloadrpd -O sampleapplite.rpd -SI ssi -U weblogic -P <Weblogic Password> -W Admin123

    Download Rpd:

    Parameters used:

    O: Output file path for the downloaded rpd

    U: Weblogic user name

    P: Weblogic password

    W: Rpd password

    SI: Service instance name( ssi by default)

    S: Host name of the server

    N: obiee analytics port no

    Linux Server:

    Open the terminal and Navigate to common scripts bin directory and issue the below command to download the rpd

    $cd $ORACLE_HOME/user_projects/domains/bi/bitools/bin

    $./datamodel.sh downloadrpd -O /tmp/live.rpd -W Admin123 -U weblogic -P password -SI ssi

    Windows Server:

    Open the command prompt and Navigate to common scripts bin directory and issue the below command to download the rpd

    >cd $ORACLE_HOME\user_projects\domains\bi\bitools\bin

    >datamodel.cmd downloadrpd -O c:\temp\live.rpd -W Admin123 -U weblogic -P password -SI ssi

    Windows Client:

    We need to have obiee 12c client installed on this system

    Open the command prompt and Navigate to common scripts bin directory and issue the below command to download the rpd

    >cd $ORACLE_HOME\bi\bitools\bin

    >datamodel.cmd downloadrpd -O c:\temp\live.rpd -W Admin123 -U weblogic -P password -SI ssi -S "Host name of the server" -N 9502

    Thanks

  • [Deleted User]
    [Deleted User] Rank 2 - Community Beginner

    Arpit,

    Vanantha ave you the response, but please read this here carefully:

    Also, please remember that all users have normal jobs to do to get the bills paid. Phrases as ‘ASAP’, ‘urgent’ have no meaning at all . There is no ‘Service Level Agreement’ attached to the OTN Community Spaces. If you need urgent help you should use support.oracle.com, the paid support Oracle offers.

    If something is urgent, then pay somebody to do the job. A forum isn't the place for this.

  • ArpitOrcl
    ArpitOrcl Rank 2 - Community Beginner

    Hi Christian Berg,

    I am new to the Oracle community and therefore I was not aware of the points you mentioned. I am really thankful to you for letting me know of these things. I will keep that in mind for the future posts.

  • ArpitOrcl
    ArpitOrcl Rank 2 - Community Beginner

    Hi Vanantha,

    Thank you so much for your reply to the question.