New Oracle users and authorized

The user has dba privileges can create a new user and authorization

1. New User

create user username identified by password;

2. Authorization

grant connect, resource to username;

grant dba to username;

Guess you like

Origin www.cnblogs.com/langgj/p/11387485.html