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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
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;