How to compile procedure Oracle procedure throught ODI

Hello

Can someone help me how to compile procedure oracle through ODI11g

I'm Aguerre, how to call the oracle in ODI procedure and run it.

Please help me

Kind regards
Phanikanth

Hello

We can invoke step by odi procedure below.

modify the procedure compile

Thank you
Anuradha

Tags: Business Intelligence

Similar Questions

  • How PLSQL functions/procedures by ODI dynamically

    I want to know is there a way to create functions or procedures on the Oracle database through procedures ODI dynamically.
    These are functions that I need to dynamically create by the ODI process so that when the procedure runs the following function is created at the database level.

    FUNCTION to CREATE or REPLACE MY2DATE (p_str IN VARCHAR2
    format_picture IN VARCHAR2
    )
    DATE OF RETURN
    IS
    BEGIN
    RETURN TO_DATE (p_str, format_picture);
    EXCEPTION
    WHILE OTHERS
    THEN
    RETURNS A NULL VALUE.
    END;
    /


    Any help appreciated

    Hello

    Create an ODI procedure and co-pilot on target, select

    Technologies: Oracle
    Logical schema:

    Command:

    FUNCTION to CREATE or REPLACE MY2DATE (p_str IN VARCHAR2, format_picture IN VARCHAR2)
    DATE OF RETURN
    IS
    BEGIN
    RETURN TO_DATE (p_str, format_picture);
    EXCEPTION
    WHILE OTHERS
    THEN
    RETURNS A NULL VALUE.
    END;

    ODI will create it in the backend.

    ARY: http://odiexperts.com/how-to-use-plsql-procedures-and-functions-in-odi

    Thank you
    Guru

  • How to create the script to compile procedure files in oracle - urgent deadline...

    How to create the script to compile procedure files in oracle.    about to go live and have much .prc pkg in a directory usr/tmp/ar... Po... human resources etc. need to create a script to compile all the files in the folder, then do not open all necessary .prc suggestions on how to do it.   Thank you Tom.

    (1) an urgent need, ASAP,... are words that do not in a forum of volunteer. We are here to help if you need it now, for free, open a SR.

    (2) oracle procedures are not files.

    (3) I think you are trying to run operating system packages, no Oracle procedure. right?

  • How to debug the Oracle procedure

    Hi friends,

    I've migrated oracle procedure from Oracle 8.0.4 DB of NT to DB Oracle 9.2.0 on IBM AIX.
    When I test/execute the procedure on the Db 9.2.0, she still runs and did not end.

    How to debug an Oracle procedure to check if it's a loop on the same block foever, what "current" values is owner and what tables he read to, or procedure does never loops as if it is not to satisfy one of the conditions?

    Thank you very much

    Is coding "infinite loop" a bad habit of programming?

    Yes, you can call it such.
    Personally, I prefer to use loops.
    See http://tahiti.oracle.com for the different types of loops that you can use.

    How can I change this infinite loop in a "finite" without changing the logic of the program?

    You can use EXIT WHEN "certain conditions."
    For example, you can add OUTPUT WHEN cursorname % notfound, or some counter to reach a specific value in your loop, to 'force' the loop to stop.
    See the docs or do a search on this forum for more examples.

  • Call the stored procedure to odi

    Hi all

    Posible calls a pl/sql stored procedure of odi?

    In ODI, create a procedure in your project, here, you can call a stored procedure name.

    This can then be slid into a package as a package step.

    geeo

  • How to compile files of pld using adadmin

    Hello
    How to compile files of pld. I used adadmin several times but want to know hoe to compile the files of the LDP.


    Sorry, now I don't have time to read many pages. If any what a coulr you please tell me the numbers of navigation, it is appreciated. Sorry again
    Concerning
    Taher

    Hello

    If you give option

    You want to regenerate forms Oracle PL/SQL [Yes] library files? YES

    Concerning

  • How to compile and run a Pro * C under Unix program?

    Hello gurus,

    I'm new to the Pro * C. I just wrote a sample Pro * C program 'first.pc' to read some information in tables and print it on the screen.
    I do not know how to compile and run to see the release of my first program.

    After searching a lot, I tried following...
    -- Step 1 compile the program into .c program
     
    $->ls -lrt first.pc
    -rwxrwxrwx    1 sqloper4 staff          1069 Oct 31 03:39 first.pc
    $->proc first.pc
     
    Pro*C/C++: Release 8.1.7.0.0 - Production on Sat Oct 31 05:43:35 2009
     
    (c) Copyright 2000 Oracle Corporation.  All rights reserved.
     
    System default option values taken from: /oracle/app/oracle/product/8.1.7/precomp/admin/pcscfg.cfg
     
    $->ls -lrt first*
    -rwxrwxrwx    1 sqloper4 staff          1069 Oct 31 03:39 first.pc
    -rw-r--r--    1 sqloper4 staff             0 Oct 31 05:43 first.lis
    -rw-r--r--    1 sqloper4 staff          6648 Oct 31 05:43 first.c
     
    $->
     
    -- Step 2 Generate the .o file
     
    $->cc -I${ORACLE_HOME}/precomp/public -c first.c
    first.c: In function 'main':
    first.c:154: warning: return type of 'main' is not 'int'
     
    $->
     
    $->ls -lrt first*
    -rwxrwxrwx    1 sqloper4 staff          1069 Oct 31 03:39 first.pc
    -rw-r--r--    1 sqloper4 staff             0 Oct 31 05:43 first.lis
    -rw-r--r--    1 sqloper4 staff          6648 Oct 31 05:43 first.c
    -rw-r--r--    1 sqloper4 staff          3709 Oct 31 05:45 first.o
     
    $->
     
    -- Step 3 After that link the .o to libraries and produce the exe
     
    $->cc -o exe_name -L $ORACLE_HOME/lib -lclntsh
    ld: 0711-317 ERROR: Undefined symbol: .main
    ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.
    collect2: ld returned 8 exit status
     
    $->
     
    $->ls -lrt first*
    -rwxrwxrwx    1 sqloper4 staff          1069 Oct 31 03:39 first.pc
    -rw-r--r--    1 sqloper4 staff             0 Oct 31 05:43 first.lis
    -rw-r--r--    1 sqloper4 staff          6648 Oct 31 05:43 first.c
    -rw-r--r--    1 sqloper4 staff          3709 Oct 31 05:45 first.o
    $->
    I also tried steps below after some time thanks to the new program
    $->ls -lrt first*
    -rwxrwxrwx    1 sqloper4 staff          1069 Oct 31 03:39 first.pc
    $->
    $->proc first.pc
    
    Pro*C/C++: Release 8.1.7.0.0 - Production on Tue Nov 3 05:42:14 2009
    
    (c) Copyright 2000 Oracle Corporation.  All rights reserved.
    
    System default option values taken from: /oracle/app/oracle/product/8.1.7/precomp/admin/pcscfg.cfg
    
    $->cc first.c
    first.c:142:19: error: sqlca.h: A file or directory in the path name does not exist.
    first.c: In function 'main':
    first.c:170: error: 'sqlca' undeclared (first use in this function)
    first.c:170: error: (Each undeclared identifier is reported only once
    first.c:170: error: for each function it appears in.)
    first.c:154: warning: return type of 'main' is not 'int'
    first.c: In function 'sqlerror':
    first.c:260: error: 'sqlca' undeclared (first use in this function)
    $->
    Can someone help me on above errors?

    After all, above yet I don't know how to proceed and "run" the program.
    Could you please help me with the steps 'Compile and run' a Pro * C program?

    Oracle DB Version: Oracle8i Enterprise Edition Release 8.1.7.4.0 - Production
    OS: Unix


    Thanks in advance!

    Published by: Learning.Oracle on November 3, 2009 17:13

    Hello

    -lsql10

    Which specifies the library to version 10, but it seems that you have your first assignment 8.1.7.

    You will need to look in your lib directory and see what we call the file in 8.1.7 - it's been too long and I don't remember the exact name.

    Kind regards

    Mark

  • How to compile and install the kernel modules after nation and nipalk for installation of Gentoo 64 bit?

    We are trying to install a PCIe 6251 DAQ card in a box of Gentoo 64 bit running Linux kernel 2.6.28 - gentoo-r5 4.3.2 - gcc and glibc - 2.8.  We have installed RPM utilities to manage the installation.  The current problem is that we are not able to compile and install the kernel modules: nidmxfk, nimsdrk, nimstsk and nipxirmk.  Here's a summary of what we have done so far, and to what extent we got.

    First of all, we have changed the configuration of the kernel that we could export the init_mm unused symbol by changing the configuration option of the CONFIG_UNUSED_SYMBOLS = o kernel and recompile the kernel.  Then we installed LabView 8.6.1.  Then we ran the nation 1.9 installer who has installed the source code in vain on the compilation.  To resolve this problem, we have changed the function of pte_offset to pte_offset_kernel by editing the file/usr/local/natinst/nation/configures following the instructions here:

    http://decibel.NI.com/content/docs/doc-4511

    We were then able to compile and install the kernel nation module thanks to:

    . / configure
    do
    make install

    lsmod said that nation has been properly installed.  Then we ran the installer for DAQmx 8.0.1 by:

    . / INSTALL - nodeps

    To do this, we have received errors indicating that LabView support could not be installed because check addictive (incorrectly we think) stated that labviewbase86 has not been installed; This caused the installer to have an abortion.  Therefore, we refused to install support for LabView 8.6 and revived the installation program which produces the output:

    Installation of the driver NOR-DAQmx Distribution of Linux Installer version 8.0.1f0...

    Already to jump Edward - 1.9.0 - f0.noarch.rpm installation, same or newer
    installed.

    Pre Installation...

    Preparing... ########################################### [100%]
    1:nitimingi ########################################### [ 4%]
    2:nipalki ########################################### [ 7%]
    3:nipali ########################################### [ 11%]
    RC0.d directory not found, startup script is not accredited with init levels.
    4:labview80 - rte # [14%]
    5:ni653x ########################################### [ 18%]
    6:nicdigi ########################################### [ 21%]
    7:nidaqmxcapiexmp # [25%]
    8:nidaqmxcapihelp # [29%]
    9:nidaqmxcapii # [32%]
    LN: create the symbolic link ' / usr/local/include/NIDAQmx.h': no such file or directory
    10:nidaqmxcfgi # [36%]
    11:nidaqmxef # [39%]
    12:nidaqmxhelp # [43%]
    13:nidaqmxinfi # [46%]
    14:nidaqmxswitch # [50%]
    15:nidimi ########################################### [ 54%]
    16:nidsai ########################################### [ 57%]
    17:nimdbgi ########################################### [ 61%]
    18:nimioi ########################################### [ 64%]
    19:nimru2i ########################################### [ 68%]
    20:nimxdfi ########################################### [ 71%]
    21:nimxpi ########################################### [ 75%]
    22:nimxs ########################################### [ 79%]
    RC0.d directory not found, startup script is not accredited with init levels.
    23:niorbi ########################################### [ 82%]
    24:nipxirmi ########################################### [ 86%]
    25:nirpci ########################################### [ 89%]
    26:niscarabmm # [93%]
    27:niscxi ########################################### [ 96%]
    28:nistci ########################################### [100%]

    After Installation...

    At this point, after reading this report, we used the Gentoo rc update utility to add several scripts for the boot runlevel initialisation:

    update of RC - a boot nipple
    update of RC - a bunch of nipxirmu
    update of RC - a bunch of mxssvr
    update of RC - a bunch of nisvcloc
    update of RC - a bunch of nidevldu

    When the computer reboots, you get an error message indicating that the following kernel modules are not: nidmxfk, nimsdrk, nimstsk and nipxirmk.  lsmod shows that the nation and nipalk are installed, but no other kernel modules NOR are present.  modprobe-l shows that only nation and nipalk are available.

    So we have several questions:

    1. we install drivers in the correct order?  Should use us NI-VISA 4.5 or NOR-488. 2 rather than DAQmx 8.0.1?

    2. What kernel modules should be loaded for this equipment run?  How to compile and install the ones that we have yet, specifically nidmxfk, nimsdrk, nimstsk and nipxirmk?  Are there others?

    3. How can we get the installer to properly recognize that we have installed LabView Core and install support for LabView?  Are there additional kernel modules related to the support of LabView?

    4. What is the symbolic link that was not created in the DAQmx installation report? (ln: create the symbolic link ' / usr/local/include/NIDAQmx.h': no such file or directory)?

    I apologize for so many questions, but these seem to be the last obstacles to obtaining OR runs correctly on this system.  Is there other information that we can provide that would be useful?  Thanks for any help or suggestions you can offer.

    Craig

    Hey Craig,.

    Given that you use 64-bit Linux all kernel modules must be compiled for 64 - bit.  User mode binaries can be 32-bit, assuming that you have installed the 32-bit support libraries.

    NOR-DAQmx is a complex architecture and requires several kernel modules to support your PCIe card.  Most of these kernel modules have not been brought to support 64-bit Linux.  Some kernel modules are components infrustructure that are shared with other pilots OR as NI-VISA and NOR-488. 2 and have been brought to support 64-bit Linux.  Unfortunately, you need all the modules to use your hardware.

    I hope that answers your question.

    Shawn Bohrer

    National Instruments

  • How to compile the single form?

    Hi all

    EBS R12.2.4

    RHEL6.5

    How do you compile a single form? or all forms in a single module as AR?

    In fact, I have compiled all forms for all modules in our case of BSE, and it took a lot of time. After that, the functional a user issue has been resolved.

    Now, I do not understand why another encounter similar error again functional:


    While it opens a form, the FRM-40735 displayed error message: a TIME-NEW-FORM-INSTANCE trigger raised unhandled exception ORA-20002

    Capture1.PNG

    Capture2.PNG

    Capture3.PNG

    Capture4.PNG

    ---------------------------------------
    Current form
    ----------------------------------------
    Request form: claims
    Name: ARXRAATR
    Train path: /u01/appuat/UAT/fs2/EBSapps/appl/ar/12.0.0/forms/US/ARXRAATR.fmx
    Form Version: 12.0.30.12020000.2
    Last modification of the form: $Date: 2013/03/10 06:49 $

    How to compile this form ARXRAATR.fmx?

    Help, please...
    Thank you very much
    JC

    Check this document:

    Accounting revenue and sales credits: unexpected error while initializing FRM-40735: trigger once - new - form - Instance (Doc ID 1386372.1)

    Kind regards

    Bashar

  • Using Oracle Partition Exchange with Oracle Data Integrator (ODI) 11g

    Hello

    I'm trying to follow http://www.ateam-oracle.com/configuring-oracle-data-integrator-odi-with-oracle-partition-exchange/

    But impossible to get the same options in 11g.

    Can I use the Exchange Partition Oracle 11g ODI.

    Thank you.

    Yes, exchange of partition is certainly possible in ODI 11 g

  • Need to find a way to understand how DB2 connect to Oracle and mirroring of data etc.

    Hi, gurus,

    I just take over a source project which is the ICOMS as400 db2 database. Seems data mirro that CDC is used to replicate from DB2 to oracle.

    I am very new to this CDC datamirror, more I am new to figure out how db2 connect to oracle, it is only through db link or what? or is it tnsnames entry?

    I wish someone in this forum can point me in the right direction.

    Thanks in advance.

    Hello

    What do you not sure about?
    If Oracle can be the site of conduct, you can use the gateway for DRDA database and we can help you with that. If you need assistance on setting up DataMirror CDC to connect to Oracle, then you will need to contact IBM because it is one of their products.

    Kind regards

    Mike

  • How to compile a customized in 11i jsp page

    Hi gurus,

    Please help me on how to compile a .jsp in 11i instance.

    Thank you
    Rambaud

    What version of 11i is your EBS? As I remember, no need to compile JSP in earlier versions of 11i; JSP pages is compiled during the loading of the page.

    Thank you
    Shree

  • How to use variable Substitution Essbase in ODI

    Hello

    Can someone help me please how to use void var Essbase in ODI?
    I created an interface to load data from text to planning. In the mapping, to the Point of view, I gave the necessary dimensions which is "years". In Essbase, we set a variable called CurrYr which
    We want to use in the view. So, I added a line like this in the map

    'Work', 'Budget', 'CC1', '#sYearValue '. The sYearValue is used to extract the void var Essbase before loading the planning data. I have followed the blog for void var post below (John has been very kind in showing many examples of ODI, link below is one of them).

    [http://john-goodwin.blogspot.com/2009/11/odi-series-planning-11113-enhancements.html]

    Whenever I run the Interface, it fails with the error "ODI-17506: Variable has no value: XXXXX.sYearValue.

    Thanks in advance!

    PM

    This line should print the values in the agent log, see log

    System.out.println ("current year =" + sYearValue + "current period =" + sPerValue);

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • help on how to compile and run the awt programs

    any1 can tell how to compile and run the awt programs

    Published by: 863765 on July 18, 2011 03:29

    The same way you compile and run any other Java program.

  • Export data to Oracle DB using ODI Essbase

    I am trying to export data to Oracle DB using ODI essbase. When I create the schema with data source and target warehouses, my goal has error indicating that the target column has no capabilities of sql. I don't know what that means. Can anyone enlighten us? Thank you.

    This means that you have not defined a resting area for your columns on the target data store, as you use essbase in your interface, you need a rest area, essbase as a technology has no SQL features.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

Maybe you are looking for

  • HP Pavilion 15-ak005na: HP laptop Pavilion of game 15-ak005na (can put Windows 7 on this?)

    Hi guys,. I desperately want to put windows 7 pro (64 bit) on this laptop - but it came with windows 10 home, of course, there are only drivers for windows 10 available on the site to download driver HP - is there any where I can find windows 7 drive

  • Is there an updated version of EASYTREE (came was in Win95) I don't mind retyping data...

    I started my family tree in this program and I only have the printed data... I don't know where are the original files (I guess in an old HD) so I'll retype the data anyway. I liked the configuration of EASYTREE.  Y at - it a newer version of this pr

  • Installation license ESXi on UCS B200M2 fail

    I tried to seized in the license of VMware ESXi 4.1 of vSphere client and all in the 16 keys were always failed with the message "invalid on this product. I installed using the Cisco's ISO image "VMware-VMvisor-Installer - 4.1.0 - 260247_Cisco.iso '

  • Disable SSH on outer track edge Express Interface

    My edge track Express (EXP-E) is hidden behind a firewall ASA have been we have a type of 'Allow a full' of the ACLs for traffic filtering on the external interface of the EXP-E. I noticed that the SSH external interface port is getting abused by pro

  • site-to-site and browsing the internet

    Hello I have a simple question. We have to buy two asa5000 devices and connect them via the fixed site-to-site tunnel. One side will use the ADSL modem in Bridge mode. My plan is to use PPPoE auth on port wan asa. In addition, it is important allow u