Oracle has released the free SQL DEVELOPER TOOL & can be download from oracle website.
http://download.oracle.com/docs/cd/B19306_01/appdev.102/b31695/intro.htm
Installation:
SQL DEVELOPER installs by simple "unzipping" the file downloaded from oracle.
Note: Not an windows installed program.
Run: Execute the sqldeveloper.exe in the unzipped folder.
1. Connection:
We can open multiple connections in a single instance.
Click New connection & then enter the connection name, host,port,sid,username,password.
2. After connecting to a schema (user):
we see three subpanels
1. Expandable list of objects associated with the user.
2. SQL Worksheet.
3. Results
Snippets: Drag & drop or code completion.
DBMS_OUTPUT : Will be displayed in DBMS_OUTPUT tab.
SQL Developer allows:
Setting and removal of breakpoints.
Complie for Debug : Must be executed to make an object available for debugging.
Once compiled for Debugging,When executed in Debug mode the code will stop at the break point.
ShortCut Keys:
F5 -- Execute as a script.
F9 -- Execute statement.
F10 -- Explain Plan
F11 -- Commit
F12 -- Rollback
Ctrl + F7 -- Formating.
F6 -- Auto Trace.
F7 -- Step by Step execution.
Shift + f4 -- Describe object in popup.
Ctrl + D -- Clear SQL WorkSheet.
No comments:
Post a Comment