Displaying Relations Between Tables In Oracle 10.2.0.3

Hi Everyone;
I am in urgent need to display all the relations between tables of a Dbase in Oracle 10.2.0.3 version dbase. I use a server 2003 R2 machine and a developer tool TOAD for oracle v9.7 as ODT. If anyone have a clue please i need it.Sincerely
Best Regards
Ömer KAYA

Hi Ömer
You can with those tools read the configuration and get the actual ERD model from the database, so you will be able to see the relation in the tables.
Please try that tool
http://www.download32.com/modelright-3-for-oracle-i38008.html
Product stands "Do you need to design, visualize or document your Oracle database?"
In TOAD tool you are also able to do it: Reverse engineer already existing database structures and see the existing database structure in form of a diagram.
Regards,
Hubert
P.S. looking forward to get your "precious" points ;-)
Edited by: Hub on Oct 27, 2008 2:28 PM
Edited by: Hub on Oct 27, 2008 2:35 PM
Edited by: Hub on Oct 27, 2008 2:54 PM

Similar Messages

  • Tool for viewing the relation between tables.

    Hi,
    I imported the schema dump in Oracle 10g R2 DB, there are about 800 plus tables in that schema. I would like to know the relataion between tables.So,What tools are available for viewing the relation between tables?. I have TOAD, and Oracles SQL Developer tolls, if there are any free tools for the same, please let me know the URLs.
    Regards,
    Sabdar Syed.

    Hmmm, for free, except what gave Eric earlier, not easy...
    Here already discuss about that :
    Re: Table Dependencies
    Nicolas.

  • Find relation between tables

    Hi experts,
    How can I find the relation between tables? I mean, I can go to se 11 and compare each field of 2 tables manually, but it's very time consuming. Is there any possibilty to compare tables and find all the fields that can be found in both table?

    Go to SQVI transaction... Create a qucik view.. ztest.. give desc..etc
    Select data source as table join.... enter
    now one screen will come with blank data (blue scrren)
    in that application toolbar second button .. click that.. enter VBAK..
    click that again.. enter VBAP.. now an image will come with links b/w vbak and vbap.. you can use any no. of tables there....

  • The relation between table mbew and mbewh

    MORNING!
      I wanna know the relation between table mbew and mbewh.
      I finded some materials in table mbewh have total valuated stock , but these materials don't have value .
      Thanks a lot !

    Hi Roy, please check this link.
    http://www.sapfans.com/forums/viewtopic.php?p=4330&sid=a1b0e2c950bb90aa410b796d9ce0a13c
    REgards,
    Rich Heilman

  • How to find the tcode for relation between tables

    Hi all
    Just wanted to know the tcode that will show/give graphycal/ nongraphycal relation between tables if there is any..
    Very urgent, please.

    Transaction code to find relation between tables(Very urgent.)
    Please do NOT open duplicate posts.
    Regards,
    Ravi
    Note - Please mark the helpful answers

  • How to get the relation between tables.

    Hi all,
             Sorry in my previous message I forgot to include the table CABN.
    I would like to retrieve data from the tables BDCP,and characteristics tables KSS,INOB,AUSP and CABN.
    I am given the values BDCP-TABNAME,BDCP-FLDNAME,BDCP-KEY,BDCP-CRETIME,BDCP-CDOBJCL.
    BDCP-CDOBJID is nothing but Material number.I want to retrieve category(AUSP-ATWRT) and subcategory(AUSP-ATWRT) for that material BDCP-CDOBJID.
    So first of all how to proceed.Can anyone give idea?I heard that there is transaction,where we can find relations between tables.
    Thanks,
    Balaji
    Pages: 1

    U could try with SQVI Tcode. just give table names try to link.
    For your requirement there are several functional modules availalbe.
    Try where used list on AUSP table and find Function modules. Test them first then use in the program.

  • The Relation between tables and views in oracle financial

    Dears
    I am work in oracle e business r12
    and i need to build report as xml
    when run my select its need big time to view data i have a huge of data so i need to clear the relation of this tables if there is miss and if there another technique in select statement
    this is my select statement
    select
    j_hdr.je_header_id je_header_id,
    hdr.VENDOR_NAME supplier,
    SEGMENT1||'-'||SEGMENT2||'-'||SEGMENT3||'-'||SEGMENT4||'-'||SEGMENT5||'-'||SEGMENT6||'-'||SEGMENT7||'-'||SEGMENT8||'-'||SEGMENT9 Account_number,
    hdr.gl_date gl_date,
    j_hdr.CURRENCY_CODE CURRENCY_CODE,
    inv_lin.DESCRIPTION DESCRIPTION,
    j_lin.ENTERED_DR ENTERED_DR,
    j_lin.ENTERED_CR ENTERED_CR,
    j_lin.ACCOUNTED_DR ACCOUNTED_DR,
    j_lin.ACCOUNTED_CR ACCOUNTED_CR,
    j_hdr.JE_SOURCE JE_SOURCE,
    j_hdr.DEFAULT_EFFECTIVE_DATE Transaction_DATE,
    hdr.INVOICE_NUM INVOICE_NUM,
    QUICK_PO_NUMBER PO_NUMBER,
    null ASSET_CATEGORY_ID,
    hdr.VENDOR_ID VENDOR_ID
    from gl_je_headers j_hdr,gl_je_lines_v j_lin,ap_invoice_distributions dist,ap_invoices_v hdr,ap_invoice_lines_v inv_lin
    where code_combination_id = DIST_CODE_COMBINATION_ID
    and hdr.invoice_id = inv_lin.INVOICE_ID
    and dist.invoice_id = inv_lin.INVOICE_ID
    and j_hdr.JE_HEADER_ID = j_lin.JE_HEADER_ID
    and j_hdr.status = 'P'
    and nvl(:P_SOURCE,'Payables') = 'Payables'
    and je_source = 'Payables'
    and j_lin.CODE_COMBINATION_ID between ( select CODE_COMBINATION_ID
    from gl_code_combinations_kfv
    where CONCATENATED_SEGMENTS = :P_FROM_COMBINATION_CODE)
    and ( select CODE_COMBINATION_ID
    from gl_code_combinations_kfv
    where CONCATENATED_SEGMENTS = :P_TO_COMBINATION_CODE)
    AND TRUNC(dEFAULT_EFFECTIVE_DATE) BETWEEN NVL(:P_FROM_DATE, DEFAULT_EFFECTIVE_DATE) AND NVL(:P_to_DATE, DEFAULT_EFFECTIVE_DATE)
    Thanks in advance

    Welcome to the world of complicated Oracle Application queries. Didn't fully understand your question, so a few guesses -
    I think that you are asking how to make your query faster? I would reference the FAQ section on how to post a question regarding performance.
    Your title indicates you want to understand the relationship between tables and views. In general, Oracle Applications uses views for 2 reasons - to join data from multiple tables for display, and to differentiate data from different organizations. (I am still on 11i and have heard organizations are handled differently in 12 so I can't speak to that for sure).
    To understand the relationship between tables in a view, you can access the view's source code, either through a development tool such as PL/SQL Developer or TOAD (I'm guessing Oracle's tool does this also, but have never used it), or by querying the source from the dba_source table.
    select * from dba_source where name = (name of view) and type = 'VIEW' order by line;without the ( ) just the view name, in all capital letters i.e. , 'GL_JE_LINES_V'
    Good luck!

  • DBAdapter Creating Relations between tables not having PF-FK relationship

    I am writing a process which has to pull data from three tables.
    SELLER_HEADER (inv_Num is Primary Key)
    SELLER_LINE_ITEMS ( no PK but has inv_num and line_number which together are unique)
    BUYER_LINE_ITEMS (no PK but has cust_num, cust_PO_num and line_num that are unique)
    I want to create a DB Adapter which would take in an invoice number, customerNumber and customerPONumber
    and fetch me data whose XSD is roughly in this structure
    One Node of Type Header
    ---- Column 1 of the Header Table
    ---- Column 2 of the Header Table
    ---- Column 3 of the Header Table
    ... and so on
    Multiple Nodes of
    ---- Column 1 of the Seller Table
    ---- Column 2 of the Seller Table
    ---- Column 3 of the Seller Table
    and
    ---- Column 1 of the Buyer Table
    ---- Column 2 of the Buyer Table
    ---- Column 3 of the Buyer Table
    I tried some combinations and found that if you have a 1:M mapping for Header - Seller Line Item
    and a 1:1 mapping between Seller Line Item and Buyer Line Item then i get the desired XSD
    So, I created a 1:M relation between header and Seller lineItems. However i cannot create a one to one mapping between Seller Line Items and Buyer line items. Nor can i create a 1 :M mapping between Seller Header and Buyer Line Items. That is why the generated XSD shows
    <SomeCollectionName>
    <SellerHeader>
    <BuyerLineItems>
    <SellerLineItems>
    </SomeCollectionName>
    Any pointers for this? How do i make a relation based on the input values to the DBAdapter

    Does the CORE_BUSINESS schema have REFERENCES and SELECT privileges on the table you are trying to reference with the foreign key constraint?

  • Mapping or relation between tables

    Hello
    I have a application, that I installed on top of Oracle 11G. this database has more than 200 tables all linked based on keys. Sorry my terminology may not be so good since am not a dba.
    I would like to study the relationships between tables to better understand the application.
    Is there a tool that allows me to view the relationship between the tables or provides me a mapping between the tables, very similar to UML mapping that shows relationships between classes.
    Thanks;

    column contacts.contact should only contain values which exist in persons.id or companys.id.
    if i put two foreign key constraints on table contacts witch reference persons.id and companys.id i get a error when inserting any value into contacts.
    example:
    table persons:
    id | name
    99 | john
    insert into contacts
    values(1,2,99);
    here i get the error.
    i think its because the second fk-constraint does not accept this value.

  • How to find the relation between tables

    Hi
    I am working in Oracle R12
    How to find the relationship between these tables INV_MIN_MAX_TEMP,po_requisition_lines_all and Per_all_people_f
    These two table i have joined with po_requisition_lines_all and Per_all_people_f To_person_id from PO and Person from hr table but i cant able to join this table with other tables INV_MIN_MAX_TEMP
    regards
    Srikkanth

    Hi;
    Please check e-trm site for table relation,integration,explanation etc..
    etrm.oracle.com/
    Regard
    Helios

  • Relation between tables-imp

    is there any relation ship between ausp and mara

    AUSP holds the characteristc values for a given material for which MARA is the master tables.
    MARA-MATNR = AUSP-OBJEK.
    Note :Please close the thread if the question is answered and mark all the helpful answers
    Regards,
    Ravi

  • Relation between tables BSEG and COEP

    Hi,
    I am developing a report where I want to know the relationship between BSEG and COEP or COBK table is there any field or other way to know.
    Thanks in Advance.
    Regards,
    Kiran

    BSEG contains is the line items of the Accounting Docs ( header is BKPF) . This are primary costing data.
    On the other hand COEP is the line item data for secondary costing data. COBK is the header table for COBK.
    Though you will find BELNR in both BKPF - BSEG and COBK-COEP, but if you look at the data elements, they are BELNR_D and CO_BELNR respectively.

  • Relation between tables( AR Invoice, Sales Order, Delivery)

    Hi,
    I have a crystal report layout for AR Invoice and I want to bring to this layout some fields from sales order and delivery. When I add the two tables (ORDR and ODLN) in database expert I am not sure what links to create with OINV. I read the link should be at row level RDR1.TrgetEntry = OINV.DocEntry, but when I try this I don't get any data when I run the report. The fields I need to add are from header level (e.g: delivery date, sales order number). Do I need to add both ORDR and RDR1? Could you tell me exactly how I can link  Sales Invoice with Sales Order table and Delivery table?
    Thanks!
    Cristina

    Hi Cristina,
    The link is between line table XXX1 and the header table. You need to include both RDR1 and ORDR in order to get the data. If you AR Invoice is not copy directly from Sales Order but Delivery, there is no direct link between OINV and RDR1.
    If you search the forum, there are many thread discussing the relationship through query.
    Thanks,
    Gordon

  • Architecture of relation between R and Oracl

    if I know right, this will be big success for Oracle. architecture of connection between oracle and R.
    R on client send it's SQL to Oracle on Server and Oracle run ORE function itself and send results to R on client. like ore.lm
    for other R packages like SNA, IGraph, Data mining in R, Oracle send R code to R on Server and R on Server run them and send to Oracle. then Oracle send them to R. it connect via one port and is secure. IS MY WRITTING TRUE?
    I have another question. if we have 2 or more R on Server, how oracle identify correct R? for example, I install R2.13 and R2.15 on Server.
    tanks for your attention
    Edited by: Nasiri Mahdi on Feb 24, 2013 10:42 PM

    Nasiri,
    For ORE architecture take a look at [url http://www.oracle.com/technetwork/database/options/advanced-analytics/r-enterprise/ore-trng1-gettingstarted-1501628.pdf]the first presentation in our Learning R Series.
    For your second question. ORE will use R that it found during installation. The installer will print the value of <tt>R_HOME</tt> before it proceeds with installation. In general for ORE 1.3 we recommend R 2.15.1 and for ORE 1.1 - R 2.13.1.
    Denis

  • Is any relation between tables bbp_pdatt with any of the item table

    Hi all,
    I have created shopping cart with 2 line items and each line item is having 2 attachments.
    Now I am having the attachment data in table bbp_pdatt .and we have item data also.
    I could not get the line item number or data in table bbp_pdatt.In table bbp_pdatt only attachment data exist.
    I want to know for which line item the attachment belongs to.
    Please tell me if there is any table having the attachment data as well as item data.in single table.
    Thanks,
    Prashanth.

    Hello ,
    You can establish the link as follows:
    Read CRMD_LINK table with  GUID_HI  = 'Item Guid'  AND
                                                 OBJTYPE_SET '33'
    The above will give you the result set which contains  set guids (GUID_SET) values for attachment. This value can be joined with the (SET_GUID) of the BBP_PDATT table.
    This will give you the attachments for the Shopping cart at item level.
    Best Regards,
    Sapna.

Maybe you are looking for

  • Modifications to PFILE for recovery on backup system

    This is a continuation from another thread, but I'm taking things one step at a time. I'm starting with a complete RMAN backup and trying to bring the database up on a different machine. Both run Oracle 10gr2 Standard. One is a single-node RAC on Win

  • Purchase Order Condition values

    Hi Friends ,              I'm facing a problem in identifying a data source for  Purchase Order's. On searching in SDN Forum i came to know that there is no standard Datasource for Purchase order conditions.              Can some one give me little c

  • Is automatic insertion of hyperlinks available in Acrobat 9 Pro?

    My former version of Acrobat automatically inserted links into the PDFs it created when links were present in the source document. My current version - Acrobat 9 Pro - does not. Is there a setting I need to change for this or am I doomed to manually

  • Jdevelop 11 v4. error when publish pl sql package as webservice

    Hello.. I have installed latest version of Jdeveloper.. When I like to create a webservice from plsql package I get the error: What can be wrong? java.lang.ClassCastException: oracle.jdeveloper.webservices.model.plsql.PLSQLPortType      at oracle.jde

  • Tomcat5.sh in Tomcat 5.5.7

    Hi, I am currently running tomcat as a daemon on linux, so when the computer starts up, tomcat also starts up using the file Tomcat5.sh. Does anyone know what code i need to add to Tomcat5.sh, so it also uses the security manager? Thanks.