SQL Developer is a free application delivered by Oracle which can be used to create and run queries for working with data in the Oracle databases.
IMPORTANT: The preferred method for using SQL Developer is to use Microsoft (MS) Visual Studio (VS) Code with the SQL Developer plugin.
- An alternative method is to use SQL Developer through the AppsToGo application.
- If you are not able to use MS VS Code and prefer not to use AppsToGo, then follow the steps below to install SQL Developer locally.
Table of Contents
- Verifying Proper version of JDK is installed
- Downloading and Installing SQL Developer
- Creating a Connection to Data Warehouse using SQL Developer
- Creating and Running a Query
- Exporting Query Results
Verifying Proper version of JDK is installed
As of January 2026, Oracle is optionally including Java Development Kit (JDK) 17 with SQL Developer 24.3
- Click on the desktop
- Select Go in the Finder menu
- Select Applications. The Applications folder is displayed.
- Double-click Utilities. The Utilities folder is displayed.
- Double-click Terminal. The Terminal application opens.
- Type
java -version - Press Enter. If JDK is installed, the version will be displayed.
- The version will be the first line. This example shows 1.8
- Note: there are various distributions of Java: OpenJDK, Oracle, Amazon Coretta, etc. They all will work with SQL Developer.
Downloading and Installing SQL Developer
Oracle offers SQL Developer for Windows, Mac and Linux. Downloads are available with or without a compatible JDK.
- If the computer has a compatible JDK version, download the appropriate SQL Developer offering which does not include the JDK.
- If the computer does not have a compatible version of Java, downloading the appropriate SQL Developer offering which includes the JDK is easiest.
Once you have downloaded the desired version of SQL Developer, follow the Installation Notes which are linked on the SQL Developer download page.
Creating a connection to an Oracle database using SQL Developer
If you are using a Wireless connection on campus, or you are off campus, VPN is required. Download the Secure Client VPN for Mac OS X client from the Technology Help website.
- Open SQL Developer from the Applications folder on the computer.
- You may see a Problem initializing the JavaFX runtime error. Select OK to dismiss it.
- Click the green + symbol
in the upper left to create a new connection. The connection settings window is displayed. - Type a name for the connection in the Connection Name field
- Type the database username in the Username field
- Type your password in the Password field
- Note: OIT database admins strongly recommend leaving the Save Password box unchecked
- Click the Connection Type drop-down selector and select Basic
- Enter the correct host in the Hostname field
- Set Port to 1521 if not already defaulted to this value
- Click the Service Name radio button option
- Enter the correct Service Name for the database you are connecting to in the Service Name field.
- Click Test. If changes need to be made, edit as necessary and retest.
- Click Save
- Click Connect
Creating and Running a Query
- A new tab will appear in the workspace where you can enter the query. Type in a new query, or paste in a query that was archived from the Web Query Tool.
- Click the green run button in the Query Builder toolbar to execute the query.
- The query results will be displayed at the bottom in the Query Results panel.
Exporting Query Results
- Right-Click (mac: CTRL-Click) on any field in the query results area. A contextual menu is displayed.
- Select Export. The Export Wizard is displayed.
- Choose a format for the exported data.
- Note: when the drop-down list opens, it will be in the middle of the list. Scroll up to find CSV or Excel
- Depending on the format selected, a set of options will be displayed. They can all be left with the default selections.
- Click the Browse button next to the file location. The Save dialog is displayed.
- Click the Location selector at the top.
- Browse to the location where you want the file saved.
- Enter a File Name
- Click Save. The save dialog is closed, and the Export Wizard is displayed.
- Click Next. The Export Summary is displayed.
- Click Finish. The file will be saved.