Activity overview
Latest activity by nikjohn1538
6
2
I have installed an Oracle 12c database on my system. I had an application which need to access the database.
Previously in Oracle 11g, I used the following commands to create an user.
create user name identified by name;
grant connect,create session,resource,create view to name;
Can anyone tell me how to create a user in Oracle SOA 12c with my above requirements? I used the following statements but my installation is showing a fatal error saying
FATAL ERROR - java.sql.SQLException: ORA-01950: no privileges on tablespace 'USERS'
Following were the statements used.
create user c##test1 identified by test1 container = ALL;
grant connect,create session,resource,create view to test1
/ comments
6
2
I have installed an Oracle 12c database on my system. I had an application which need to access the database.
Previously in Oracle 11g, I used the following commands to create an user.
create...