Creating BA using DB link

Hi
I am on Discoverer 10g on Oracle DB 10g. I have a EUL created in a schema 'EUL1'. I have the data in a different schema in a different database instance 'WB1' .
I am trying to create a Business Area connected as EUL1 in disco admin.
I have a public DBlink in database where EUL1 is present. I have made the required tables in WB1 as public. The DBlink is created so that the connection is by WB1 user, hence there should not be any problem in accessing these tables through this db link. Through this DBLink I am able connect to WB1 and select data from EUL1 through SQL, there is not problem at all.
The problem is when I am trying to create this BA, I selected the db link instead of the default one and then I selected the schema 'WB1', but when I expand this schema, I dont see the objects in WB1.
Am I missing something. Can somebody please help.
Thanks

Hi there,
You don't get to see the object name using a DBLink.
What you can do is:
- Create a new schema/user on the same database which has EUL1.
- Create a view/materialized view on this new schema accessing data from WB1 using the DBLink.
- include the database object created in new schema to the business area.
This would be the best and lot cleaner approach to use.
Let me know how you get on.
Best Regards,
Manish

Similar Messages

  • Logical error in creating tables using db link in solaris

    Hi,
    While creating table using the syntax create table newtab...as select * from tab@dblink .. I am facing a problem. The newtab table created is having a structure different (from datalength point of view of varchar2 and char datatypes) from the source. The data length is getting tripled i.e. if a column a is varchar2(20) in tab then it is becoming --- a varchar2(60) in newtab. This is happening in solaris environment when the two databases are in 2 different servers. Please let me know if there are any patches to resolve the problem.
    Thanks
    Arnab

    ORA-02019: connection description for remote database not foundHave you used this database link successfully for some other queries?
    The error posted seems to indicate that the DB Link is not functional at all. Has it worked for any other type of DML operation or is this the first time you ever tried to use the link?

  • Creating user using database link

    Hi
    I have 11g installed on one of the server
    I have created the database link BUGAU to bugau.us.oracle.com
    link works fine
    select * from table@"Bugau" gives the expected result
    I need run the below statement from my server using the dblink.but not sure how to use the dblink for this purpose.Please assit
    CREATE USER ABC IDENTIFIED BY welcome DEFAULT TABLESPACE USERS_001 TEMPORARY TABLESPACE temp123;
    GRANT DEFAULT TO abc;
    ALTER USER abc PROFILE LEVEL_1;
    Thanks
    Archana

    as mentioned in oracle documentation for db link purpose: you can use it for accessing schema objects in remote database..
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28286/statements_5005.htm
    >
    Use the CREATE DATABASE LINK statement to create a database link. A database link is a schema object in one database that enables you to access objects on another database. The other database need not be an Oracle Database system. However, to access non-Oracle systems you must use Oracle Heterogeneous Services.
    After you have created a database link, you can use it in SQL statements to refer to tables and views on the other database by appending @dblink to the table or view name. You can query a table or view on the other database with the SELECT statement. You can also access remote tables and views using any INSERT, UPDATE, DELETE, or LOCK TABLE statement.
    >
    For creating users, you have to login to the remote database itself, You also need to login using the user who has the necessary credentials to create the user.
    Regards,
    Dipali.

  • Creating trigger using database link

    I need to create the trigger from local server B using Dblink(whereas the dblink points to the remote server A)
    Action of the trigger:
    After every insertion of the record in the 'Table1' from the Remote DB Server A , the newly inserted record should parallely inserted into the 'Table 2' of the local server B
    Kindly help me out to do
    _ BY
    Rajan

    I tried to create the trigger but it throws like DDL operations are not allowed in the remote database.
    Following is the script, I have tried
    CREATE OR REPLACE TRIGGER ROUTE_TRIGGER AFTER INSERT ON ROUTEDECISION@DBLINK1
    FOR EACH ROW
    DECLARE
    BEGIN
    INSERT INTO routedecision_rptdb(a1,a2) values(:new.a1,:new2.a2);
    END;

  • M View Using DB Link ??

    Dear Guru's,
    DB_VERSION=10.2.0.4
    OS_VERSION=Windows 2008 R2
    RAM_SIZE=32 GB
    We have 2 production (OLTP) database( DB1 (18GB) and DB2 (200GB) ) on a server out of which DB2 database has almost 20 Materalized Views all (REFRESH FORCE ..ON DEMAND).
    I have already informed the client that this is not the OLAP database where you are going to make use of the M Views for reporting purpose.
    However currently the client does not have any alternative.
    Breif details :-
    Out of 20 M Views 3 refresh once a week and where as the rest refresh every night daily.
    We are currently testing a new website for which we had to re-schedule all M Views from their Old timings to New Timings i.e. Daily Basis.
    But post re-scheduling the database performance was badly degarded as the database was too slow also the number of archives increasted to 300GB which was earlier 100 GB.
    To resolve the issue , we had to go back to the old timings and the database is currently working fine.
    Requirement :-Client is looking out for an alternative solution as he needs to once again change the M View refresh time i.e. Daily Refresh.
    We already have 2 Oracle Instance on the server
    Questions :-
    1. Can i create another database ( sayTESTDB2 ) in no archivelog mode and create a db link to reduce the load on the server ?
    2. If Yes .. Then is there any relavent link /example or Metalink Note ID for the same??
    3. What all parameters do i need to consider while creating a DB Link ?
    3. Out of 32 GB RAM , I have given 4GB and 8GB sga_max to DB1 and DB2 Respectively . Also the cpu utilization is normally 50-%60%.
    Since currently we do not have any Licence for other server ..
    Can i make use of the same server ( i.e. creating 3 rd Oracle Instance )Will it be a good idea ?
    Since the main intention of this activity is reduce the load from the DB2 onto TESTDB when the daily refresh has set once again.
    Appreciate your suggetion.

    Thanks every one.. I have made it finally ..
    Here is the requirement :-
    10G (UAT Database) Table where we need to create MViews using DB Link
    PROD(Target database)- Has TGT_OWNER schema under which all 20 MViews are present.
    1.Added tnsentry of target database i.e. PROD onto the 10G(UAT) Server :
    tnsentry:
    PROD =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = X.X.X.X)(PORT = 1528))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = PROD)
      )2. In 10G(UAT DB), Created a test tablespace GIRISH
    3. In 10G(UAT DB), Created GIRISH user with GIRISH default tablespace
    4. Given CONNECT,RESOURCE,CREATE ANY MATERIALIZED VIEW grants to GIRISH user
    5. connected to girish/pwd
    10G>show user
    "GIRISH"
    6. created db link
    10G >create database link "PROD.ORACLE.COM"
    2  connect to TGT_OWNER
    3  identified by <pwd_of_tgt_owner>
    4  using 'PROD';
    database link created.7. Verfied if the db link is working fine by query one of the TGT_OWNER table present in the target database:
    10G >SELECT COUNT(1) FROM [email protected];
    COUNT(1)
      13848. Editied the M View script copied from the toad.
    Where i have changed the OWNER_NAME,TABLESPACE NAME,Added DB Link in from clause of the target database
    10G> Show user
    "GIRISH"
    10G>CREATE MATERIALIZED VIEW GIRISH.MVIEW_TEST
         PCTFREE 10 PCTUSED 0 INITRANS 2 MAXTRANS 255
         STORAGE(
              INITIAL 64 K
              MINEXTENTS 1
              MAXEXTENTS UNLIMITED
              PCTINCREASE 0
              BUFFER_POOL DEFAULT
    TABLESPACE GIRISH
    LOGGING
    NOCACHE
    NOPARALLEL
    USING INDEX      PCTFREE 10 INITRANS 2 MAXTRANS 255
         STORAGE(
              BUFFER_POOL DEFAULT
    REFRESH FORCE
         ON DEMAND
         START WITH TO_DATE('14-Jul-2012 01:00:00','dd-mon-yyyy hh24:mi:ss')
         NEXT sysdate + 1
         WITH ROWID
    USING DEFAULT LOCAL ROLLBACK SEGMENT
    DISABLE QUERY REWRITE AS
    select distinct a.invfname Customer_Name,b.foliono FolioNo,c.short_name Scheme,b.amount Amount,b.brokcode Broker_Code,b.dateexec Sip_Due_Date from
    [email protected] a, [email protected] b,[email protected] c
    where a.foliono=b.foliono
    and b.schcode=c.sch_code
    and dateexec between sysdate and sysdate+30
    and ceasedt is null;
    Materialized view created.Thanks once again ..It was a wonderful learning with Oracle :-)
    Good Day !!!!
    :-)

  • Creating a document & making it accessable on the web using a link.

    There is an issue I want to address to the forum. I don't want to clutter up my posted topic with an entire page of information that is rellevent to my topic. How can I create a document that other Apple Discussion members can view it using a link? Where can I "put" it so that it's accessible?
    iMac G4 (snowcone)   Mac OS X (10.4.7)  

    Most any ISP you have will give you storage space, then it's easiest to ftp it to your storage, then post the URL like this...
    http://web3.ehost-services.com/bdaqua/
    I use TransmitX, but other free ftp APPs exist like Cyberduck. If you vist your ISP's site it should tell you jow to do it... if not post back with your ISP and I'll help further!

  • How to create links and how to use that links to go to other pages?

    my question is....how to create links...i mean by using make link option.....when we do right click on a word,etc in the design view.....and my other question is.....how to use that links to go to other pages.....i mean when i click on a link...it takes me to another web page.....

    Please do not post the same subject to more than one forum.

  • How to create & use database links

    i have 2 databases (oracle 8.1.6) and (oracle8.1.5)
    i want to call a function of one d/b from another
    i think this is possible via databse links.
    how do i go about creating and using them
    can someone guide me to a site or post an example .
    what all changes do i need to make in my configuration settings of the databases
    null

    Yes, you can do this with database links.
    Please see: http://otn.oracle.com/docs/products/oracle8i/doc_library/817_doc/server.817/a76960/ds_admin.htm#22393
    null

  • Is there a way to create a button that links to a website?

    Is there a way to create a button that links to a website?
    I was reading up that it's possible to this with menus, and tracks but can you do it with a button and how?
    I am hoping to create a button that people viewing my discs on a computer can click on the link and their web browser will pop up and take them to a website.
    Any help is appreciated.
    Thanks.
    -Fraky

    dvd@ccess questions are being asked once a week on this forum, so I'll repeat why it's useless:
    - Mac users have to enable the feature in the preferences of DVD Player in order to for the links to work.
    - PC users have to install a small application on their PC, and they have to reboot the PC in order for the links to work.
    - On top of this, it's still unreliable, and may not work on some computers.
    It's a dog: Don't use it.

  • How to create text buttons that link to video?

    I've finally gotten around to trying DVD SP, and even though I read the whole manual, it's not at all clear if, or how, you can create text buttons that link to the video you want to play, without displaying a clip of that video in the button itself.
    I have no problem creating a text button, but I can't change the font, and editing is counter-intuitive, unlike iDVD. I'd use iDVD, but it doesn't accept .m2v files, and it seems to think that my 6 videos of about 43 minutes each are too large for a DVD+DL disc, so it won't let me burn it or save it as a disc image.
    Does anyone have a way out of this conundrum, or am I SOL?
    Mulder

    It really isn't that hard!
    As Drew said, go into your menu and click and drag to create a button rectangle. With the button highlighted, look in the property inspector at the bottom and type in the text that you want to use. Ensure that you 'include in button highlight' and then set the colour choice for selected and activated.
    What you get is a simple line of text which illuminates when you roll over it, and changes colour when you click on it.
    Once that is done, click on the button area again and set the target to go to the piece of video that you want to have play back.
    You should also set the menu call and end jump on that track to make sure your viewer can get back to the menu.
    Once that is done the menu will show as a simple piece of text (more buttons means more bits of text, and the first button will be highlighted by default) and no video will play until the button is activated.
    DVDSP is definitely a steeper learning curve than iDVD but for very good reasons. You get far greater control and access to far more advanced features in DVDSP. This means that some things will seem harder, whereas in fact they are just different and the process for achieving the result you want is different. Much of what you want to know is in the manual and also in the tutorials which came with the app. Failing that there are several good online spaces where you can find a lot more information... not least of which is right here, of course!

  • Using text links to open accordion panel

    How do I use text links (from the page's main menu) to
    programatically open a particular panel.
    here is the page:
    http://debrankin.com/tee/SITEDESIGN/
    for example: I want to click on "Resumes and Cover Letters"
    in the left hand menu to open the first accordion panel (by the
    same name). I have this set this page so that all panels are closed
    initially.
    i know i'm missing something because this obviously does not
    work: i've looked for documentation and this issue is inadequately
    addressed!

    twinflame wrote:
    > i know i'm missing something because this obviously does
    not work: i've looked
    > for documentation and this issue is inadequately
    addressed!
    Not really. The problem is that you have attempted to create
    a
    JavaScript object called accordion1 before the accordion HTML
    is even
    loaded into the browser. Moreover, the script that
    initializes the
    accordion is already in your HTML where it should be (after
    the
    accordion), but it uses Accordion1, not accordion1
    (JavaScript is
    case-sensitive.
    Remove this after your menu.
    > <script type="text/javascript">
    > var accordion1 = new
    Spry.Widget.Accordion("Accordion1");
    > </script>
    Change the links in the menu to Accordion1.openPanel(0),
    etc., and it
    should work.
    David Powers
    Adobe Community Expert, Dreamweaver
    http://foundationphp.com

  • How to use quick link property in the km navigation iview

    Hi all
    I have requirement.
    T structured lables
    one on top and rest 12 at the bottem in 3 columns, 4 rows.
    when i click the lable it should connect to a  respective folder in the KM
    this entire page have to be connected to a folder link...ie when i click this folder link this page with T structured lables have to come and when i click each lable respective folders should open...
    so for that i have created  one KM Document iview(this is like heading in the page) and 12 KM Navigation iviews(pointing to  respective folders)
    after that which layout will be suitable for this in page layout???
    if i add all iviews into a  one single page
    how to connect lables to folder???
    one of my friend have suggested to use '"quicklink'" property along with html page...???
    how to use it ???
    so pls do help me???
    my dead line is by today evening i.e 2.12.08
    pl do reply me as soon as posible
    thanks and regards
    Gayathri vuthukota

    hi Nikhil
    cau u explain me in detail please.
    I have done with HTML page and attached to Km document iview.and i have my 12 Km navigation i views.
    Then create static Links on HTML page to navigate to other iviews. It can be created by using the Insert link in Km tool of the html editor available in Km. For opening a url iview from a link you can write this for executing the 'donavigate method' to open the iview you needed.???
    what is EPCF client eventing???
    thanksn regards
    Gayathri

  • How to use external links to show a specific page with a parametrer ?

    Hi everybody,
    we discovered an annoying problem while we were developping applications who are sending emails after creating a new record. We are creating a valid APEX link which call our applications correctly, on the right page, and with the right parameter. The first time we log in, it works perfectly. The problem is when the user is trying to call an other record from the next email. It's not working unless we close our session. I guess it's a protection against hacking, but we can't ask the user to connect and disconnect every time they wants to watch a specific record directly from a mail ?
    The only way I can imagin to resolve this problem, is to open a page that will show all the newest entries in the table from a parameter. It could work for our applications that requires a lot travel between records.
    Do you have any other solution we could use ?
    Thanks
    LeinadJan
    Edited by: leinadjan on 2010-08-24 11:40

    Not the application, the page their are accessing.. Since you are using check-sums on the links and some sort of authentication, unless you build your authentication to allow a certain user access via e-mail, you will have issues.
    Have you seen this example of doing a survey through e-mail in APEX?: http://apex.oracle.com/pls/otn/f?p=9487:28:426474841717567::NO:28::
    It MIGHT offer you some help....
    Thank you,
    Tony Miller
    Webster, TX
    A lady came up to me on the street, pointed at my suede jacket and said "Do you know a cow was murdered to make that jacket?"
    "I didn't know there were any witnesses", I replied " Now I'll have to kill you too"

  • Is there a way to link or create a widget that links back to the iTunes U app on your iPad from your iBook?

    Is there a way to link or create a widget that links back to the iTunes U app on your iPad from your iBook?
    I have already found the Apple Widget Builder (http://widgets.itunes.apple.com/builder/) and that works fine if you want to link to the "App Store", but I want to know if there is a way to "open an app" that is already installed on the iPad instead of double tapping the home button to switch between apps. (I know using the home button is very simple, but I am trying to find an even easier way to just "tap a widget" or "link" that will open iTunes U right up) I am only asking if this is possible for people who may have a hard time running an iPad at the beginning.
    I appreciate any help, thanks!

    I appreciate your help, but I had already looked at LinkMaker and I thought that was my answer, but as far as I could tell that still only links to an app in the app store. Yes it will link to iTunes U in the app store and you can then hit Open, but that is too drawn out of a process. We would like to know a way to just open the app directly.
    Thank you!

  • How to show Html5 created in eclipse and link to any cloud application like c4C through HCP

    Hi Experts,
    How to show Html5 created in eclipse and link to any cloud application like C4C through HCP 
    Regards,
    Vijay.

    Your question is very unclear, please elaborate what you are trying to achieve.
    Also, did you click on the Alert Moderator link? This is for reporting abusive content, spam, points cheating, etc. It should not be used w/o a reason (one of the above) as what it does is putting the content in the Moderators' queue and hiding it from public view.

Maybe you are looking for