我正在搜索如何创建一个用户并授予他所有的权限。
@H_502_14@我发现这两种方法:
第一种方法:
create user userName identified by password; grant connect to userName; grant all privileges to userName;
第二种方法:
grant connect,resource to userName identified by password;
那么这两种方法有什么区别呢?