ERD Tool for JDeveloper

Is there an ERD tool for JDeveloper? If not, how about a good 3rd party plug-in? I would like to have the power of ERWin from within my IDE. If Jdeveloper can do UML-to-Java, I would think it could do ERD-to-OracleDB.
JDeveloper 9.0.3 is one of the best IDE's I have seen that has the potential to go head-to-head with MS Visual Studio .net.
** Good Job Oracle **

William,
Thanks for your question and encouragement.
Right now, there is no database modeling solution in JDeveloper, and I am not aware of any plug-ins in this area.
However, we do acknowledge the importance of this functionality, and are currently working on a DB modeling solution. This work is targeted at the next major release of JDeveloper (10i). In addition to generating and reverse engineering Oracle DBs, the tool will also enable users to link these models to EJB and BC4J designs.
Thanks, Guus
Product Manager UML modeling

Similar Messages

  • Uml tools for jdeveloper

    hi
    is there any UML Tools for JDeveloper that works on windows and mac or any one of them that does code engineering and database modeling also ?

    It includes Class diagrams, sequence diagrams, activity diagrams, use case diagrams, etc.
    Basically create a new application + project, then via the New Gallery (File -> New), select General -> UML in the New Gallery Dialog, and on the right hand side are the UML options.
    Regards,
    CM.

  • [Reports]   The best reporting tool for JDeveloper 10g

    Hi,
    Which is the best reporting tool for JDeveloper 10g: JasperReports, Crystal Reports or something else? I want to build parametric and rather complex reports but I don't know which tool offers more features, flexibility, ease of use , ... . I've built some simple parametric reports using JasperReports and JDeveloper 10g but I think it's not so productive and may need something more, maybe iReport. Does anyone have any ideas?
    S/\EE|)

    Hi Saeed,
    I'lm using Jasper too, and here is an example of how i pass to it some variables:
         <parameter name="theWantedId" isForPrompting="false" class="java.lang.Integer"/>
         <queryString><![CDATA[SELECT field1, field2 from table1 WHERE table1.field1 = $P!{theWantedId}]]></queryString>And in a bean (or other java code from which the template is called)
            Map parameters= new HashMap();
            parameters.put("theWantedId", findSelectedId()); // return the ID of the object to print
            JasperDesign design =
                JRXmlLoader.load(myTemplate); // First load template from the Blob table in an inputstream
            JasperReport report =
                JasperCompileManager.compileReport(design);
            InitialContext initialContext = new InitialContext();
            DataSource ds = (DataSource)initialContext.lookup("java:comp/env/jdbc/MYDATASOURCEConnectionDS");
            Connection conn = ds.getConnection();
            JasperPrint print =
                JasperFillManager.fillReport(report, parameters, conn);Hope that can help, if you need more information please ask,
    Best regards,
    Tif

  • Trying to install BI tool for jdeveloper

    when i try to install BI tool for jdeveloper. it is asking for jdeveloper full path where can i find the full path. please help me in this regard.

    I am sorry can you please restate your inquiry?  Where are you downloading CS4 from?  How far have you gotten with the installation process?  Which version of Mac OS are you using?

  • ERD Tool for Linux

    Is there a reason why Oracle has refused to create an ERD tool that works on Linux?
    Has anyone found a good Linux-based ERD tool?

    I've heard some good things about aqua studio, which should also work under Linux.
    C.

  • Profiling Tools for Jdeveloper

    Hi all
    Is there any tools that can be used for the purpose of profiling , code review for the JDeveloper IDE. Or does jdeveloper come inbuilt with such features.

    CPU Profile and Memory profile in Run will help you
    additional to that you can use jrocikit to do extensive profiling and lock, memory leaks etc

  • Right tool for Configuration Management (version control) for Jdeveloper

    All
    Please share your idea and exepeience about right tool for Configuration Management (version control) for Jdeveloper Development. I used CVS in the past. Now In new company we are planning to use Oracle SCM. Is anybody used it before for Jdev Developmet ( BC4J/ADF and Struts project). Is SCM also intergrated with Jdev just like CVS.??
    Jdev Team please guide us.
    Thanks

    Before you go with SCM you should read these two papers:
    http://otn.oracle.com/products/designer/Schedule_2004.htm
    http://otn.oracle.com/products/designer/FAQ_Schedule_2004.htm

  • Tools for reverse engineering an ERD from the database

    We were thinking about using Visio as a tool for Reverse Engineering ERD's from our database. Unfortunately, we can't find any good training that goes over this part of the tool in detail.
    So, then I started thinking, maybe it's not the best tool, then. Any suggestions on whether this is the tool, or if there's a better alternative?
    Thanks
    --=cf

    Hi ,
    The Oracle Designer contained in the Oracle Dev Suite 10g can accomplish your requirement...
    Greetings....

  • Oracle Fusion Order Demo Application For JDeveloper error

    HI,
    i try to run the (Oracle Fusion Order Demo Application For JDeveloper) Fusion Order Demo (FOD) is an end-to-end application sample :
    when i try to : Right click build.xml and choose Run Ant Target > buildAll . error coming
    Buildfile: C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\Ant\build.xml
    init:
    [javac] Compiling 1 source file to C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\Ant\classes
    setProperties:
    createDatabase:
    refreshSchema:
    BUILD FAILED
    C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\Ant\build.xml:51: The following error occurred while executing this line:
    C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\DBSchema\build.xml:100: The following error occurred while executing this line:
    C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\DBSchema\build.xml:63: The following error occurred while executing this line:
    C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\DBSchema\build.xml:28: C:\Oracle\Middleware\jdeveloper\wlserver_10.3\server\lib not found.
    Total time: 6 seconds
    how i can run the build.xml

    Hi,
    not quite sure the question is clear. The add cart command is a link defined in the JSPX file
    <af:commandLink partialSubmit="true"
    actionListener="#{shoppingCartBean.addItemToCart}"
    id="cl3">
    that points to
    public void addItemToCart(ActionEvent evt) {
    Map attributes = evt.getComponent().getAttributes();
    invokeUpdateOp(new Integer(attributes.get( PRODUCT_ID_COL )+ ""));
    in StoreFrontModule\StorefrontUI\src\oracle\fodemo\storefront\cart\view\managed\ShoppingCartBean.java . This is where you follow up then.
    +"how i can make Repetition for the items in home.jspx"+
    I can only assume you mean how to create the catalog items. Here I suggest you look at the demo source as this is what the demo is for. If you are new to ADF, I recommend that you first run a tutorial from here
    If you are on 11g R1: http://www.oracle.com/technetwork/developer-tools/jdev/overview/index-100269.html
    If you are on 11g R2: http://docs.oracle.com/cd/E18941_01/tutorials/toc.htm
    No demo can replace proper learning, to be honest
    Frank

  • Suggestions about the best tool for quality check for an ADF application

    Hi All,
    I need a few suggestions about the best tool for quality check in our ADF applicaiton.
    ours is a small size WebCenter Portal application which neither uses any task flows nor consumes any portlets.
    It has many jspx pages that use ADF components like table etc, consume web services using web service clients, and has some java classes.
    We have come across below option to implement the code quality tools.
    1. Jdeveloper inbuilt Staus option in View tab
    2. PMD extension for Jdeveloper
    3. Red Samurai
    Few more suggestions or best practices would be really helpful.
    Thanks,
    Usha

    Some general ADF / Webcenter coding standards -
    http://umeshagarwal24.blogspot.com/2012/06/adf-coding-standards-check-points.html
    You can use JAudit as well as mentioned in the blog.

  • How to enable PMD tool in JDeveloper 10.1.3.3.0

    Hi,
    I have installed Oracle JDeveloper 9.0.3 and I require the PMD tool (used for executing java files for specific standards) to get installed in the same IDE. After downloading the appropriate version of PMD tool, I have tried pointing the executable PMD jar file in the Jdev where it is not able to identify the tool only. Please pour your suggestions how to make JDeveloper to recognize the PMD tool ?
    Thank You,
    Thiyagarajan
    Edited by: user628911 on Mar 23, 2009 10:16 PM

    Hi,
    I am trying to use PMD version 4.2.2.0.0 for JDeveloper 10.1.3.3.0.
    I am in need to use a set of defined rules in the form of XML file to execute the code for the standards violation.
    But after installing PMD in JDeveloper, it was listing out a set of rules (Navigation : Tools -> Preferences... -> PMD (in left side pane)) comes along with the PMD version and not letting the custom file to get pointed.
    Please help me in how to get the XML file to be identified by the application ? Its very urgent, your suggestions are highly appreciated.
    With Thanks,
    Thiyagarajan
    Edited by: user628911 on Mar 23, 2009 12:24 AM

  • Chart & Graph Tools in jdeveloper 11

    Dear all
    i am trying to find chart & Graph Tools in jdeveloper 11 but i cant find them ?
    is there any configuration needed to be able to work with it ?
    Many Thanks.

    Are you talking about ADF Faces Graphs?
    You need to add the ADF Faces Data Visualization components to your project.
    There is a tutorial for using them linked from the ADF Faces page on OTN.

  • Pre verify tool for wireless Java apps - HPUX

    Hi wireless gurus,
    1. Does Oracle ships a pre verify tool for wireless Java apps for HPUX platform with any of it's products.
    2. Please let me know any such tool for HPUX, preferably with a free demo version

    Hi wireless gurus,
    1. Does Oracle ships a pre verify tool for wireless Java apps for HPUX platform with any of it's products.What kind of pre-verify tools are you referring to?
    If you are looking something to verify Java code in general, then Jdeveloper has some features built-in for this purpose.
    The Oracle9IAS Wireless service designer allows you test, try, and debug wireless apps.
    2. Please let me know any such tool for HPUX, preferably with a free demo version

  • Certificate issue in jdevloper tool for calling external issue

    Hi
    while Invoking the external application wsdl in SCA as a web sevice i am getting error in Jdeveloper tolll as
    "Error while Reading wsdl file: https://abcd?wsdl
    WSDLException: FaultCode=PARSER_ERROR:Failed to read wsdl file at: https://abcd?wsdl
    caused by:javax.net.sslHandshakeException, :
    javax.net.sslHandshakeException:sun.security.validator.validatorException:No trusted certificate found"
    Is it the issue with Jdev tool ?. http url i am able to invoke not https.
    Where to configure certificate in jdeveloper tool for calling external service.
    Thank
    Neeraj

    extract the certificate for your https site and add this to your trusted store.
    if you are using the default trust, it should be located under WLSERV~1.3\server\lib\DemoTrust.jks.
    you can either use keytool or a tool like portecle for the same.

  • SCM Linus Torvalds on git Is there integration for Jdeveloper?

    http://youtube.com/watch?v=4XpnKHJAok8
    Linus Torvalds visits Google to share his thoughts on git, the source control management system he created two years ago. Git is the open source revision control software that Linus Torvalds developed to help manage Linux kernel development. You can download it yourself and use it for your own kernel hacking -- or for software development projects of your own. This article shows you how to get started hacking Linux with the Git tools. Basically for a distributed group development, it's a better environment than CVS or SVN.
    Is there an integration for Jdeveloper on this topic?
    Has anybody tried writing their own SCM integration, how much work is this?
    http://git.or.cz/
    I can't find anybody either Eclipse or otherwise that is using this?

    Thanks for posting this - that was a very interesting talk. I was completely in agreement with a lot of the points Linus made about branching (we branch and merge a huge amount within the JDeveloper team), although I'm less sold on the distributed nature of git. I also think that other SCM systems out there are capable of making branching really easy without necessarily being distributed.
    AFAIK, there are no Git extensions for JDeveloper. There is a version control API you can use to integrate support for version control systems, although you'll probably need some kind of Java binding to Git (or else, invoke its commands from JDeveloper which is usually slower, but supported via part of the version control API).
    Thanks,
    Brian

Maybe you are looking for