oracle创建新的连接(表空间?数据库?)

一、创建用户名密码

create user username identified by password    --username 是用户名;password 是密码

二、给用户附权、撤权

grant connect,resource to username;GRANT debug any procedure, debug connect session TO username;

 revoke connect,resource  from username;

三、删除用户

drop user username cascade;

四、创建连接

  确定即可

原文地址:https://www.cnblogs.com/xlj227/p/7518942.html