Essbase migration procedure from Unix to NT

Does anyone have a procedure to migrate essbase from unix to wondows NT? I know that is a procedure in installation guide Ch.10, but I think it is just for the NT to NT..

we did this last year. export the data from the databases to a text file, use level 0 if you only load at level 0.after installing essbase on nt, add the same name apps and dbs in nt, connect to the unix & nt servers in appman, copy the outlines/dbs from unix to nt. load the data from your exports.copy all the object files eg .csc, .rpt, etc from the unix server, reset all server, app and db settings, including cfg file and recalc.we recreated security ids, groups and filters

Similar Messages

  • Calling stored procedure from unix shell script

    Hello,
    I am facing a problem while calling a stored procedure from UNIX shell script. I want to return a output variable from the stored procedure to the UNIX environment.
    Here is the code-
    #!/bin/sh
    OUTPUT=`sqlplus cmag/magnum@dw <<ENDOFSQL
    set serveroutput on;
    var prd_out varchar2(100);
    exec create_pm_window(:prd_out);
    exit;
    ENDOFSQL`
    echo " output is - $OUTPUT"
    The problem is :prd_out is not getting copied to shell variable OUTPUT.
    I have a dbms_output.put_line in the stored proc create_pm_window and I can see that prd_out is getting populated.
    Any help is really appreciated.
    Thanks'
    Rakhee

    First step :
    make sure the PL/SQL works as expected.
    Does the following display the expected output executed from SQL*Plus ?
    set serverout on
    declare
    prd_out varchar2(100);
    begin
    create_pm_window(prd_out);
    dbms_output.put_line('output is '||prd_out);
    end;
    I don't have your procedure, but using a dummy procedure like :
    Scott@my10g SQL>create procedure foo(p_out in out varchar2)   
      2  is
      3  begin
      4  select 'Hello '||instance_name into p_out from v$instance;
      5  end;
      6  /
    Procedure created. and a toto.sh script as :OUTPUT=`sqlplus -s scott/tiger <<EOF
    set pages 0 lines 120 trimout on trimspool on tab off echo off verify off feed off serverout on
    var mavar varchar2(100);
    exec foo(:mavar);
    print mavar;
    exit;
    EOF`
    echo "OUT = ${OUTPUT}"
    exitIt works fine :[oracle@Nicosa-oel ~]$ ./toto.sh
    OUT = Hello my10g

  • Migration procedure from Forte 30M to UDS 5.0.x

    Is there any documment that describes the migration procedure from Forte 30M Conductor 10M to UDS 5.0.xIS 3.0.x
    thanks in advance,
    Lorenzo.

    There is one for migrating for Forte 3.x to UDS 5.01. Your SUN rep is the best source to provide you that information. I have no information about Conductor but I will see if I can find any.

  • How to execute oracle procedure from Unix

    Hi All,
    Could you please help me in Unix commands.
    we have different databases i want to run one procedure from unix for one database.
    How can i run pls give me the flow.
    Thanks,

    Oracle wrote:
    Hi All,
    Could you please help me in Unix commands.
    we have different databases i want to run one procedure from unix for one database.
    How can i run pls give me the flow.
    Thanks,you give the command to launch sqlplus, and pass it the appropriate sql or sqlplus commands.
    Like this:
    oracle> sqlplus /nolog <<EOF
    conn / as sysdba
    exec mystoredprocedure
    exit
    EOFor this
    oracle> sqlplus /nolog @somefile.sqlwhere 'somefile.sql' has the sqlplus commands needed.

  • Running stored procedure from unix shell

    Hi
    I have a stored procedure proc1 stored in a file, code1.txt in my home directory /home/user. How do i execute this file which contains the stored procedure from unix shell? I would really appreciate it if somebody gives me the complete shell script to accomplish the above task.
    Thanks.

    To put everything together into a single posting:
    The EXEC command is a SQL*Plus macro command. It is not a SQL or PL/SQL command.
    The only way to execute a stored proc from a client, is to wrap the call in an anonymous PL/SQL block. I.e you need a BEGIN and END PL/SQL wrapper around the call.
    E.g.BEGIN
      -- calling a stored proc to start leave processing
      scott.StartLeaveProcessing;
    END;The EXEC macro in SQL*Plus does this automatically for you. Thus less typing. But do not confuse this command with the PL/SQL language.
    Second issue. Use bind variables when making calls from clients. And not just for SQL statements, but also for PL/SQL. Unfortuantely this tends to be a hack in SQL*Plus due to the way SQL*Plus itself treats its bind variable assignments. But in principle, this is what you should do when calling an Oracle stored proc from a client:
    SQL> -- define a host variable
    SQL> var EMPID varchar2(100)
    SQL> var FROM_DEPT number
    SQL> var TO_DEDPT number;
    SQL>
    SQL> -- assign values to these (this is where SQL*Plus hacks it)
    SQL> exec :EMPID := 100;
    SQL> exec :FROM_DEPT := 1;
    SQL> exec :TO_DEPT := 2;
    SQL>
    SQL> -- now make the stored proc call for moving employee 100 from
    SQL> -- department 1 to department 2
    SQL> EXEC scott.EmployeeTransfer( :EMPID, :FROM_DEPT, :TO_DEPT );
    SQL>To do this from a Unix shell script:
    #!/bin/bash
    # environment variables
    # --> put environment such as ORACLE_HOME, ORACLE_SID, TWO_TASK
    # etc. here <--
    # redirect STDIN from TTY (keyboard typewriter device) to the input from
    # this file - which means SQL*Plus will not read from the keyboard but read
    # from this file its input until the EOF marker/text is encountered
    sqlplus -s /nolog << EOF
    connect scott/tiger
    var EMPID varchar2(100)
    var FROM_DEPT number
    var TO_DEDPT number;
    exec :EMPID := 100;
    exec :FROM_DEPT := 1;
    exec :TO_DEPT := 2;
    exec scott.EmployeeTransfer( :EMPID, :FROM_DEPT, :TO_DEPT );
    exit;
    EOF
    #eof

  • How can i call a Stored Procedure procedure from Unix shell script

    Hi All,
    I want to call a Strored PL-SQL Procedure through Unix shell script.
    Can any body help me with this.
    Regards,
    Saurabh

    I prefer a seperate script like the other poster mentioned. However, most shells can use a 'here' document as well ...
    sqlplus uid/pwd <<END
    exec myproc
    exit
    ENDRichard

  • Migration Procedure from Essbase 9.3.3 to 11.1.2.1

    Hi,
    Could you please let me know the procedure or steps to Migrate from Essbase 9.3.3 to 11.1.2.1
    Thanks

    Have you done any research like search this forum before posting, migrations have been covered lots of times on here.
    Also if you are talking about upgrading the server components then there is documentation available - http://download.oracle.com/docs/cd/E17236_01/nav/portal_1.htm
    Cheers
    John
    htp://john-goodwin.blogspot.com/

  • Universe Migration Procedure from TEST Server to PROD server

    Hi,
    We are using SAP BO XI R3 version in our project TEST windows 2003 server.
    we have designed the universe in TEST BO Server and it's working great.
    Now, we would like to move/migrate the universe created in TEST Server to the PROD server.
    please let me know the migration steps [step by step procedure - documents] in getting the universe available in PROD server as well.
    Note: We are using SAP BO XI R2 version in PROD server & XI R3 in TEST Server respectively in separate physical machine .
    Regards,
    Karthik

    Thanks for your support Henry. I agree with your point.
    I have 1 quick question: if we copy the .unv file from TEST BO R3 server and paste the same .unv file to PROD BO R2 server, will it be available for importing in PROD BO R2 Server [to do modification in connection settings (connection to pointing PROD DB)]?
    If yes, we can copy [not export (no use of tool)] manually the .unv file from TEST R3 server and paste it manually in PROD R2 Machine under universes folder and make any modification like changing the connections....etc.,
    Please let me know if this approach works fine with no issues. Because its going to be done in PROD.
    Many Thanks,
    Karthik.

  • Execute stored procedure from Unix shell script

    My current method of executing stored procedures (wpl_1 and wpl_2) from a unix shell script is as follows:
    <<wpl.sh>>
    sqlplus user/password @/home/oracle/scripts/wpl.sql
    <<wpl.sql>>
    set serveroutput on size 1000000
    set timing on
    execute wpl_1('0000010676','~')
    execute wpl_2('0000010676','~')
    execute wpl_1('0000010236','FIX')
    execute wpl_2('0000010236','FIX')
    exit
    Question: Is it possible to combine the two scripts (unix and oracle) together?

    A little rusty on this, but this may work:
    My current method of executing stored procedures
    (wpl_1 and wpl_2) from a unix shell script is as
    follows:
    <<wpl.sh>>sqlplus user/password @/home/oracle/scripts/wpl.sql << EOF
    set serveroutput on size 1000000
    set timing on
    execute wpl_1('0000010676','~')
    execute wpl_2('0000010676','~')
    execute wpl_1('0000010236','FIX')
    execute wpl_2('0000010236','FIX')
    exit
    EOF
    >
    Question: Is it possible to combine the two scripts
    (unix and oracle) together?

  • Run PL/SQL from Unix

    Can anybody tell me how to run PL/SQL Procedure from unix prompt.

    You can start a sqlplus script from unix prompt, e.g.
    sqlplus <youruser>/<yourpassword>@<yourdb> @yourscript.sqlEdited by: hm on 01.01.2011 02:33

  • Essbase & EIS migration on HP-UNIX????

    What are the requirements to perform the migration on HP-UNIX for essbase? Does it require to reinstall the software?

    We are also trying to migrate from Oracle RDB to oracle 8 on Sun
    Solaris. Need to know the ways for exporting the data from
    oracle rdb to oracle 8. Any utility similar to export/import
    available in oracle rdb?

  • Essbase migration from different env

    Hi All,
    I need to migrate CUBE from DEV to QA env, I use the Essbase Administration tool to connect DEV and QA Essbase server, I copied the application from DEV to QA, after I test in the OBIEE report, found only the dimensions have data, the fact have no data,
    I am wondering what would be the standard migration steps for Essbase cube?
    Is there any one who have the same problem?
    please help.
    thanks & regards
    henry He

    Hi,
    Did you export data?
    Can you try to pull the data through excel or just with preview option in EAS(only for non unicode applications). If you see data here then there should be some problem pulling the combinations of data in OBIEE.
    Can you see if there are any index/pag files for application in QA? this will also confirm if your application has any data.

  • Execute stored procedure from DOS or Unix Shell

    Hi, need ur help again,
    How to execute the stored procedure from DOS or Unix Shell?
    Thanks!

    sqlplus -s /NOLOG @your_sql_script.sql
    -- your_sql_script.sql :
    connect user/password@connect_string
    execute package.procedure (param1, param2, ...) -- for packages
    execute procedure (param1,...) -- for procedures
    exit ;this way you won't advertise your user/password on unix systems

  • Migrating DESKI Reports (Stored Procedures) from 6x to XI 3.1

    I am migrating DESKI reports based off of Stored procedures from a 6x environment to XI 3.1
    I have created a new OLE DB connection pointing to the new SQL server.
    I need to find out how to point my report to the new connection.
    I have seen in that in case of DESKI reports using universes, I can go to Data Manager --> Definition tab and point to my new universe there.
    But in case of stored procedure report, that option is not available.
    Can someone let me know how to go about migrating these reports which are pointing to Stored Procedures.
    Thanks

    Note that I have never done it.
    But I heard you could create a new universe with a derived table. In the SQL of the derived table you can call the stored procedure. The connection of that new universe is your stored procedure connection.
    Build you report with that new universe, using the derived table.

  • Migrating Stored Procedure from Informix

    I am seeking tool to migrate stored procedure from Infromix 11.5(installed at one customer) into Oracle.
    I find that Oracle Migration Workbench can only support migration from Informix version lower than 9.4.
    Any ideal about migration stored procedures from Infromix 11.5 into Oracle?
    Any help is highly appreciated!
    tom

    Mike,
    Wrong forum, for this question, suggest you ask it in the PL/SQL forum.
    Jim Stern

Maybe you are looking for

  • How do I install the ScanSnap software on my new iMac / Mountain Lion?

    I have been everywhere trying to figure this out.  Fujitu's site tells me to simply update the software already installed.  Problem is that it's not already installed.  I don't have a disk drive and so I cannot install with the disk.  I downloaded v3

  • Default value of a numeric control

    Hello I want to fix the default value of a numeric control using his node property but I haven't found this attribute. It's possible to fix this value through the node property of a block? I've tried to fix it, right-clicking on the control....proper

  • Problem with high impedance output signals

    Hello. i`m read all the document in forum. as a result. I can find this webpage as solution(http://www.joelw.id.au/FPGA/DigilentAtlysResources) that page  note that if you are using HDMI DDC pass-through, you will need to set the corresponding FPGA p

  • Control Flash8 swf movie in Flex 2

    I have a swf (output from OpenOffice, created from a PowerPoint presentation) and i want to control it from Flex 2 (i don't have the .fla file of the swf). Is this possible at all? I can load the swf and display it, but no way of accessing it as a Mo

  • Technical Document (Exact Procedures) To Migrate Forms/Reports 9i to 10g

    Hi; Where can i find the Technical Document (Exact Procedures) To Migrate Forms/Reports 9i to 10g?