授予用户登录数据库的权限:
grant CONNECT to 用户名;
grant create session to用户名;
授予用户操作表空间的权限:
grant unlimited tablespace to 用户名;
grant create tablespace to 用户名;
grant alter tablespace to 用户名;
grant drop tablespace to 用户名;
grant manage tablespace to 用户名;
授予用户操作表的权限:
grant create table to 用户名; (包含有create index权限, alter table, drop table权限)
授予用户操作视图的权限:
grant create view to 用户名; (包含有alter view, drop view权限)
授予用户操作触发器的权限:
grant create trigger to 用户名; (包含有alter trigger, drop trigger权限)
授予用户操作存储过程的权限:
grant create procedure to 用户名; (包含有alter procedure, drop procedure 和function 以及 package权限)
授予用户操作序列的权限:
grant create sequence to 用户名; (包含有创建、修改、删除以及选择序列)