Reputation: 3
I installed Oracle SQL developer on my personal computer.
I want to create my own tables in it and work on them.
But, when I try to make the basic connection, it gives an error below
"network adapter could not make the connection".
Can someone please give a detailed explanation about how can I create my own tables and what I should do to connect to some database?
Upvotes: 0
Views: 689
Reputation: 1
This answer is for windows user. And assume that you have installed oracle database, as answered.
sqlplus / as sysdba
create tablespace <tablespace-name>
Create user <username> identified by <password> default tablespace <tablespace-name> quota unlimited on <tablespace-name>;
Upvotes: 0
Reputation: 1492
You have to install Oracle database to create your own tables. You can download Oracle XE from this link.
For a detailed explanation about how to connect to a database, this tutorial comes first when you google it.
Upvotes: 2