Oracle: Could not create another database? Create another data source.

I needed to set-up another data source using the same database server

—–

So using the SQL Plus, i created a user and granted privileges for it.

Creating User
SQL> create user username identified by password default tablespace user_tablespace temporary tablespace temp_tablespace;
e.g.
SQL> create user wpsdbusr identified by password default tablespace users temporary tablespace temp;

Granting Privileges
SQL> grant connect, resource to username;
e.g.
SQL> grant connect, resource to wpsdbusr;

now i have another data source for my project using the same database.

SPEAK / ADD YOUR COMMENT
Comments are moderated.

You must be logged in to post a comment.

Return to Top