How to create db in oracle sql developer?
3 answer(s)
Answer # 1 #
Steps:1. Open Oracle SQL Developer → Connect to database server. 2. Right-click Connections → New Connection → Enter credentials → Test → Connect. 3. Run SQL command: ```sqlCREATE DATABASE mydb;Commit and verify with SELECT name FROM v$database;
Answer # 2 #
You can also create schema/user instead of full database:CREATE USER myuser IDENTIFIED BY password;GRANT CONNECT, RESOURCE TO myuser;This is common in development environment.