
The JDeveloper application is the highest level in the organizational structure. It stores information about the objects you are working with, while you are creating your application. It keeps track of your projects and the environment settings while you are developing.
-
Start JDeveloper by selecting Start > All Programs > Oracle Fusion Middleware 11.1.2 > JDeveloper Studio 11.1.2
-
If prompted for a Role, choose Database Developer and click OK.
Close the Tip of the Day window.
Once loaded, the JDeveloper IDE appears.Read more...
-
In the Applications Navigator, click New Application.
-
In the New Gallery, select General | Applications and choose Database Application.
Click OK.
-
In the Create Database Application dialog, change the Application Name from Application1 to CreateDBObjects and type oracle as the Application Package Prefix. Notice that the Directory Name automatically changes to match the new Application Name.
Click Next.
-
In Step 2 of the Wizard enter NewSchema as the Project Name.
Click Finish.
When you work in JDeveloper, you organize your work in projects within applications.Read more...
-
The Application Navigator should look like the following:
In the Application Navigator, Projects panel, projects are displayed as the top level in the hierarchy.Read more...
-
Save your work by clicking Save All
. You should save your work at regular intervals as you progress through the rest of the tutorial.
One way to develop offline database object definitions is by using a database diagram. You can create offline tables, foreign key relationships, views, synonyms, sequences, usages, and joins directly on the diagram. You drag components from the Component Palette onto the diagram, then draw relationships and annotations, such as attachments and dependencies, between objects. A form of UML notation is used to represent each of the objects on the diagram. Each component you create on the diagram is also displayed in the Application Navigator. To begin creating a database diagram, you will open the Create Database Diagram dialog.
-
To open the dialog, choose File | New.
-
In the New Gallery, expand Database Tier and select Offline Database Objects, then select Database Diagram.
Click OK.
From the diagram, you can edit your objects with in-place editing.Read more...
-
In the Create Database Diagram dialog, enter Database Diagram as the name.
Click OK.
-
A new empty diagram opens.
-
Make sure the Component Palette displays the Database components.
-
From the Component Palette, drag and drop the table icon
component onto the diagram.
-
In the Specify Location dialog, select Application Project. Click New to open the Create Offline Database dialog.
-
Enter DBOffline1 as the database name, and DBDEMO as the default schema name.
Click OK. Click OK again to close the Specify Location dialog.
-
The Application Navigator displays the new offline database diagram and table.
-
The database diagram displays the default table, named TABLE1.
-
Click Save All
to save your work.
You can use JDeveloper to work directly with database objects through a database connection. Alternatively, you can work with offline database definitions which you can subsequently generate to a database schema.

-
In the database diagram, select the new table name TABLE1, and change it by typing PERSONS. Then press Enter or Tab.
-
To add a column definition, click in the white box under the table name, then click again to expose the default format. Type PERSON_ID:NUMBER(15,0) and press Tab.
-
With the default format exposed in the next box, add the column definitions FIRST_NAME:VARCHAR2(30 BYTE), LAST_NAME:VARCHAR2(30 BYTE) and GENDER:VARCHAR2(1 BYTE), one at a time pressing Tab to advance to the next.
When you see the default format exposed in the box, you can type over the default text.Read more...
-
Double-click the PERSONS table component on the diagram to open the Edit Table dialog, where you can create a primary key.
-
Select Primary Key in the navigation panel, then shuttle PERSON_ID from the Available Columns list to the Selected Columns list.
Click OK. A unique index is automatically added for the primary key.
-
In the Component Palette, drag and drop a Table component
onto the diagram. Then change the table name to ADDRESSES.
-
In the ADDRESSES table, add the following column definitions: ADDRESS_ID:NUMBER(10,0), ADDRESS_LINE1:VARCHAR2(40) and ADDRESS_LINE2:VARCHAR2(240).
-
Double-click the ADDRESSES table component on the diagram to open the Edit Table dialog, where you can create a primary key.
-
Select Primary Key in the navigation panel, then shuttle ADDRESS_ID from the Available Columns list to the Selected Columns list.
Click OK.
-
In the Component Palette, select the Foreign Key component
. In the diagram, click the top of the PERSONS table, then click the top of the ADDRESSES table to create the foreign key.
The Create Foreign Key dialog lets you edit the default foreign key properties.Read more...
-
In the Create Foreign Key dialog, accept the default foreign key properties and click OK.
-
The diagram should now look like the following:
Notice the Primary, Foreign keys and indexes displayed in the tables.
The Application Navigator should look like the following:
In the Application Navigator, the PERSONS and ADDRESSES tables are displayed in the Offline Database Sources node.Read more...
-
Click Save All
to save your work.
Views are virtual tables based on the result-set of a SELECT statement that lets you combine tables and present the data as if the data were coming from a single table. You can add SQL Functions, Joins, WHERE, GROUP BY, ORDER BY, or HAVING clauses to a view, to present exactly the data you want to the user.
-
From the Component Palette, drag and drop the View component
onto the diagram. Then change the view name to PERSON_INFO.
-
In the diagram, double-click PERSON_INFO to open the Edit View dialog and then select FROM clause in the navigation panel.
-
Expand ADDRESES | ADDRESSES_PERSONS_FK in the Available list, and select PERSONS, then shuttle it to the Selected list to create a join between ADDRESSES and PERSONS.
-
Select the JOIN node in the Selected list, and then click Edit
.
You can create a JOIN in the Edit View dialog; once the JOIN node is selected, the Edit button is available.Read more...
-
In the Edit Join dialog, accept the default JOIN, which is created using the Foreign Key, and click OK.
Click OK again to close the Edit View dialog.
-
In the database diagram, select All the columns except PERSON_ID in the PERSONS table. Then drag and drop them onto PERSONS view.
-
In the diagram, select All the columns except PERSON_ID in the ADDRESSES table. Then drag and drop them onto ADDRESSES view.
-
The database diagram now includes the offline database view:
The database diagram now includes the offline database view:
Read more...
-
Click Save All
to save your work.
A sequence is a schema object that can generate unique sequential values. These values are often used for primary and unique keys. One way to populate a key with a value from a sequence is to use a trigger to insert the sequence's NEXTVAL into the field.
You use the Edit Table dialog to specify that you want to have the primary key for the table populated from a new sequence and updated via a new trigger. Read more...
-
In the Application Navigator, under Offline Database Sources | DBOffline1 | DBDEMO, double-click PERSONS to open the Edit Table dialog.
-
Click Column Sequences in the navigation panel. Confirm that PERSON_ID is selected in the Column dropdown list.
-
Select Populate Column from a Sequence on insert check box.
Click OK.
In the Edit Table dialog, selecting Populate Column from a Sequence on insert on a column creates a default sequence for that column, and an associated trigger.
Read more...
-
PERSONS_TRG trigger and PERSONS_SEQ sequence appear in the Application Navigator.
-
In the Application Navigator, select the PERSONS_SEQ node then drag and drop it onto the diagram.
-
In the Component Palette, select the Dependency component. In the diagram, click the PERSONS table, then click the PERSONS_SEQ sequence to create the relationship.
-
Click Save All
to save your work.
-
The offline database diagram and Application Navigator display the new sequence and trigger you created.
You can edit the sequence (for example, set the increment, minimum and maximum values) by double-clicking PERSONS_SEQ in the Application Navigator to open the Edit Database Sequence dialog.
Read more...
If you have been following along with the example, the database objects created emulate an Oracle 11g database. If you have created objects that emulate another database type, for example an Oracle XE database, you may not be able to create partitions in a table.

-
In the Application Navigator, under Offline Database Sources, right-click the DBOffline1 node, and choose New Data base Object New Table.
-
In the Create Table dialog, enter ORDERS as the table name, and select Advanced to display additional options. You should see a default column ( COLUMN1) populated in the Columns list.
-
Under Column Properties, change the name to ORDER_ID, then select NUMBER from the Type dropdown list.
-
Click Add
three times to add three more default columns. Then change the names and types to the following values: ORDER_DATE (type DATE), ORDER_TOTAL (type NUMBER), PERSON_ID (type NUMBER).
-
In the navigation panel, select Primary Key, and shuttle ORDER_ID from the Available list to the Selected list.
-
In the navigation panel, select Foreign Keys and click Add
to add a new foreign key.
-
Choose PERSONS from the Referenced Table dropdown list.
-
Confirm that PERSON_ID is selected in the Local Column dropdown list.
You can choose from any of the schemas that you have referenced in your project to create foreign keys between tables in different schemas.Read more...
-
In the navigation panel, select Partitioning, and select RANGE from the Partition By dropdown list.
-
Shuttle ORDER_DATE from the Available list to the Selected list.
-
In the navigation panel, select Partition Definitions and click Add
.
-
In the Partition Details section, enter ORDERS_PRE_2007 for the name and TO_DATE('01/01/2007', 'MM/DD/YYYY') for the values.
-
Click Add
to add a second partition definition. Enter ORDERS_2007 for the name and TO_DATE('01/01/2008', 'MM/DD/YYYY') for the values. .
Click OK.
-
Click Save All
to save your work.
-
The Application Navigator displays the new ORDERS table that was created:
-
From the Application Navigator, drag ORDERS onto the diagram.
Notice that since you defined a Foreign Key between Orders and Persons in the Edit Table Properties dialog, it is automatically drawn on the diagram when you drop the Orders table.
Range, Hash, List, Composite Range-Hash and Range-List partitioning is supported for both tables and indexes.
Read more...
You can connect to any database for which you have connection details. If you can connect as a user with DBA privileges, follow the steps in this card to create an IDE database connection and then create a new database user with the name DBDEMO.

-
From the main menu, select File | New to open the New Gallery. Select General | Connections | Database Connection.
Click OK.
-
If you can connect as a user with DBA privileges, follow steps 3 through 14 to create an IDE database connection and then create a new database user with the name DBDEMO. If you don't have DBA privileges, ask your DBA to create a DBDEMO database user with the Roles and System privileges as specified in this tutorial. Then proceed to step 16 to create a DBDEMO connection.
-
In the Create Database Connection dialog, select IDE Connections if it is not selected as the Create Connection In option.
-
Enter a name for the connection TutorialConn and select the connection type. Then enter your username and password for connecting to the database. You must have DBA privileges if you (and not your DBA) will be creating a new database user. Select the JDBC Driver, and enter the Host Name, SID or Service Name, and JDBC Port . If you're not sure what driver to use, accept the default ( thin).
-
Click Test Connection to confirm that you can connect.
Click OK if the connection was successful.
-
From the View menu option, choose Database --> Database Navigator.
When you create the IDE database connection, the Database Navigator should look similar to this, when you expand the IDE Connections node:Read more...
-
Expand the IDE Connections node and the TutorialConn connection node you created.
-
Right-click the Other Users node and choose Create User.
-
In the Create/Edit User dialog, enter DBDEMO as the name for the new user, then enter a password and confirm it.
-
Click the Roles tab and select Granted for the following roles: CONNECT, RESOURCE.
-
Click the System Privileges tab and select Granted for the following roles: ALTER ANY SEQUENCE, ALTER ANY TABLE, COMMENT ANY TABLE, CREATE ANY INDEX, CREATE ANY SEQUENCE, CREATE ANY TABLE, CREATE ANY TRIGGER, CREATE ANY VIEW.
-
Click the SQL tab and review the SQL script to create the new user, then click Apply .
-
Review the results of the SQL execution.
Click Close.
-
From the Main menu, select File | New. In the New Gallery, select General > Connections > Database Connection again to create a DBDEMO connection for the DBDEMO user you added earlier.
Click OK.
-
Create a DBDEMO connection for the DBDEMO user you added earlier. Enter DBDEMOConn as the connection name, and DBDEMO for the user name. Then enter the password and connection details. (If your DBA created the DBDEMO user, get the password and connection details from your DBA.). Click Test Connection to confirm that you can connect.
Click OK if the connection was successful.
-
Click Save All
to save your work.

You can use JDeveloper to generate DDL for any offline objects you have created. You can choose the objects to include, whether you need CREATE, REPLACE or ALTER keywords, and other options for the DDL. You can choose to generate the DDL straight into a specific database or to generate a .sql script, using the Generate SQL from Database Objects wizard.
-
In the Application Navigator, under Offline Database Sources | DBOffline1, right-click the DBDEMO node, and choose Generate to launch the Generate SQL from Database Objects wizard.
-
On step 1, make sure Source from project is selected. Click Next .
-
On step 2, confirm that SQL Script is selected. Click Next.
-
On step 3, shuttle the offline database objects from the Available list to the Selected list. Then click Next .
If you have been following along with the example, the database objects created emulate an Oracle 11g database, and you can shuttle all the offline database objects to the Selected list.
Read more...
-
On step 4, confirm that CREATE is selected. Then click Finish to generate the DDL script.
-
The script1.sql file opens in the editor.
-
In the editor window, click the SQL Worksheet bottom tab.
-
In the SQL Worksheet, select the connection DBDEMOConn from the dropdown list on the right of the toolbar.
You can use the SQL Worksheet to enter and execute SQL, PL/SQL and SQL*Plus statements.Read more...
-
Click Run Script and review the output displayed.
-
In the SQL Worksheet toolbar, click Commit.
-
From the main menu, choose View | Database -->Database Navigator to open the Database Navigator. Click the Refresh button.
-
Fully expand the DBDEMO node and its subnodes to see the new database objects.
When you run the SQL script, the output displays in the Script Output page of the SQL Worksheet:Read more...

-
In the Application Navigator, under Offline Database Sources | DBOffline1 | DBDEMO , double-click the ADDRESSES node to open the Edit Table dialog.
-
Click Add to add a new default column. Then change the name to TOWN and the size of type VARCHAR2 to 25. Then click OK.
-
In the Application Navigator, double-click the PERSONS node to open the Edit Table dialog.
-
In the Columns list, select GENDER and then select Cannot be NULL.
-
In the Comment box, enter a 3 way flag (M)ale (F)emale (D)eclined to answer.
Click OK.
-
In the Application Navigator, under Offline Database Sources, right-click the DBOffline1 node, and choose Generate to launch the Generate SQL from Database Objects wizard.
-
On step 1, make sure Source from project is selected. Click Next .
-
On step 2, confirm that SQL Script is selected. Click Next .
-
On step 3, shuttle PERSONS and ADDRESSES from the Available list to the Selected list. Then click Next .
-
On step 4, select ALTER and Manual Reconcile. Confirm that DBDEMO is the selected connection. Then click Next .
Using ALTER and Manual Reconcile allows you to review the differences between the offline object definition and the object definition in the database.Read more...
By shuttling differences to the right panel you are specifying that these changes should be included in the DDL to be generated. If there is any text that has been changed (such as the addition of the comment on the GENDER column in this example), highlighting the text node will enable the Compare Text button so that you can compare the full text. -
On step 5, expand the PERSONS and ADDRESSES nodes to review the differences, which are highlighted in the left panel.
-
Shuttle the differences to the online DBDEMO user on the right.
-
Click Finish to generate the DDL script.
-
After completing the wizard, the new script script2.sql displays in the DBOffline1 node in the Application Navigator.
-
The file opens in the SQL Worksheet source editor.
-
Click Save All
to save your work..
In many application development projects, the starting point is an existing database. JDeveloper gives you the ability to reverse engineer any existing objects in the database into your application. From there you can edit, delete and create new offline definitions prior to generating new SQL scripts.

-
Click the Application Navigator dropdown menu and select New Project from context.
-
In the New Gallery, select General | Projects | Database Project.
-
Enter DBRevEng as the project name.
Click Finish .
-
In the Application Navigator, right-click the DBRevEng project and select New from context.
-
In the New Gallery, select Database Tier | Offline Database Objects| Copy Database Objects to a Project.
Click OK.
-
On step 1 of the Copy Database Objects to a Project dialog, confirm that the application connection you created earlier, DBDemoConn, is selected in the dropdown list.
Click Next.
-
On step 2, click the New button to the right of the Offline Database field to create a new offline database.
-
Enter DBDemoReverse as the name and DBDEMO as the default schema.
Click OK. Then click Next.
-
On step 3, click Query to display all available database objects. Then shuttle the database objects from the Available list to the Selected list.
Click Next and then click Finish to generate the database objects.
-
The generated objects are displayed in the Application Navigator.
You will create a new database diagram and add the generated objects to the new diagram.
-
In the Application Navigator, right-click the DBRevEng project and select New from context.
-
In the New Gallery, select Database Tier | Offline Database Objects | Database Diagram.
Click OK.
-
Enter DBOffline2 as the diagram name, and confirm that oracle is entered as the package name.
Click OK.
-
In the Application Navigator, select all the generated objects that have been reverse engineered into the project (except the trigger one that doesn't display on a database diagram) then drag and drop them onto the diagram.
-
The new database diagram shows the reverse-engineered objects, which were generated into the project and then dragged onto the diagram.
An alternative way to achieve the same end result.Read more...
-
Click Save All
to save your work.
You've successfully performed this tutorial.
- Create a database diagram and add offline database tables
- Create offline database views
- Add a sequence to the diagram
- Create a table with partitions
- Create a database user and a database connection
- Generate a DDL script
- Reconcile the database
- Reverse-engineer database objects
- Using Logical Models in UML for Database Development
- "Getting Started with Working with Databases" in User's Guide for Oracle JDeveloper

