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

oracleoracle-sqldeveloperoracle-xeoracle11g

I have installed Oracle Database 11g Express Edition on my pc (windows 7)
and I have installed Oracle SQL Developer as well.

I want to create a simple database to start with, maybe with one table or two and then use Oracle SQL Developer to insert data and query it.

When I open Oracle SQL Developer, it asks me to create a new connection, therefore it assumes that a database has already been created.

So my question is, how do I create an initial database in Oracle 11g?

Best Answer

When you installed XE.... it automatically created a database called "XE". You can use your login "system" and password that you set to login.

Key info

server: (you defined)
port: 1521
database: XE
username: system
password: (you defined)

Also Oracle is being difficult and not telling you easily create another database. You have to use SQL or another tool to create more database besides "XE".