Data from three instances

I have view that is same in all the three instances. I want to be able to pull data from all the three instances into the same subject area. Basically do a UNION of all the data. Here are the issues:
1. Physical layer, i created three connection pools and dragged the views (they are all named sample_view) in. I am trying to do a join, but by default i am only able to do 1 to N relationship only. I went ahead created it.
2. BMM layer, i created a new LTS to pull the views from other connection pools. But i dont want to do a join, which will pop up an error/warning if i dont.
This may not be the best way, but i was giving it a try in OBIEE before i ask my DBA to create a view with all data from all three instances in the same one. Please advise if anyone has experienced this situation before.
Thx!

Why don't you use fragmentation?
http://108obiee.blogspot.com/2009/01/fragmentation-in-obiee.html
If you need similar to UNION why do you need join?
Explain a little bit more please..
Regards
Nicolae

Similar Messages

  • How to import data from one instance to other

    Hello all,
    I want to modify the data in one dev instance from production instace ,but in same table can any help me out with command how to retreive the data from other instance
    example:
    I want to change the email address of a person in per_all_people_f table in development instance which has the accurate data in production instance ,I am using the update statement how should I relate them and how to change the value?

    You can create one dblink in dev db to Production db with the user/schema the live table belongs. Then you can accesss the live table in dev db.
    eg.
    Run in Dev db
    create database link "live_db.WORLD"
    connect to live_user
    identified by <pwd>
    using 'live_tns_name';
    select * from live_table@live_db;
    Now the remore live table is available in dev db just as if a local table.
    You can play with its data.
    But remember to remove the dblink after your work is done.
    drop database link live_db; does the work
    cheers...
    Message was edited by:
    golden Arrow

  • Preserve data from one instance of a workflow to another

    Hi all,
    I have a quite general question which has been bothering me for a while. It has to do with preserving data between instances of a workflow.
    What I need is to preserve some data from one instance of a workflow (as a task in the WF) and then stall the WF for some time - actually it must be stalled until another workflow finishes (this second WF should batch a number of tasks which should be sent (together with all the data) in a form to a different user).
    However when this second WF finishes it must thus send a "continue message" to all the instances of the first so that they can continue from their previous states.
    I hope you can understand the scenario, otherwise I'll try to elaborate further.
    If you could have some hints for what activities in the Workbench I should use and some pointers for pitfalls I would be very greatful.
    Thanks in advance
    Sincerely
    Kim Christensen

    Can't you just add your other workflow (child) as as step in the main workflow and set the Invocation Policy to "Wait for Response". This will ensure the main workflow will wait for the end of the child workflow.
    Jasmin

  • Fetch data from three different Essbase cube in to Reporting

    Hi Experts,
    I want to know how to fetch data from three different Essbase cubes in to HFR or smart view reports.

    If you create a multiple data source Financial Reports report, you get the best of both worlds:
    1) No code required reports
    2) You can view the reports in Workspace
    3) You can view the FR reports in SmartView
    Unless you really need it, I wouldn't go down the SmartView/VBA path, especially as you lose all ad-hoc capability with a mutli sheet retrieval with code. There are costs associated with going down the path of template reporting (which is what you are now talking about). See this thread for a good discussion of those costs:
    http://www.network54.com/Forum/58296/thread/1300202750/Template+Coding+Smartview+or+Classic+-Opinionson+time
    Remember, the people posting in this thread are pretty experienced practitioners, so unless you are a code god, I would multiply the estimates by 1.5 or 2 or 3, especially if you're learning the VBA functions for the first time.
    Just my $0.02.
    Regards,
    Cameron Lackpour

  • How to get data from three tables (A,B,C) having one to many relation between A and B .and having one to many reation between b and c

    i have  three tables A,B,C.  there is one to many relation between A and B. and one to many relation existed between table b and c . how will get data from these three tables

    check if this helps:
    select * --you can always frame your column set
    from tableA a
    left join tableB b on a.aid=b.aid
    left join tableC c on c.bid=b.bid
    This is just a general query. However, we can help you a lot more, if you can post the DDL + sample data and required output.
    Thanks,
    Jay
    <If the post was helpful mark as 'Helpful' and if the post answered your query, mark as 'Answered'>

  • Fetching complete PM data from SAP instance for reupload

    Hi,
    Is there any way out to fetch out the complete SAP PM master/ transaction data from existing SAP instance as ready reference or almost exact for uploading into another instance?
    Please suggest some effecient way with reduced effort
    Thanks
    -Lucky

    Lucky
    I'm assuming you don't want a full production copy..
    And there is not a standard tool to extract all PM data..
    But you should be able to use standard tools like the list-edit reports, LSMW, IBIP, etc.
    PeteA

  • Selecting data from three tables

    Hi Every one...
    I have three tables, Tbl_FlData, Tbl_Flsubdata,Tbl_OutDirection_Dtl, in these tables the common columns are OUTNO, OUTYEAR. When I am trying to pull data from two tables Tbl_Fldata, Tbl_OutDirection_Dtl by using below query I am getting exact output what i want.
    SELECT Tbl_FLData.OUTNO, Tbl_FLData.OUTHDATE,Tbl_OutDirection_Dtl.OTSERNO FROM Tbl_FLData INNER JOIN Tbl_OutDirection_Dtl ON Tbl_FLData.OUTYEAR = Tbl_OutDirection_Dtl.OUTYEAR AND Tbl_FLData.OUTNO = Tbl_OutDirection_Dtl.OUTNO.
    But the problem is, when I am trying to pull a column from Tbl_FlSubdata.Remarks the out put is coming but the records are duplicating.
    The fields of the tables are
    Tbl_FlData: OUTNO, OUTYEAR, OUTHDATE, SUBJECT,USERDEPTCODE, FDEPTCODE, SENDHDATE, REPLYINDAYS, EXPECTEDHDATE, UD_UID
    Tbl_FLSUBDATA: OUTNO, OUTYEAR, OTSSERNO, SEQNO, EMPCODE, SEQHDATE, REMARKS, UD_UID
    Tbl_OutDirectionDtl : OUTNO, OUTYEAR, OTSERNO, DI_Code, REPLYHDATA, INNO, INHDATE, IN_UD_UID, IN_REMARKS.
    Please help me in this issue.

    Hi,
    Try something like this.
    SELECT distinct Tbl_FLData.OUTNO,
    Tbl_FLData.OUTHDATE,
    Tbl_FLSUBDATA.OTSSERNO
    Tbl_OutDirection_Dtl.OTSERNO
    FROM Tbl_FLData, Tbl_FLSUBDATA, Tbl_OutDirection_Dtl
    where Tbl_FLSUBDATA.OUTNO = Tbl_FLData.OUTNO(+)
    and Tbl_OutDirection_Dtl.OUTNO = Tbl_FLData.OUTNO(+)
    order by Tbl_FLData.OUTNO;
    considering Tbl_FLData as the master table. If there are any other unique fields like "out_no" include it a way as above after "where" with a (+) join and see if you still get duplicates.

  • How can i Delete the data from three tables at a time  using same key.

    I am New to Oracle ADF, I have a Requirement Like these, I have three tables like Employee,Salaries,Teams all of these are having one common EmpNo as common attribute, I have Search form these will return the all the employees related to that search query, when i click on Delete button the particular employe Data should delete from all the three tables based on the EmpNo.
    Any Help is appreciable..

    1) The easiest way is to mark the foreign key constraints from SALARIES to EMPLOYEES and from TEAMS to EMPLOYEES as ON DELETE CASCADE. The DB server will then delete the necessary rows whenever you delete an employee row.
    2) Another way is to implement a Before-Delete-Row DB trigger on the EMPLOYEES table where you can delete the related rows in the other tables (have in mind, that if you have foreign keys you may get a Mutating Table Exception, so this approach might be not very good).
    3) An ADF way is to implement a custom EntityImpl class for the Employee entity and to override the remove() method where you can lookup the related TeamMember and Salary entities (through EntityAssoc accessors) and invoke their remove() methods too.
    4) Another ADF way is to implement a custom EntityImpl class for the Employee entity and to override the doDML() method where you can delete the necessary rows in SALARIES and TEAMS tables through JDBC calls whenever a DELETE operation is being performed on the underlying Employee entity.
    Dimitar

  • Fetching data from three tables.

    Hi All,
    I am having three tables company(com_id(PK),com_name),
    contact(contact_id(PK),com_id(FK),first_name,email),
    location(loc_id(PK),com_id(FK),country).
    I need a query to retrieve the first name,email,com_name and country.
    I used:
    select contact.first_name,contact.email,company.com_name,m.country from contact
    LEFT JOIN location m ON contact.com_id=m.com_id
    LEFT JOIN company c ON contact.com_id=c.com_id
    but its returning duplicate rows.
    I am new to this .Please tell me how to solve this problem.
    thanks,

    Jeeth wrote:
    Hi
    Thanks to all for the reply..
    I am using Oracle 10g
    Version:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - ProductionThat says you're uising Oracle 11 (11.2.0.1.0 to be precise), not 10.
    ... And the LOCATION Table containing:
    COM_ID     ADDRESS_ID COUNTRY
    28     1265     United States
    28     1266     United States
    381     381     United States
    610     1873     United States
    864     1586     United States
    869     870     United States
    2414     2662     United StatesPost CREATE TABLE and INSERT statments for your sample data.
    It helps if you explain what the data means. For example, this problem seems to hinge on location.com_id not being unique. What does each row, and each column, in the location table represent? What does each row in the output represent?
    Tried the Query:
    select d.first_name, d.email ,c.com_name , m.country from company c,contact d,location m
    where c.com_id=d.com_id and c.com_id=m.com_id
    I got the result: The second row is repeating:
    Alexander     [email protected]     JPMorgan Chase &amp; Co. (KEY ACCOUNT)     United States
    Alexander     [email protected]     ADP, Inc.      United States
    Alexander     [email protected]     ADP, Inc.      United States
    Alfred     [email protected]     Perficient Inc.     United States
    Allan     [email protected]     Progressive Insurance     United States
    Linda      [email protected]     Principal Financial Group, Inc.     United States
    Alycia     [email protected]     Emerson Electric Co. (KEY ACCOUNT)     United States
    Want output like:
    Alexander     [email protected]     JPMorgan Chase &amp; Co. (KEY ACCOUNT)     United States
    Alexander     [email protected]     ADP, Inc.      United States
    Alfred     [email protected]     Perficient Inc.     United States
    Allan     [email protected]     Progressive Insurance     United States
    Linda      [email protected]     Principal Financial Group, Inc.     United States
    Alycia     [email protected]     Emerson Electric Co. (KEY ACCOUNT)     United States
    Why do you want that ouptut, and not the output that you're originally getting?
    What output would you want if the part you were displaying were different on each row. For example, if we add a row like this to the sample data:
    COM_ID     ADDRESS_ID     COUNTRY
    2414     2663          MexicoThee are many different reasons why you could want the output you do. Each one has a different solution, that would produce different results with different data. You need to explain what you want to do, then someone can help you find a way to code it.
    The simplest way is to say SELECT DISTINCT . That happens to get the right results with the given sample data.

  • Save form as the form data from three fields

    I'm using Adobe Pro 9.0.0 and LC ES. I am trying to take three fields of data, like: Number, date, and name. Add or merge them together to be placed into a hidden field, then when the user selects the SAVE button I need a script that will get the hidden field data and insert it as the filename to be saved to a specific path. Is this possible?

    See this tutorial on the subject: http://acrobatusers.com/tutorials/how-save-pdf-acrobat-javascript

  • APEX Sequence number when passing data from different instances

    Hello there,
    I have a question for you guys.
    I have an application sitting in my Production area, and the one in test needs to be up-to-date (the data). So I grab the excel file, truncate the table in my test area and load the table from prod into the one in TEST.
    The problem with this is that when I tried to insert a record to the table it gave me the unique constrain error. Because the sequence for the table in test next number is 500 and the last number (primary key) in PROD is 10,000.
    I tried to change that number in APEX but it won't alow me to. The only thing I can change is the minimum and the maximum value.
    Can I change the min to 10,001 so it can now start fro there or what would you recommend to shance the last sequence number of the table to 10,001?
    Regards,
    Ruben Tapia

    Hi,
    Copy your sequence SQL e.g. to notepad. Drop that sequence.
    Edit SQL in notepad by changing number after START WITH to be 10001.
    Then just recreate sequence from your edited SQL =)
    Br,Jari

  • Importing data from multiple instances of form into spreadsheet

    I am trying to set up a time-tracking system using an interactive PDF form. I have designed the form, and it works great. All users will enter their time into the form and email me the form. So I will have multiple XML file to import into Excel, where I can compile and analyze the data.
    Is there a way to automate the importing of these multiple XML files into Excel? From what I've figured out so far, it seems that I will have to manually import each XML file into Excel, and this seems too labor-intensive. I'm sure there's a better way.
    Any hints?

    Give Acrobat a try. Put all your XML data into a single location. In Acrobat, choose File | Form Data | Create Spreadsheet from Data Files. Once the file has been compiled, use the "View" option to see the data in Excel.
    Carl Young
    www.pdftrain.com

  • Getting data from three tables

    I have 3 tables
    SQL> select * from t1;
    C1
    d1
    d2
    SQL> select * from t2;
    C1 C2
    d1 g1
    d1 wf1
    d2 g2
    d2 wf2
    SQL> select * from t3;
    C2 C3
    wf1 open
    wf1 closed
    wf1 closed
    wf1 cancelled
    wf2 closed
    wf2 cancelled
    wf2 closed
    I would like to join rows from t1 and t2 for no t3.c3='open' ie the result I want is:
    C1 C2
    d2 wf2
    d2 g2
    Thanks

    Am afraid, if you look at it logically from your table structure, you can see you only have one data open. So the result you expected to get as stated is wrong.
    I believe this is the correct answer
    SQL> select a.c1, b.c2, c.c3 from t1 a, t2 b, t3 c where a.c1 = b.c1 and b.c2 = c.c2 and c.c3 = 'ope
    n' order by 1;
    C1 C2 C3
    d1 wf1 open
    Cube60

  • Qurey for pulling out data from three tables... Pls help me out.

    Hi..
    I have three tables linkdetails, wingdetails and vendordetails. A link is connecting two wings... and link is provided by a vendor.. So the fields of linkdetails are---- linkdetails: linkid , linkname, vendorid,wing_a_id,wing_b_id
    vendordetails: vendorid, vendorname, contactnumber
    wingdetails: wingid,wingname,city
    So i want a query that retrieves all the fields from linkdetails, vendorname from vendordetails wingname corresponding to wing_a_id, wingname corresponding to wing_b_id from wingdetails for a particular linkid..
    Thanks in advance

    maybe something like:
      select ld.*,
             vd.vendorname,
             wda.wingid   wingid_a,
             wda.wingname wingname_a,
             wdb.wingid   wingid_b,
             wdb.wingname wingname_b
        from linkdetails   ld,
             vendordetails vd,
             wingdetails   wda,
             wingdetails   wdb
       where ld.vendor_id = vd.vendorid
         and ld.wing_a_id = wda.wingid
         and ld.wing_b_id = wdb.wingid
         and ld.linkid    = &linkid;

  • Fetch the data from three tables

    hi
    i have three table HR,plan ,voidplan
    HR table
    rep_id name
    1111 shyam
    2222 kavi
    3333 snaga
    PLAN table
    id rep_id name status
    1 1111 shyam approved
    2 2222 kavi pending
    VOID PLAN table
    id rep_id name status
    1 1111 shaym approved
    i got the row which is same in two table(HR and PLAN) using the query
    select rep_id from plan p,hr h where h.rep_id=p.rep_id and status='approved'
    so the output is
    rep_id
    1111
    now i need the solution to retrieve the rep from voidplan+plan table
    the result should be like this
    rep_id
    1111(from plan and hr)
    1111(void plan)
    please help me to solve this problem
    regards,
    vally.s

    how about UNION ALL
    select rep_id from plan p,hr h where h.rep_id=p.rep_id and status='approved'
    union all
    select rep_id from void_plan
    this will get only the rows that join and then ALL rows from void_plan (but I suspect this isn't what you want?)
    maybe you only want rows from void_plan that are returned from the first query
    select rep_id from void_plan v
    where v.rep_id in (select rep_id from plan p,hr h where h.rep_id=p.rep_id and status='approved'
    )

Maybe you are looking for

  • Digital Signatures Missing

    hello.. when i downloaded the installer for the "plugin" version of FP 11.7.700.232, for use with "windows xp" and "firefox", i noticed that the installer didn't have a digital signature.. i would think that it is supposed to be digitally signed.. i

  • How do I get my older apple log in info ?

    unable to do updates on iPhoto and iMovie , error message says ' you need to sign in with the apple ID you used to purchase apps', have forgotten my old apple info. Is there a way to get hold of former apple login information?

  • Converting Double to String without exponent

    Hi all, I am reading some values from Excelsheet using apache POI library. I have large numbers that need to stored into database as string and not numbers. hence, while reading the excelsheet values, i convert these number.. and the are received as

  • Charts appear in front of date picker, help messages, developer buttons

    In Apex 4.1, with Internet Explorer, if we have charts on the form, objects like date-pickers, help text, etc. appear behind the chart. They pop up (or drop down) in front of the chart's region, but behind the chart. So if I have a search criteria re

  • Rollback with rman level 0

    Hello all, I am very new to oracle and i wanted to know if i have a full level 0 rman backup (with archive log ) that i have taken today(2/9/2012 13:00 pm cst).... and now the questions is... is there anyway possible or is oracle is capable of rollin