After created user sxu, I got below error when tried to connect the database by using Oracle SQL Developer.
command: create user sxu identified by sxu;
error: ORA-01045:user name lacks CREATE SESSION privilege; logon denied
The Solution For this Error Is Simple :
sqlplus / as sysdba
grant create session to "USER-NAME";
Done
Comments
Post a Comment