Getting Started with Oracle SQL Developer

Getting Started with Oracle SQL Developer


Purpose

This tutorial shows introduces Oracle SQL Developer and shows you how to manage your database objects.

Time to Complete

Approximately 50 minutes

Overview

Oracle SQL Developer is a free graphical tool that enhances productivity and simplifies database development tasks. Using SQL Developer, users can browse database objects, run SQL statements, edit and debug PL/SQL statements and run reports, whether provided or created.
Developed in Java, SQL Developer runs on Windows, Linux and the Mac OS X. This is a great advantage to the increasing numbers of developers using alternative platforms. Multiple platform support also means that users can install SQL Developer on the Database Server and connect remotely from their desktops, thus avoiding client server network traffic.
Default connectivity to the database is through the JDBC Thin driver, so no Oracle Home is required. To install SQL Developer simply unzip the downloaded file. With SQL Developer users can connect to any supported Oracle Database, for all Oracle database editions including Express Edition.

Prerequisites

Before starting this tutorial, you should:
  • Install Oracle SQL Developer 2.1 early adopter from OTN here. Follow the readme instructions here.
  • Install the Oracle Database 10g and later.
  • Unlock the HR user. Login to SQL*Plus as the SYS user and execute the following command: 
    alter user hr identified by hr account unlock;
  • Download and unzip the sqldev_mngdb.zip file that contains all the files you need to perform this tutorial.

Creating a Database Connection

The first step to managing database objects using Oracle SQL Developer is to create a database connection. Perform the following steps:
1 .Open Oracle SQL Developer.
2 .In the Connections navigator, right-click Connections and select New Connection.
Screenshot for Step
3 .Enter HR_ORCL for the Connection Name (or any other name that identifies your connection), hr for the Username and Password, specify your localhost for the Hostname and enter ORCL for the SID. Click Test.
Screenshot for Step
4 .The status of the connection was tested successfully. The connection was not saved however. Click Save to save the connection, and then click Connect.
Screenshot for Step
5 .The connection was saved and you see the database in the list.
Screenshot for Step
6 .Expand HR_ORCL.
Screenshot for Step
Note: When a connection is opened, a SQL Worksheet is opened automatically. The SQL Worksheet allows you to execute SQL against the connection you just created.
7 .Expand Tables.
Screenshot for Step
8 .Select the Table EMPLOYEES to view the table definition. Then click the Data tab.
Screenshot for Step
9 .The data is shown. In the next topic, you create a new table and populate the table with data.
Screenshot for Step

Adding a New Table Using the Create Table Dialog Box

You create a new table called DEPENDENTS which has a foreign key to the EMPLOYEES table. Perform the following steps:
1 .Right-click Tables and select New TABLE...
Screenshot for Step
2 .Enter DEPENDENTS for the Table Name and click the Advanced check box.
Screenshot for Step
3 .Enter ID for the Name, select NUMBER for the Data type and enter 6 for the Precision. Select the Cannot be NULLcheck box. Then click the Add Column icon. 
Screenshot for Step
4 .
Enter FIRST_NAME for the Name, leave type as VARCHAR2 and 20 for the Size. Then click the Add Column icon.
Screenshot for Step
5 .Enter LAST_NAME for the Name, leave type as VARCHAR2 and enter 25 for the Size. Select the Cannot be NULLcheck box. Then click the Add Column icon.
Screenshot for Step
6 .Enter BIRTHDATE for the Name, select DATE for the Data type. Then click the Add Column icon.
Screenshot for Step
7 .
Enter RELATION for the Name, leave type as VARCHAR2 and enter 25 for the Size. Click OK to create the table.
Screenshot for Step
8 .Your new table appears in the list of tables.
Screenshot for Step

Changing a Table Definition

Oracle SQL Developer makes it very easy to make changes to database objects. In this topic, you add a column to the DEPENDENTS table you just created. Perform the following steps:
1 .Select the DEPENDENTS table.
Screenshot for Step
2 .Right-click, select Column then Add.
Screenshot for Step
3 .
Enter RELATIVE_ID, select NUMBER from the droplist, set the Precision to 6 and Scale to 0.
Click Apply.
Screenshot for Step
4 .
The confirmation verifies that a column has been added.
Click OK.
Screenshot for Step
5 .Expand the DEPENDENTS table to review the updates.
Screenshot for Step

Adding Table Constraints

In this topic, you create the Primary and Foreign Key Constraints for the DEPENDENTS table. Perform the following steps:
1 .Right-click DEPENDENTS table and select Edit...
Screenshot for Step
2 .Click the Primary Key node in the tree.
Screenshot for Step
3 .Select the ID column and click > to shuttle the value to the Selected Columns window.
Screenshot for Step
4 .Select the Foreign Key node in the tree and click Add.
Screenshot for Step
5 .Select EMPLOYEES for the Referenced Table and select RELATIVE_ID for the Local Column and click OK.
Screenshot for Step

Adding Data to a Table

You can add data to the DEPENDENTS table by performing the following steps:
1 .With the DEPENDENTS table still selected, you should have the Data tab already selected. If not, select it.
Screenshot for Step
2 .Then click the Insert Row icon. 
Screenshot for Step
3 .
Enter the following data and then click the Commit icon to commit the row to the database.
ID:
FIRST_NAME:
LAST_NAME:Littlefield
BIRTHDATE:01-JAN-97
RELATION:Daughter
RELATIVE_ID:110
Screenshot for Step
4 .
The outcome of the commit action displays in the log window.
Screenshot for Step
5 .You can also load multiple rows at one time using a script. Click File Open...
Screenshot for Step
6 .Navigate to the directory where you unzipped the files from the Prerequisites, select the load_dep.sql file and clickOpen.
Screenshot for Step
7 .Select the HR_ORCL connection in the connection drop list to the right of the SQL Worksheet.
Screenshot for Step
8 .The SQL from the script is shown. Click the Run Script icon.
Screenshot for Step
The data was inserted. Click the DEPENDENTS tab.
Screenshot for Step
9 .To view the data, make sure the Data tab is selected and click the Refresh  icon to show all the data.
Screenshot for Step
All the data is displayed
Screenshot for Step
10 .You can export the data so it can be used in another tool, for example, Excel. Right-click on one of the values in any column, select Export and then one of the file types, such as csv.
Screenshot for Step
11 .Specify the directory and name of the file and click Apply.
Screenshot for Step
12 .If you review the DEPENDENTS.CSV file, you should see the following:
Screenshot for Step

Accessing Data

One way to access DEPENDENTS data is to generate a SELECT statement on the DEPENDENTS table and add a WHERE clause. Perform the following steps:
1 .Select the HR_ORCL Database Connection, right-click and select Open SQL Worksheet.
Screenshot for Step
2 .Drag and Drop the DEPENDENTS table from the list of database objects to the SQL statement area.

3 .A dialog window appears. You can specify what type of SQL statement to create. Accept the default to create a SELECT statement and click Apply.

4 .
Your SELECT statement is displayed. You can modify it in the SQL Worksheet and run it.
Screenshot for Step
5 .
Add the WHERE clause where relative_id > 110 to the end of the SELECT statement BEFORE the ';'.
Click the Run Statement  icon.
Screenshot for Step
6 .The results are shown.
Screenshot for Step

Creating Reports

As the SQL you just ran in the previous topic needs to be executed frequently, you can create a custom report based on the SQL. In addition, you can run a report of your database data dictionary using bind variables. Perform the following steps:
1 .Select the SQL in the HR_ORCL SQL Worksheet that you executed, right-click and select Create Report.
Screenshot for Step
2 .Enter a Name for the report and click Apply.
Screenshot for Step
3 .
Select the Reports tab, expand User Defined Reports and select the report you just created.
Screenshot for Step
4 .Select HR_ORCL from the drop list and click OK to connect to your database.
Screenshot for Step
5 .The results of your report are shown.
Screenshot for Step
6 .You can also run a Data Dictionary report. Expand Data Dictionary Reports > Data Dictionary. Then selectDictionary Views..
Screenshot for Step
7 .Deselect the NULL check box, enter col for the Value and click Apply.
Screenshot for Step
8 .All the Data Dictionary views that contain 'col' in its name are displayed.
Screenshot for Step

Creating and Executing PL/SQL

Oracle SQL Developer contains extensive PL/SQL editing capabilities. In this topic, you create a Package Spec and Package Body that adjusts an employee's salary. Perform the following steps:
1 .Select File > Open using the main menu.
Screenshot for Step
2 .Browse to the directory where you unzipped the files from the Prerequisites, select createHRpack.sql Click Open.
Screenshot for Step
3 .
Select the HR_ORCL database connection from the the drop list on the right.
Screenshot for Step
4 .Click the Run Script icon.
Screenshot for Step
5 .
The package and package body compiled successfully. Click the Connections navigator.
Screenshot for Step
6 .Expand HR_ORCL > Packages > HR_PACK and select HR_PACK to view the package definition.
Screenshot for Step
7 .
Double-click HR_PACK BODY to view the package body definition.
Screenshot for Step
8 .Click on any one of the - to collapse the code or press + to expand the code.
Screenshot for Step
9 .If your line numbers do not appear, you can right-click in the line number area and click Toggle Line Numbers to turn them on. This is useful for debugging purposes.
Screenshot for Step
10 .In the Connections Navigator, select Packages > HR_PACK, right-click and select Run.
Screenshot for Step
11 .A parameter window appears. Make sure that the GET_SAL target is selected. You need to set the input parameters here for P_ID and P_INCREMENT.
Screenshot for Step
12 .Set the P_ID to 102 and P_INCREMENT to 1.2. What this means is that the Employee who has the ID 102, their salary is increased by 20%. The current SALARY for EMPLOYEE_ID 102 is 17000. Click OK.
Screenshot for Step
13 .The value returned is 20400.
Screenshot for Step
14 .To test the Exception Handling, right-click on HR_PACK in the navigator and select Run.
Screenshot for Step
15 .This time, change the P_INCREMENT value to 5 and click OK.
Screenshot for Step
16 .In this case, an exception was raised with "Invalid increment amount" because the P_INCREMENT value was greater than 1.5.
Screenshot for Step

No comments:

Post a Comment

How to find all cancel Requisitions

SELECT prha . *   FROM po_Requisition_headers_all prha , po_action_history pah   WHERE      1 = 1        AND pah . object_id ...