Differences between Oracle Developer an ORacle JDeveloper

Hi,
I am doing a work and i need to know the differences between Oracle Developer and Oracle JDeveloper, if someone can help me it would be very aprreciated.
thx

Aton wrote:
I am doing a work and i need to know the differences between Oracle Developer and Oracle JDeveloper, if someone can help me it would be very aprreciated.1) There is no such thing as 'Oracle Developer'. However, there are
- Oracle SQLDeveloper
- Oracle Developer Suite
2) Assuming Oracle Developer Suite:
- Oracle Dev Suite is used to create Oracle Forms, Oracle Reports, Oracle Discoverer worksheets, and Entity Relationship Diagrams
- Oracle JDeveloper is used to create any kind of Java object (including Java 2 & 3 tier forms) and ALL objects that support those Java objects (XML, UML, database, SOAP, etc) BUT NOT the stuff in Dev Suite.
Both are very powerful. Expect to take at least 15 minutes* to learn either.
/Hans
* (plus 4 to 9 months)

Similar Messages

  • What are major differences between SAP BI and Oracle BI?

    Hi Experts,
    I am new to Oracle BI. But I want to know about major differences between SAP BI and Oracle BI?.
    Please help me....
    Thanks & Regards,
    A. kavya kumari.

    There are at least five major differences :
    S P O r c l e
    but important to also be aware of the minor difference:
    A/a

  • What is Difference between ANSI SQL and ORACLE SQL

    Hi,
    I am going to take the assesment test for ANSI SQL Programming before that i want to know any difference between ANSI SQL and ORACLE SQL?
    I am studying for SQL but the test will be ANSI SQL please let me give an idea about the both.
    Thanks
    Merina Roslin

    Basically there is syntax difference between both of them.
    Lets say i want to join two table EMP and DEPT based on DEPTNO.
    With Oracle SQL format its like this.
    select e.*
      from emp e, dept d
    where e.deptno = d.deptnoHere the joining condition goes in the WHERE clause.
    With ANSI SQL format its like this.
    select e.*
      from emp e
      join dept d
        on e.deptno = d.deptnoHere the join condition is mentioned separately and not in WHERE clause.
    Oracle supports ANSI SQL starting from 9i version.
    You can read more about the syntax difference Here

  • Calling Oracle Developer Report from JDeveloper

    I am using Orale JDeveloper 10.1.2. I can't seem to find a way of producing reports. I read that Oracle Reports developer can be integrated with Jdeveloper. How can I do this? I want to be able to generate reports from Jdeveloper.
    Thanks.
    Lucas

    If you want the Reports integration inside JDeveloper - you need to install the Oracle Developer Suite - the JDeveloper version that comes there has the reports integration.
    For more questions on this try the Reports discussion forum:
    http://forums.oracle.com/forums/index.jsp?cat=19

  • What is the difference between Open-Script and Oracle functional testing

    Hi All,
    Please help me in spotting out the difference between the Openscript and Oracle Functional Testing for Web Application.
    Does Oracle Functional Testing for Web Application have any special features when compared with Open-Script.
    Please help me out.
    Thanks in Advance,
    Nishanth Soundararajan.

    Nishanth
    OFT is the old version of OpenScript, which will no longer be part of ATS as per the next major realize 9.20.
    I would recommend to to spend any time looking at it.
    Regards
    Alex

  • I want to create an app.  Can you tell me the difference between iOS developer program and the mac developer program?

    I want to create an app.  Can you tell me the difference between iOS developer program and the mac developer program?
    Is the difference the device you're creating your app on, or for?

    iOS Developer Program is only for those who wish to develop iDevice apps. Mac program is for those only developing Mac applications. If you wish to do both, then you need to enroll in both programs.

  • Differences between Netweaver development Studio 2.0.14 and 2.0.15?

    Hello guys
    who can tell me what differences between Netweaver development Studio 2.0.14 and 2.0.15 or where I can find documents about them?
    p.s.sorry,I posted it in another thread as well.
    Thanks in advance
    Liying

    Liying
    Check these threads if it helps
    NWDS + CHECKSTYLE / CHECKLIPSE
    /people/umair.salam/blog/2006/01/26/installing-and-configuring-the-preview-edition-of-ep
    Error while creating my first  project on SP15 and why Help doesn't work?
    Thnaks
    Sat

  • What is the difference between personnel development and performance management

    Hi,
    What is the difference between personnel development and performance management in terms of configuration and in  portal level .
    Thanks
    Srikant

    HI Srikant,
    Personnel development is PD module where u can configure the qualification catalog with the proficiency which can be attached to the position or job as a requirement and the same can be attached to the person as a qualification and then you can do the profile matchup and find any qualification deficit and can propose any trraining required to impart the qualification.And also you can do succession planing, career planing and also development plan.
    Performance management is an appraisal cycle in a company . All appraisal process between manager and the employee will be taken care via portal with the appraisal template.(form)
    hope this will help you.
    regards,
    DInesh

  • What are the differences between aqapi.jar in Oracle 8.1.7 and OC4J 9.0.3

    Recently, I have been trying to use AQ as the foreign JMS provider for WebLogic MDB. I started with the AQ/JMS implementation in Oracle 8.1.7. I found that that version of AQ/JMS does not support:
    QueueConnection.createQueueSession(false, ...);
    Session.recover();
    Message.acknowledge();
    Message.setJMSType();
    Message.setJMSReplyTo();
    Connection.setClientID();
    Connection.setExceptionListener();
    After some hacking I was able to dequeue AQ messages using WebLogic MDB, but I could not handle exceptions.
    Later I looked at the version of OJMS in OC4J 9.0.3 and found all the above features are supported (I guess they are required by J2EE 1.3 specs). However, I can no longer dequeue messaged using MDB.
    Can someone at Oracle provide some insight on whether I can mix and match the two OJMS versions to get WebLogic MDB to use AQ?

    I subsequently found this thread:
    MDB on Oracle9iAS Release 2 (9.0.3)
    and found I need Oracle 9i with patches. This indeed solved my problem. The question now is, what is the major difference between the AQ versions?

  • Differences between ANSI SQL and Oracle 8/9

    Hallo,
    i'm looking for good online texts or books concerning the problem "Differences between ANSI SQL and different database implementations (ORACLE, Informix, MySQL...)" I want to check a program written in C (with ESQL) that works with an Informix-DB. In this code i want to find code that is specific to the Informix-DB. I want to change the database, so all the code should be independent from a DB. Does anybody know texts or books concerning this problem?
    thx
    Marco Seum

    Basically there is syntax difference between both of them.
    Lets say i want to join two table EMP and DEPT based on DEPTNO.
    With Oracle SQL format its like this.
    select e.*
      from emp e, dept d
    where e.deptno = d.deptnoHere the joining condition goes in the WHERE clause.
    With ANSI SQL format its like this.
    select e.*
      from emp e
      join dept d
        on e.deptno = d.deptnoHere the join condition is mentioned separately and not in WHERE clause.
    Oracle supports ANSI SQL starting from 9i version.
    You can read more about the syntax difference Here

  • How necessary is for an ORACLE developer to learn JDeveloper

    How necessary is for an ORACLE designer/developer to learn
    JDeveloper/SQLJ/JAVA to develope an enterprise level internet
    application?
    null

    Asad Iqbal (guest) wrote:
    : How necessary is for an ORACLE designer/developer to learn
    : JDeveloper/SQLJ/JAVA to develope an enterprise level internet
    : application?
    As you know, the business and programming community has
    adopted Java in an unprecedented manner.
    Java will be the lifeblood in the infrastructure of many
    future (enterprise level) applications and future platforms.
    So, I believe it is vital to understand Java!
    To develop an enterprise level application without Java,
    would be a difficult propositio to sell!
    Ofcourse, significant technical expertise in
    Designer and Developer, PL/SQL, etc
    will continue to be valued for many years to come.
    But this is just my personal opinion.
    null

  • Differences between different versions of Oracle Database 10 g

    I have some questions about the Oracle Database 10g Release 2 that we download from Oracle web site.
    1)Does the software that we download from Oracle web site is similar to Enterprise Edition or Standard Edition or Standard Edition One or to which edition? In other words, similar to which edition?
    2)What are the differences between Enterprise, Standard, and Standard Edition one?
    3)Are they any features included in the licensing Oracle Database that does not include in the free one that we download from Oracle web site?

    The dowloaded software contains every of the four editions. You choose which edition you want during the installation process.
    The differences and extra-cost options are described in this paper on OTN
    http://www.oracle.com/technology/products/database/oracle10g/pdf/twp_general_10gdb_product_family_0605.pdf

  • Difference between RH Linux Administration & Oracle Enterprise Linux

    Dear Gentlemen,
    what is the difference between the RedHat Linux Administration & Oracle Enterprise Linux System Administration (Training & Certifications)
    Thanks Alot.

    Catalonia wrote:
    Dear Gentlemen,
    what is the difference between the RedHat Linux Administration & Oracle Enterprise Linux System Administration (Training & Certifications)
    Thanks Alot.OEL is an extremely close clone of RHEL; so training for one has very good synergy with the other.
    Please remember there are 2 major version of RHEL (and OEM) in current use, namely RHEL 4 and RHEL 5. (With RHEL 6 over the horizon, currently in Beta 1 since april).
    The RHCT and RHCE certifications are RHEL 5 based on practical exams and are typcially well respected.
    I believe the current OEL certifications are OEL 4 based and are based on multiple choice exams.
    Training orientated for Certifications for one of these will have a low to mid synergy with the required certification training for the other.

  • Differences between BEA's and Oracle's own drivers

    I am trying to understand the various ways and technical differences to
    connect to an Oracle database from WLS 6.1. As far as I can tell, here
    is the list of drivers:
    THIN:
    1. the bundled, old Oracle thin driver in weblogic.jar
    2. the latest Oracle thin driver to prepend to my classpath
    OCI:
    3. the bundled, old Oracle OCI driver in weblogic.jar
    (+ matching Oracle DLL in PATH)
    4. the latest Oracle OCI driver to prepend to my classpath
    (+ latest Oracle DLL in PATH)
    5. Weblogic's own OCI driver in weblogic.jar
    (+ WebLogic's own DLL in PATH)
    I understand that (1) and (3) are 'obsolete'. But what about the others?
    Especially, what are the advantages of (5) over (4) or (2) ?
    Can Joe^H^H^H anybody share some light on this? ;-)
    Thanks,
    Christophe

    Hi Christophe!
    Basically, weblogic bundles 817 thin driver from oracle in 6.1
    For using oracle oci driver, you have to add ocijdbc8.dll in your path.
    Weblogic has its own set of jDrivers(OCI Drivers)
    You need to install oracle client for that. You should use the same driver
    as your client install from weblogic. As per say, if you have 817 oracle
    client installed then you can use weblogic 817 driver. It is OCI driver,
    hence ultimately all calls are diverted to oracle DB thorugh their oracle
    oci API from weblogic driver.
    If you use lots of oracle extensions in your application it is recommended
    to use oracle thin driver.
    However, weblogic jDrivers perform better and more XA compliant then oracle
    thin driver.
    Thanks,
    Mitesh
    Christophe Warland wrote:
    I am trying to understand the various ways and technical differences to
    connect to an Oracle database from WLS 6.1. As far as I can tell, here
    is the list of drivers:
    THIN:
    1. the bundled, old Oracle thin driver in weblogic.jar
    2. the latest Oracle thin driver to prepend to my classpath
    OCI:
    3. the bundled, old Oracle OCI driver in weblogic.jar
    (+ matching Oracle DLL in PATH)
    4. the latest Oracle OCI driver to prepend to my classpath
    (+ latest Oracle DLL in PATH)
    5. Weblogic's own OCI driver in weblogic.jar
    (+ WebLogic's own DLL in PATH)
    I understand that (1) and (3) are 'obsolete'. But what about the others?
    Especially, what are the advantages of (5) over (4) or (2) ?
    Can Joe^H^H^H anybody share some light on this? ;-)
    Thanks,
    Christophe

  • Difference between "Application" and "Project" in jdeveloper IDE.

    I am not sure how to organize the developement environment in jdeveloper. Basically, I am trying to figure out the difference between the "Application" and "Project". I understand that each "Application" can have one-to-many "Projects", but I am still confused as to when to use a new "Application" or when to use a new "Project" within same Application.
    regards
    Jatin

    Hi Jatin
    Application is something like workspace. Within one application you can have many different projects but you can access something from one project in another project.
    The typical approach is to make one project to define the model and another one or two projects within the same aplication with view accesing the model. you cannot access
    the project with model in another workspace (application).
    regards,
    Branislav

Maybe you are looking for