oracle创建用户脚本:
create user username identified by "password" default tablespace WEBSITE;
grant resource,connect,imp_full_database to
username ; 赋权
-- oracle 用户权限
grant dba to
username ; -- 数据库管理员权限
grant select any table to
username ; -- 查找所有用户表权限
grant debug any procedure to
username ; -- 过程调试权限