Oracle建立新用户

create user jack identified by "123" account unlock   --解锁
default tablespace USERS   --默认表空间
temporary tablespace TEMP             --当前表空间

grant connect to jack;               --获取连接
grant unlimited tablespace to jack;   --无限制的表空间
grant resource to jack; --授予资源



grant dba to jack  ----授权

select userenv('language') from dual;       --查看字符集

猜你喜欢

转载自tianqiushi.iteye.com/blog/2210575
今日推荐