I want to create new user on existing SID but i don't have login information about the SYSDBA or owner of the database.
Is there any predefined login which has rights to create new user?
following is the script i will be using for creating user:
CREATE USER twofactor IDENTIFIED BY twofactor DEFAULT TABLESPACE USERS TEMPORARY TABLESPACE TEMP;
grant connect to twofactor;
grant resource to twofactor;
connect twofactor/twofactor
thanx in advance.
Start Free Trial