How to ETL extract data from database Oracle 11.1 using Cognos Data Manager 10.1

Hello

I need to run the IBM Cognos Data Manager 10.1 version ETL tool for extracting data from the Oracle11.1 database.

My understanding is that, from the point of view of database, the best way would to have a stored procedure that will provide a reference cursor in the ETL client tool.

However, a database procedure the ETL tool running seems not to be possible in this version of the data manager.

If someone has done this before? What is the best way for this snippet to do?

Thank you

Emilija

Annabelle says:

My reading of original question: "What is the best way for this snippet to do?"

Sorry - is NOT helping.

The BEST way to extract data from a table is to use a SELECT statement.

You said you want to do.

So just repeat your original question instead of those that ask you to answer will not move forward us.

Tags: Database

Similar Questions

  • How to remove the logo from the Oracle of tableFirstTemplate?

    How to remove the logo from the Oracle of tableFirstTemplate?

    Dear aJohny!

    My worm jdeveloper is 12.1.3.0.0.

    For Jdeveloper code would be

    
    

    and the screen would be like this

    I think it's the correct process and the best answer to my question

    Concerning

  • How can I load updates from pilot to another pc using the ethernet cable?

    How can I load updates from pilot to another pc using the ethernet cable?

    You would be better to use a flashdrive rather than an Ethernet cable. To connect using an Ethernet cable you need a crossover cable and then configure the network cards.

    I hope this helps.

  • How can I extract audio from a movie stored on the Photos?

    I have a new 6 iPhone more. Great phone and it records very well.

    On my Mac, OS X 10.11.1 El Capitan

    I used the phone and recently recorded a concert. I had a guy time to get the movies my phone is off. Is there a way to view the files from my phone directory?

    I finally got the film in Photos. Now, I can't do anything with them. I want to extract audio from movies and a CD of the concert.

    I found some third-party software, , but they cannot see the pictures.

    Also, the movies seem to have maxed out my iCloud storage. Another problem, but related. What is the best way to store/backup these images on my computer so that they are accessible from the finder, and will not be removed by synchronization?

    It is a bit nuts, IMO. Should be much more consistent and intuitive.

    Thanks for your help.

    Export the photo sequence: file-> Export, export unmodified: Original

    It's all about Photos.

    Further, use the Image Capture (in the Applications folder) for material like this.

    As for extract the soundtrack. Open the movie in QT player and then export it in Audio-only mode

    Export only the audio using QuickTime Player 10


    QuickTime Player gives you the option to export and share only the audio portion of your video. To export only the audio portion of your video, you can open your video in QuickTime Player. Choose export from the file menu. Type a name in the field "export as. Then on the Format menu, choose 'Audio Only' and click on export

    .

  • Extract images from database in reports

    Hi all

    I want to see pictures of the employee in my report.
    How to recover the images stored in the database in oracle report.


    I have try the image field in the reports, but it does not work it shows an error: cannot read the image data of the file


    Oracle reports 6i
    image format: .bmp

    Hello

    See here an example (video):
    FTP://FTP.Oracle.com/support/outgoing/dsegard/reports_images.swf

    the testimg table was created with the following statement:

    CREATE TABLE TESTIMG
    (
    The "ID" NUMBER
    'IMAGE' BLOB
    );

    Concerning

  • How to check the version of database Oracle

    Hello

    How can I check what type of database is used and what version?

    Can someone help me find out?

    You can try:

    SELECT * FROM V$VERSION
    

    or

    SELECT version FROM V$INSTANCE
    

    or

    BEGIN DBMS_OUTPUT.PUT_LINE(DBMS_DB_VERSION.VERSION || '.' || DBMS_DB_VERSION.RELEASE); END;
    
  • How to pass a value from table in to another using java-oracle script: apex 5.0

    Hello

    Step 1:

    Two Table (product, product 2)

    Created an IR where all data are from Table Product

    -> a cell in the column is editable.

    Step 2:

    Whenever the user change certain values of cell and click on the button set to day then cell value must also be updated in the table leader2.

    -> entire product line (table) must be inserted into the product 2 (table) with update of the cell value.

    JS:

    var arr_f01 = [];

    () $("input[name='f01']").each

    function() {}

    If ($(this).) Val() > 0)

    {

    arr_f01.push ($(this).) Val());

    }

    });

    (apex). Server.Process

    "Update".

    {f01: arr_f01,}

    {dataType: "text", success: function (pData) {alert ("' data inserted into the Table Product");}}

    } }

    );

    Thank you.

    Hi Dominique,.

    Pranav.Shah wrote:

    Hello

    Step 1:

    Two Table (product, product 2)

    Created an IR where all data are from Table Product

    --> A cell in the column is editable.

    Step 2:

    Whenever the user change certain values of cell and click on the button set to day then cell value must also be updated in the table leader2.

    ---> Whole product line (table) must be inserted into the product 2 (table) with update of the cell value.

    JS:

    var arr_f01 = [];

    () $("input[name='f01']").each

    function() {}

    If ($(this).) Val() > 0)

    {

    arr_f01.push ($(this).) Val());

    }

    });

    (apex). Server.Process

    "Update".

    {f01: arr_f01,}

    {the data type: 'text', success: function (pData) {alert (' ' data inserted into the Table Product ');}}

    } }

    );

    Thank you.

    Follow the steps below.

    Step 1: Give static id to the other columns in your interactive report

    Attributes of the region-> column-> Id static definition

    Step 2: change your Javascript code to read values of other columns

    check the line no 8, in this way, you can read the value of other columns and push that in table

    This is the static id of the column I given EMPNO.

    do the same for the other columns you want to insert.

    var arr_f01 = [];
    var arr_f02 = [];
    var empno;
    $("input[name='f01']").each(
    function() {
    if($(this).val() > 0)
    {
      empno = $(this).closest('tr').children('td[headers="EMPNO"]').text();
      arr_f01.push($(this).val());
      arr_f02.push(empno);
    }
    });
    
    apex.server.process (
      "Update"
    , {  f01: arr_f01, f02: arr_f02
      }
    , { dataType: 'text',success: function(pData){alert('Data Inserted in Product Table');
    } }
    );
    

    Step 3: use tables in your ajax process to insert the record., replace your table name and the columns

    begin
    for i in 1..apex_application.g_f01.count loop
    insert into test(A,B) values (APEX_APPLICATION.G_F02(i),APEX_APPLICATION.G_F01(i));
    commit;
    end loop;
    end;
    

    Hope this helps you,

    Kind regards

    Jitendra

  • How can I extract images from a .idml file?

    I have a 139 page InDesign file. I packed up the file so I could have all my images in a folder. Once the process is finished, one of the files has a .idml suffix and was almost 1 GB in size. I was hoping to get a folder with all the images in the file. If the images are in the .idml file, how do for them?

    Thank you

    In the new version of the ID of one of the options in the package is to include a file .idml for users who have an earlier version. This would be added a .indd and the links folder. That said, a .idml of 1 GB file is beyond huge and indicates either a massive corruption, or all your images are incorporated instead of linked (which could be an explanation of why there is no record of links).

  • How do remove you audio from a video and then use an audio of a different video to put in the first video?

    I have a video with good quality video but audio very bad, but I have another video of the episode even with the bad video but the sound quality. How can I remove the audio good video bad and replace it in the latest version of Windows movie maker on Windows 7 with audio video bad?

    Basically, you need to capture the sound quality to a separate mp3 file outside the filmmaker and then delete the wrong audio track and the good idea of layering.

    According to the source, this could be as simple as recording audio reading even if you end up with poor quality than the one you want to replace. If a file, it is possible to upload a video to mp3 converter.

  • How I melted in / fade from one region or follow using the VoiceOver screen reader?

    I don't know if I can fade / melted out of the individual regions on 10 GB. However, I want to fade into a main track. I don't know about the points of regions and automation, etc., I would just do this with VoiceOver? Garage Band is a powerful tool for recording for blind users, and I'm getting better and better. Adding a fade in or by customizing the fade out is the next step.

    Any ideas appreciated. We wish you a happy new year! M.

    The 'Mix' in Garageband 10 menu has a master's degree of ' Fade out ' for the complete project. If link you it to a keyboard shortcut, you should be able to use it with voice over.

    Unfortunately, there is no similar command of fade-in.

  • How to remove a password from a router have not used in like 4 years should be able to delete the password or reset it if I can put something new on it

    I have not used in like 4 years must either be able to clear the password or reset it if I can put something new on it. try to get the password required to connect to the web on a new device and can not remember the password I want to erase the password he please someone help me!

    Is what kind of router? Most routers have a reset on the back of them, you'll need something like a paper clip or pen to press the button. Basically you hold down the button for like 10 seconds, and all the lights start flashing, when this happens, you can stop it by pressing the button. When everything goes back to normal, we must reset factory default mind. The default ip address is usually 192.168.0.1 or 192.168.1.1, the username is usually admin and the password is password. Sometimes these are the admin admin, or admin without password, or no username and admin or password for the password. However it may be something completely different. If you have the make and model, I can tell you with certainty what it is :D

  • Install Oracle GoldenGate Linux to synchronize two schemas from database on a single server

    Hi all

    I have to synchronize two schemas from database (Oracle 12 c) in a single host RedHat Linux to demonstrate and understand the use of OGG V12.1.2.1.0. I try to do. But it's complicated and confused me because I am new to Oracle and Linux. I followed this tutorial ( install Oracle GoldenGate for Oracle 12.1.2 on CentOS/6.x to 6.x/RHEL Linux 6.x EL ). But it is difficult to understand how I can match with two diagrams of database on a single server.


    And I found this tutorial (Oracle GoldenGate on Linux: two-way replication of Oracle 11 GR 2 to Oracle 11 g 2). He said: "" If you have that one host, it may be useful to change the /etc/hosts file to create aliases forhost01.example.com and host02.example.com.". What it really means?

    The other seems to be useful. But it's totally different from 1. Is that this will help my job since I use 12 c Oracle Server?

    Can I get some tips to continue my task?

    Here's another tutorial - http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/goldengate/12c/OGG12c_Integrated_Replicat/index.html

    It has everything set up on a single Linux host.

  • How to extract pages from a pdf document?

    How to extract pages from a pdf document?

    Hi adobespurs,

    To extract pages from a PDF, you must use Acrobat. If you do not have Acrobat, you can try it free for 30 days. Please visit www.adobe.com/products/acrobat.html for more information.

    Best,

    Sara

  • Hide information from database - reports 10g

    Hi friends,

    How to hide the info from database when running reports from 10 g.
    IE "userid/password@connstring".

    Thanks in advance...

    Kind regards

    Hello

    A few notes:

    1. you need an entry like this in the cgicmd.dat file:

    Key1: userid=scott/tiger@dbalias % *.

    2. except if the RELOAD_KEYMAP parameter is set to YES in rwservlet.properties

    http://download-UK.Oracle.com/docs/CD/B14099_17/bi.1012/b14048/pbr_conf.htm#i1007431

    You must restart the OC4J_BI_Forms after the change of cgicmd.dat

    concerning

  • How to insert image from mysql into the table using php and create the checkbox in the table?

    How can I insert image from mysql into the table using php and create the checkbox for each data as a vote? Here is my code...

    WELCOME

    connect_error) {die ("connection failed:".)} $conn-> connect_error); } $sql = "SELECT no, Calon, ID, of course, the Image OF THE candidates." $result = $conn-> Query; If ($resultat-> num_rows > 0) {echo ' '; export data of each line while ($row = $result-> fetch_assoc()) {"echo"}}
    NO Candidate INFO Vote
    " . $row ["no"]. "-" . $row ["Calon"]. "
    -" . $row ['ID']. "
    -" . $row ['class']. "
    "; } ECHO ' ' ;} else {echo '0 results' ;} $conn-> close();?} >

    hope someone can help me because I am a newbie in this program... need to finish this project... Thank you.

    If you have saved the file name in the database, it's pretty simple.

    echo '' . $row['description'] . '';
    

    Is the same for the box:

    echo '';
    

    If you have saved the image file in the database, it is much more complicated. I recommend you store only the file name in the database.

Maybe you are looking for