Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating a new database and new connection in Oracle SQL Developer

I've installed SQL Developer on my system. No connections are being shown in my system yet. How do I create a new connection. Must I create a database first? If yes, then how do I create a new database. The SQL Query Editor window is not opening because there is no connection. All of this because there is no database. How do I create an empty database and then connect to it.

like image 806
MontyPython Avatar asked Sep 08 '13 04:09

MontyPython


People also ask

How do I create a user connection in SQL Developer?

Create a User Account in a Pluggable Database Open SQL Developer. Right-click your PDB sys user account and select Connect. In the SQL Developer Connections tab, expand the connection. Right-click the Other Users node and select Create User from the pop-up menu.


1 Answers

This tutorial should help you:

Getting Started with Oracle SQL Developer

See the prerequisites:

  1. Install Oracle SQL Developer. You already have it.
  2. Install the Oracle Database. Download available here.
  3. 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;

  4. Download and unzip the sqldev_mngdb.zip file that contains all the files you need to perform this tutorial.


Another version from May 2011: Getting Started with Oracle SQL Developer


For more info check this related question:

How to create a new database after initally installing oracle database 11g Express Edition?

like image 90
Leniel Maccaferri Avatar answered Sep 22 '22 23:09

Leniel Maccaferri