//Oracle创建新用户(user)
create user username identified by userpassword;
//Oracle设置权限
grant "权限名" to username;
//Oracle用户解锁
alter user username account unlock;
//Oracle用户密码修改
alter user username identified by userpassword;
//Oracle创建新用户(user)
create user username identified by userpassword;
//Oracle设置权限
grant "权限名" to username;
//Oracle用户解锁
alter user username account unlock;
//Oracle用户密码修改
alter user username identified by userpassword;
转载于:https://www.cnblogs.com/fazstart/archive/2013/02/24/2924690.html