ERD in toad

hi all
i want to make an ERD of schema of Oracle 10g. how can i make it so that it can be placed in word doc.
through toad i try for this, but when i save as bitmap and insert this bitmap in word then it is not visible as i have much tables and bitmap can be arranged only on one page.
please help me

TOAD is not an Oracle product. I would recommend you change the subject of this post to "Please Ignore" and ask your question of Quest Software."

Similar Messages

  • Creating PDF from ERD (Data Modeler) in readable format

    I created an entity relationship diagram (ERD) using Toad Data Modeler.  I want to save/print it to PDF, which I can just fine.  However, it cuts off tables and is very hard to read.  I'm looking for a format to use that will not cut off the tables.  I've played around with various settings, but can't get it to look right.  Are there specific settings I should be targeting so it won't cut off the diagram?  Thank you!

    Thank you.  I've been playing around with the page size, but it still wants to cut off some of my tables, almost as if I can't get the diagram to size into the size of the PDF margins.  I can't seem to find the magic combination so I figured I must be missing a parameter setting somewhere.  Thank you for your time.
    Brian

  • Open ERD file

    Hello,
    Is there a way to open an Entity-Relationship Diagram with SQL Developer or SQL Developer Data Modeler ?
    I've create this ERD file with Toad.
    Regards

    If you have your model in TOAD and can produce the DDL from that, you can import the DDL into SQL Dev Data Modeler. The Modeler allows you to reverse engineer to that to the logical ERD. Alternatively you can connect the Modeler directly to your database and import from that. Again, if you want to get up to the logical ERD you can reverse engineer that.
    Sue

  • How to open .erd extension files in windows system

    Hi,
    we generated erd diagram with TOAD application from oracle database that generated a file with .erd extension . but could not able to open .erd file in our windows system for review.. please help me out which tool/utility or free software help us to view or open .erd extension diagram documents in windows sytems?.. thanks

    That's a Quest proprietary file extension. You need to use their Toad data modelling tool to look at those files. Unlike TOAD for Oracle there is no free version of Data Modeller. Find out more.
    Cheers, APC
    blog : http://radiofreetooting.blogspot.com

  • View .erd files in SQL Developer

    Hi,
    I was given an .erd file that was created in TOAD. I have SQL Developer, and I haven't figured out how to view the file. Do I need a different tool? I do not have the ability to get TOAD, so I will need something else to view these files.
    Any ideas?
    Thanks!

    Pretty sure erd is a proprietary format from TOAD, not some open standard as pdf is.
    So find the ability to get TOAD, or throw away the file and start over in another tool.
    Have fun,
    K.

  • ERD & Database documentation tool

    Hello All:
    I am looking for a ERD & Database documentation tool for documenting my Databases. The tool should ideally do the following.
    1. ERD
    2. Database Documentation
    3. Capability to do reverse engineering
    I want to evaluate Oracle Designer, Ervin and the one from TOAD. Please let me know some other good tool that I should evaluate. Thank you so much.
    -- BMP

    Do the following:
    SELECT DISTINCT object_type
    FROM all_objects;
    SELECT DISTINCT index_type
    FROM all_indexesIf you see anything that isn't vanilla stick with Oracle Designer.

  • How to view the returned data from a stored procedure in TOAD?

    Hi,
    I created ref cursor in the stored procedure to return data. The stored procedure works fine, just want to view the result in TOAD. The BEGIN... EXEC... END can execute the stored procedure, but how to make the result display?
    Thanks!

    Right click the editor and choose
    "Prompt For Substitution Variables".
    Run for example the following code:
    DECLARE
    PROCEDURE p (cur OUT sys_refcursor)
    AS
    BEGIN
    OPEN cur FOR
    SELECT *
    FROM DUAL;
    END p;
    BEGIN
    p (:cur);
    END;
    The result will display in Toad's Data Grid!
    Regards Michael

  • Creating Materialized View in Toad

    As with every new endeavor - come new questions.
    I am trying to create a materialized view via toad (first time doing this). Now - toad is great, since it provides a kind-of wizard interface. Hence, one doesn't have to completely code in the create statement, with all of the options, etc.
    Instead, in toad, one can (via the schema browser), go into the Materialized Views tab and click on create new. This opens a window with 6 tabs: Basic Info, Refresh Info, Physical Attributes, Query, Partitions & Subpartition Template.
    In the Basic Info, one can put a check mark next to some of the following options:
    -Build Deffered
    -Parallel
    -Cache
    -Logging
    -Using index
    -Allow updates
    etc.
    I have read that build deferred refers to whether or not you would like the view to be created automatically or to be deferred.
    Anyways, I tried to find Toad documentation to explain each of the options in-detail. No success. Hence, am researching each part piece by piece.
    But - here is my question:
    In the Query tab, we are asked to specify a query. I am assuming that the query does not have to be a full query, beginning with CREATE MATERIALIZED VIEW mv_table1 REFRESH FAST etc...
    Since in this 'wizard', we are providing the MV name at the top of the dialog box, we are checking the 'options' in the other tabs, etc.
    And so, I assumed that the query should merely be a select query in the window mentioned above.
    So I entered the following:
    select * from table1@remote_db;
    When I go to verify the syntax, I get the error message: ORA_00911: invalid character. It seems to be pointing to my db_link (remote_db). I have been using this link throughout many places, w/o any problems.
    Has anyone created a MV in toad before? Any links to good toad documentation would be helpful as well.
    Thanks.

    (This is fun... ;))
    For anyone endeavoring this in the future, below I have attached the prerequisites required in order to create a materialized view (can also be found @ http://download-uk.oracle.com/docs/cd/B14117_01/server.101/b10759/statements_6002.htm):
    Prerequisites
    The privileges required to create a materialized view should be granted directly rather than through a role.
    To create a materialized view in your own schema:
    You must have been granted the CREATE MATERIALIZED VIEW system privilege and either the CREATE TABLE or CREATE ANY TABLE system privilege.
    You must also have access to any master tables of the materialized view that you do not own, either through a SELECT object privilege on each of the tables or through the SELECT ANY TABLE system privilege.
    To create a materialized view in another user's schema:
    You must have the CREATE ANY MATERIALIZED VIEW system privilege.
    The owner of the materialized view must have the CREATE TABLE system privilege. The owner must also have access to any master tables of the materialized view that the schema owner does not own (for example, if the master tables are on a remote database) and to any materialized view logs defined on those master tables, either through a SELECT object privilege on each of the tables or through the SELECT ANY TABLE system privilege.
    To create a refresh-on-commit materialized view (ON COMMIT REFRESH clause), in addition to the preceding privileges, you must have the ON COMMIT REFRESH object privilege on any master tables that you do not own or you must have the ON COMMIT REFRESH system privilege.
    To create the materialized view with query rewrite enabled, in addition to the preceding privileges:
    If the schema owner does not own the master tables, then the schema owner must have the GLOBAL QUERY REWRITE privilege or the QUERY REWRITE object privilege on each table outside the schema.
    If you are defining the materialized view on a prebuilt container (ON PREBUILT TABLE clause), then you must have the SELECT privilege WITH GRANT OPTION on the container table.
    The user whose schema contains the materialized view must have sufficient quota in the target tablespace to store the master table and index of the materialized view or must have the UNLIMITED TABLESPACE system privilege.
    When you create a materialized view, Oracle Database creates one internal table and at least one index, and may create one view, all in the schema of the materialized view. Oracle Database uses these objects to maintain the materialized view data. You must have the privileges necessary to create these objects.

  • Getting Toad 12.6 talking to Microsoft Team Foundation Server 2013 - Visual Studio 2013

    Need to know how to setup the "source control" settings in Toad 12.6 to get Toad to speak with Team Foundation Server 2013.  Not having any luck.
    Thanks

    hello,
    You'd need to ask Toad World:
    http://www.toadworld.com/p/forums.aspx?Redirected=true
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • How to execute procedure in toad software

    hiii guy's i run my procedure on sql prompt and it run properly
    but when i tried this on toad i got an problem
    after compiling my procedure on toad
    when i write
    execute procedure_name(parameter1,parameter2);
    then i get an error i.e
    ORA-00900: invalid SQL statement
    can someone tell me how to execute procedure on toad
    thanks in adv...........

    how to execute procedure in toad softwareIn TOAD's schema browser you can go to the procedures tab - right click on the procedure in question and choose execute procedure - a window should pop up, where you can give optional parameters - the rest should be almost self explanatory ;)

  • Matrix Report 's Query Output is not as Toad...!!!!!!

    Hello,
    i have the following Query
    SELECT ALL
    FINANCIAL_YEAR_MONTHS.month_desc||' '|| substr( FINANCIAL_YEAR_MONTHS.month_code,4,4)  months,
    PLN_PLAN_DISTRIBUTION_WAY.MATERIAL_CODE,
    CDE_MATERIALS.MATERIAL_DESC, CDE_MATERIALS.PARENT_MATERIAL,
    PLN_PLAN_DISTRIBUTION_WAY.EXPECTED_QUANTITY,
    PLN_PLAN_DISTRIBUTION_WAY.FIN_YEAR_CODE,
    PLN_PLAN_DISTRIBUTION_WAY.GROUP_CODE
    FROM
    PLN_PLAN_DISTRIBUTION_WAY,
    PLN_PLAN_PRODUCTS,
    CDE_MATERIALS,
    FINANCIAL_YEAR_MONTHS
    WHERE
    (PLN_PLAN_DISTRIBUTION_WAY.MATERIAL_CODE = PLN_PLAN_PRODUCTS.MATERIAL_CODE)
    AND (    PLN_PLAN_DISTRIBUTION_WAY.MATERIAL_CODE = CDE_MATERIALS.MATERIAL_CODE   )
    AND (PLN_PLAN_DISTRIBUTION_WAY.GROUP_CODE = PLN_PLAN_PRODUCTS.GROUP_CODE)
    AND ( PLN_PLAN_DISTRIBUTION_WAY.FIN_YEAR_CODE= PLN_PLAN_PRODUCTS.FIN_YEAR_CODE )
    AND (  PLN_PLAN_DISTRIBUTION_WAY.MONTH_CODE = 
    to_number(substr( FINANCIAL_YEAR_MONTHS.month_code,1,2)))
    AND( to_number(substr( FINANCIAL_YEAR_MONTHS.month_code,1,2)) >= 7 )
    AND (PLN_PLAN_DISTRIBUTION_WAY.DISTRIBUTION_WAY = :P_DISTRIBUTION_WAY )
    AND (PLN_PLAN_DISTRIBUTION_WAY.FIN_YEAR_CODE = :P_FIN_YEAR_CODE)
    UNION ALL
    SELECT ALL
    FINANCIAL_YEAR_MONTHS.month_desc||' '|| substr( FINANCIAL_YEAR_MONTHS.month_code,4,4)  months,
    PLN_PLAN_DISTRIBUTION_WAY.MATERIAL_CODE,
    CDE_MATERIALS.MATERIAL_DESC, CDE_MATERIALS.PARENT_MATERIAL,
    PLN_PLAN_DISTRIBUTION_WAY.EXPECTED_QUANTITY,
    PLN_PLAN_DISTRIBUTION_WAY.FIN_YEAR_CODE,
    PLN_PLAN_DISTRIBUTION_WAY.GROUP_CODE
    FROM
    PLN_PLAN_DISTRIBUTION_WAY,
    PLN_PLAN_PRODUCTS,
    CDE_MATERIALS,
    FINANCIAL_YEAR_MONTHS
    WHERE
    (PLN_PLAN_DISTRIBUTION_WAY.MATERIAL_CODE = PLN_PLAN_PRODUCTS.MATERIAL_CODE)
    AND (    PLN_PLAN_DISTRIBUTION_WAY.MATERIAL_CODE = CDE_MATERIALS.MATERIAL_CODE   )
    AND (PLN_PLAN_DISTRIBUTION_WAY.GROUP_CODE = PLN_PLAN_PRODUCTS.GROUP_CODE)
    AND ( PLN_PLAN_DISTRIBUTION_WAY.FIN_YEAR_CODE= PLN_PLAN_PRODUCTS.FIN_YEAR_CODE )
    AND (  PLN_PLAN_DISTRIBUTION_WAY.MONTH_CODE = 
    to_number(substr( FINANCIAL_YEAR_MONTHS.month_code,1,2)))
    AND to_number(substr( FINANCIAL_YEAR_MONTHS.month_code,1,2))<= 6 
    AND (PLN_PLAN_DISTRIBUTION_WAY.DISTRIBUTION_WAY = :P_DISTRIBUTION_WAY )
    AND (PLN_PLAN_DISTRIBUTION_WAY.FIN_YEAR_CODE = :P_FIN_YEAR_CODE) the Report is a Matrix Report with Group Material_names as Rows and financial Months as Columns and the expected_Quantity as cells of that report matrix.
    Well,the query runs just fine in Toad as
    Months Material_code Material_Desc ..etc.
    July 2007 1 abc
    July 2007 2 def ...etc.
    June 2008 1 abc ..etc.
    June 2008 2 def ...etc.
    But in a report the output of months are a mess not ordered as a fin_year months..
    i tried to change the design of the report from Matrix group to Matrix got same result...
    Any Suggestions pls.
    Regards,
    Abdetu..

    This the Query with order by which doesn't return the required order..
    SELECT ALL
    FINANCIAL_YEAR_MONTHS.month_desc||' '|| substr( FINANCIAL_YEAR_MONTHS.month_code,4,4)  months,
    PLN_PLAN_DISTRIBUTION_WAY.MATERIAL_CODE,
    CDE_MATERIALS.MATERIAL_DESC, CDE_MATERIALS.PARENT_MATERIAL,
    PLN_PLAN_DISTRIBUTION_WAY.EXPECTED_QUANTITY,
    PLN_PLAN_DISTRIBUTION_WAY.FIN_YEAR_CODE,
    PLN_PLAN_DISTRIBUTION_WAY.GROUP_CODE
    FROM
    PLN_PLAN_DISTRIBUTION_WAY,
    PLN_PLAN_PRODUCTS,
    CDE_MATERIALS,
    FINANCIAL_YEAR_MONTHS
    WHERE
    (PLN_PLAN_DISTRIBUTION_WAY.MATERIAL_CODE = PLN_PLAN_PRODUCTS.MATERIAL_CODE)
    AND (    PLN_PLAN_DISTRIBUTION_WAY.MATERIAL_CODE = CDE_MATERIALS.MATERIAL_CODE   )
    AND (PLN_PLAN_DISTRIBUTION_WAY.GROUP_CODE = PLN_PLAN_PRODUCTS.GROUP_CODE)
    AND ( PLN_PLAN_DISTRIBUTION_WAY.FIN_YEAR_CODE= PLN_PLAN_PRODUCTS.FIN_YEAR_CODE )
    AND (  PLN_PLAN_DISTRIBUTION_WAY.MONTH_CODE = 
    to_number(substr( FINANCIAL_YEAR_MONTHS.month_code,1,2)))
    AND( to_number(substr( FINANCIAL_YEAR_MONTHS.month_code,1,2)) >= 7 )
    AND (PLN_PLAN_DISTRIBUTION_WAY.DISTRIBUTION_WAY = :P_DISTRIBUTION_WAY )
    AND (PLN_PLAN_DISTRIBUTION_WAY.FIN_YEAR_CODE = :P_FIN_YEAR_CODE)
    UNION ALL
    SELECT ALL
    FINANCIAL_YEAR_MONTHS.month_desc||' '|| substr( FINANCIAL_YEAR_MONTHS.month_code,4,4)  months,
    PLN_PLAN_DISTRIBUTION_WAY.MATERIAL_CODE,
    CDE_MATERIALS.MATERIAL_DESC, CDE_MATERIALS.PARENT_MATERIAL,
    PLN_PLAN_DISTRIBUTION_WAY.EXPECTED_QUANTITY,
    PLN_PLAN_DISTRIBUTION_WAY.FIN_YEAR_CODE,
    PLN_PLAN_DISTRIBUTION_WAY.GROUP_CODE
    FROM
    PLN_PLAN_DISTRIBUTION_WAY,
    PLN_PLAN_PRODUCTS,
    CDE_MATERIALS,
    FINANCIAL_YEAR_MONTHS
    WHERE
    (PLN_PLAN_DISTRIBUTION_WAY.MATERIAL_CODE = PLN_PLAN_PRODUCTS.MATERIAL_CODE)
    AND (    PLN_PLAN_DISTRIBUTION_WAY.MATERIAL_CODE = CDE_MATERIALS.MATERIAL_CODE   )
    AND (PLN_PLAN_DISTRIBUTION_WAY.GROUP_CODE = PLN_PLAN_PRODUCTS.GROUP_CODE)
    AND ( PLN_PLAN_DISTRIBUTION_WAY.FIN_YEAR_CODE= PLN_PLAN_PRODUCTS.FIN_YEAR_CODE )
    AND (  PLN_PLAN_DISTRIBUTION_WAY.MONTH_CODE = 
    to_number(substr( FINANCIAL_YEAR_MONTHS.month_code,1,2)))
    AND to_number(substr( FINANCIAL_YEAR_MONTHS.month_code,1,2))<= 6 
    AND (PLN_PLAN_DISTRIBUTION_WAY.DISTRIBUTION_WAY = :P_DISTRIBUTION_WAY )
    AND (PLN_PLAN_DISTRIBUTION_WAY.FIN_YEAR_CODE = :P_FIN_YEAR_CODE)
    ORDER BY months

  • DIscoverer output different from toad

    Hi
    I have an apps mode EUL (Discoverer 10.1.2.2 , EBS R12 and Oracle 11g database)
    I have a custom folder for onhand material analysis.
    The output will be something like below
    Item Onhand Batch Start Date Requirement for this batch Net-Onhand
    ABC 1000 22-Jul-2009 100 900
    ABC 900 24-Jul-2009 50 850
    ABC 850 26-Jul-2009 25 825
    And so on sorted by item and batch start date
    The purpose is to view demand vs availability for a time span,
    And if an item satisfies all the demand (final net-onhand >0) it need not be shown in the report.
    The custom folder i wrote worked alright during testing for 5 items and date range of 6 months.
    However, it is showing wrong results when run for all items in an org for a given planner.
    This when the sql itself when run in toad does work as expected.
    Here is my sql. The conditions commented out are applied at the workbook. What could be reason for the difference in the query output in discoverer vs toad.
    SELECT *
    FROM (SELECT tmp1.magasin, tmp1.of_commande, tmp1.composant,
    tmp1.composant_desc, tmp1.date_demandee, tmp1.statut_of,
    tmp1.comment_scheduling, tmp1.date_debut_of, tmp1.unite,
    CASE
    WHEN tmp1.prev_qty_demandee = 0
    THEN tmp1.on_hand
    ELSE LAG (tmp1.current_onhand, 1) OVER (PARTITION BY tmp1.composant ORDER BY tmp1.date_debut_of,
    tmp1.material_detail_id)
    END onhand,
    CASE
    WHEN tmp1.rk = 1
    THEN NVL
    (tmp1.quantity_pending_lot,
    0
    ELSE 0
    END quantity_pending_lot,
    tmp1.qty_demandee,
    CASE
    WHEN tmp1.prev_qty_demandee = 0
    THEN DECODE (SIGN (tmp1.on_hand - tmp1.qty_demandee),
    1, 0,
    tmp1.on_hand - tmp1.qty_demandee
    ELSE DECODE
    (SIGN
    ( LAG (tmp1.current_onhand, 1) OVER (PARTITION BY tmp1.composant ORDER BY tmp1.date_debut_of,
    tmp1.material_detail_id)
    - tmp1.qty_demandee
    1, 0,
    LAG (tmp1.current_onhand, 1) OVER (PARTITION BY tmp1.composant ORDER BY tmp1.date_debut_of,
    tmp1.material_detail_id)
    - tmp1.qty_demandee
    END qty_manquante,
    tmp1.date_de_blocage, tmp1.num_of_pos,
    tmp1.date_de_livraison_reele, tmp1.inventory_item_status_code,
    tmp1.inventory_item_status,
    LAST_VALUE (tmp1.current_onhand) OVER (PARTITION BY tmp1.composant)
    final_onhand,
    tmp1.batch_status, tmp1.organization_id, tmp1.planner_code
    FROM (SELECT tmp.*,
    LAG (tmp.qty_demandee, 1, 0) OVER (PARTITION BY tmp.composant ORDER BY tmp.date_debut_of ASC NULLS LAST)
    prev_qty_demandee,
    tmp.on_hand
    - SUM (tmp.qty_demandee) OVER (PARTITION BY tmp.composant ORDER BY tmp.date_debut_of,
    tmp.material_detail_id) current_onhand,
    SUM (tmp.qty_demandee) OVER (PARTITION BY tmp.composant ORDER BY tmp.date_debut_of,
    tmp.material_detail_id) running_qty_demandee,
    RANK () OVER (PARTITION BY tmp.composant ORDER BY tmp.date_debut_of,
    tmp.material_detail_id) AS rk
    FROM (SELECT gbh.organization_code magasin,
    gbh.organization_id,
    gbh.batch_no of_commande,
    msi.segment1 composant,
    msi.description composant_desc,
    gmd.material_requirement_date date_demandee,
    gbh.batch_status,
    gbh.batch_status_desc statut_of,
    gbh.attribute4 comment_scheduling,
    gbh.plan_start_date date_debut_of,
    gmd.dtl_um unite,
    (SELECT SUM
    (primary_transaction_quantity
    FROM mtl_onhand_quantities_detail ohq
    WHERE ohq.inventory_item_id =
    gmd.inventory_item_id
    AND ohq.organization_id =
    gmd.organization_id
    AND ohq.inventory_item_id =
    msi.inventory_item_id
    AND ohq.organization_id =
    msi.organization_id
    AND NVL
    (xxbpt_or_util_pkg.get_lot_status
    (ohq.lot_number,
    gmd.inventory_item_id,
    gmd.organization_id
    'QA'
    ) IN ('QA', 'PRL')) on_hand,
    (SELECT SUM
    (primary_transaction_quantity
    FROM mtl_onhand_quantities_detail ohq
    WHERE ohq.inventory_item_id =
    gmd.inventory_item_id
    AND ohq.organization_id =
    gmd.organization_id
    AND xxbpt_or_util_pkg.get_lot_status
    (ohq.lot_number,
    gmd.inventory_item_id,
    gmd.organization_id
    ) = 'ENCOURS')
    quantity_pending_lot,
    CASE
    WHEN gmd.plan_qty
    - NVL (gmd.actual_qty, 0) > 0
    THEN gmd.plan_qty
    - NVL (gmd.actual_qty, 0)
    ELSE 0
    END qty_demandee,
    NULL date_de_blocage, NULL num_of_pos,
    NULL date_de_livraison_reele,
    msi.inventory_item_status_code,
    mis.inventory_item_status_code_tl
    inventory_item_status,
    msi.planner_code, gmd.material_detail_id
    FROM gme_batch_header_vw gbh,
    gme_material_details gmd,
    mtl_system_items msi,
    mtl_item_status_vl mis
    WHERE gbh.batch_id = gmd.batch_id
    AND gmd.inventory_item_id = msi.inventory_item_id
    AND gmd.organization_id = msi.organization_id
    AND gmd.line_type = -1 -- Ingredient
    --AND gbh.organization_code = 'LYO'
    -- AND gbh.batch_no = '350737'
    --AND gbh.batch_status_desc IN ('En attente', 'En-cours de fabrication')
    --AND gbh.batch_status_desc IN ('Pending', 'WIP')
    AND gbh.batch_status IN (1, 2)
    AND msi.inventory_item_status_code =
    mis.inventory_item_status_code
    --AND msi.segment1 IN
    -- ('0036814403', '0036822635', '0037812790')
    -- AND msi.planner_code = '99011'
    ORDER BY msi.segment1, gbh.plan_start_date) tmp
    WHERE tmp.qty_demandee > 0) tmp1) tmp2
    WHERE tmp2.final_onhand < 0

    Hi Ariv,
    Hmm, only other difference I've had is when you set your NLS settings in SQL*Developer / Oracle Client (TOAD) and get no rows in _VL views etc.
    But it sounds like your issue is combining folders in the discoverer BA ... perhaps there's a wayward join?
    Have you tried running/comparing the SQL generated from the workbook/sheet itself using View SQL in Discoverer (or sql trace)?
    PS. Yes a few posts on the blog still going strong, been a tad busy in the last few months, so no time to post new stuff :-( but plenty coming up once I get a chance :-)
    Regards,
    Gareth

  • XML Publisher(XDODTEXE) in EBS taking more time with the same SQL in TOAD

    HI
    XML Publisher(XDODTEXE) in EBS taking more time with the same SQL in TOAD.
    The sql has 5 union clauses.
    It takes 20-30 minutes in TOAD compared to running through Concurrent Program in XML Publisher in EBS taking around 4-5 hours.
    The Scalable Flag at report level is turned on with the JVM options set to -Xmx1024m -Xmx1024m in Concurrent Program definition.
    Other configurations for Data Template like XSLT, Scalable, Optimization are turned on though didn't bounce the OPP Server for these to take effect as I am not sure whether it is needed.
    Thanks in advance for your help.

    But the question is that how come it is working in TOAD and takes only 15-20 minutes?
    with initialization of session ?
    what about sqlplus ?
    Do I have to set up the the temp directory for the XML Publisher report to make it faster?
    look at
    R12: Troubleshooting Known XML Publisher and E-Business Suite (EBS) Integration Issues (Doc ID 1410160.1)
    BI Publisher - Troubleshooting Oracle Business Intelligence (XML) Publisher For The Oracle E-Business Suite (Doc ID 364547.1)

  • How to insert arabic&english  from oracle clients like TOAD,SQL*PLUS

    Hi
    iam trying to insert arabic&english data from TOAD&SQLPLUS.
    if i try to insert arabic by copy and paste iam getting ???? and
    if i try to insert through my keyboard (after updating my system with regional
    settings) iam able to type some junk characters.
    I have installed Oracle 8.1.6 with characterset set to UTF8 and
    in my client NLS_LANG settings i have tried with different settings like:-
    AMERICAN_AMERICA.UTF8
    AMERICAN_AMERICA.AR8MSAWIN
    ARABIC_UNITED ARAB EMIRATES.UTF8
    ARABIC_UNITED ARAB EMIRATES.AR8MSWIN1256
    i have also updated INIT.ORA nls_language ='ARABIC'.
    but still iam getting same problem.
    any help in this appriciated.
    Thanks
    Srinivas

    Are you able to use Arabic with your Java VM in general? Or are you having problems specific to your database interactions? Sun provides an internationalized version of the JDK and also an "English only" version. Perhaps you have the English only version? I would recommend trying a simple Hello World app with your JVM first... I would also check your JDBC driver documentation and make sure there are no limitations there, and that your database is also setup for internationalization.
    It is certainly possible to use TopLink in internationalized environments as we have lots of customers doing this, so hopefully we can figure out what is wrong with your setup.
    - Don

  • How to run a stored procedure in TOAD

    Hello,
    I created a simple stored procedure in the procedure editor in TOAD. It's just a simple 'Hello World' output statement. Here is the code:
    create or replace procedure new_proc is
    greetings varchar2(20);
    begin
    greetings := 'Hello World';
    dbms_output.put_line(greetings);
    end;
    The procedure created fine, but when I try to call it in the procedure editor or in the SQL Editor, both tools act as if the procedure cannot be found, and I get an error message.
    In SQL Editor, I type in:
    exec new_proc;
    and it says that "new_proc" is invalid.
    Does anyone know how to run this procedure in TOAD?
    Thanks,
    Peter
    Message was edited by:
    P. Swanson

    Don't know about TOAD but this is how it is in SQL*Plus.
    SQL> create or replace procedure new_proc is
      2  greetings varchar2(20);
      3  begin
      4  greetings := 'Hello World';
      5  dbms_output.put_line(greetings);
      6  end;
      7  /
    Procedure created.
    SQL> set serveroutput on
    SQL>
    SQL> exec new_proc ;
    Hello World
    PL/SQL procedure successfully completed.
    SQL>Message was edited by:
    Kamal Kishore

Maybe you are looking for

  • Raw images are rendering dark green, and Raw FT not working

    Upon loading Raw files from a Canon T5i into Aperture, the previews, when re-rendered by Aperture, turn a dark greenish hue. I've verified that the Digital Camera Raw software is up to date and my Camera is supported. The second issue is that when I

  • TEMP too big

    Hey all, My temp tablespace has grown too big (19Gb after I ran a particularly bad cart. join). I can't figure out how to get it cleaned up and I'd like my disk back. I've modified the max through OEM, but now it just shows that I'm using more than t

  • Priority in sales order

    Dear all,          I have a question,  i have a retail sales order no.1 and promotion sales order no.2, they have the same material which haven't any stock now.          After good receive in warehouse,  i want to assign the stock to promotion order

  • A typical problem

    hi, I m in the middle of a typical problem. I have this table abc with columns ( x varchar2(10), y varchar2(10), z varchar2(10) the contents of which look like this table : abc x y z 5 .5*x .1+x 10 .75*x columns y and z r storing the formula. now my

  • HT4527 I have an iphone4 and a new computer with Windows 8. I cannot find the button to transfer my purchases, can anyone help?

    I just purchased a new computer with Windows 8.  I currently have an IPhone4.  I have installed itunes on the computer and authorized it, but I cannot find the button to transfer the purchases from my phone to my computer.  Any help would be apprecia