sql create and grant user access to database

Solutions on MaxInterview for sql create and grant user access to database by the best coders in the world

showing results for - "sql create and grant user access to database"
Mehdi
26 Mar 2017
1//oracle
2sqlplus sys/<password> as sysdba
3create user user1 identified by pass;
4grant connect, resource to user1;
5connect user1/pass;