Oracle 新增删除账户

新增用户:

create user test identified by 123456;
grant dba,connect,resource to test;

删除账户:

drop user xxx cascade;

原文地址:https://www.cnblogs.com/peng-lan/p/6061928.html