前提条件:使用pl/sql Developer 新建“command window”窗口(File>New>Command Window)
-- oracle 安装在windows 系统 建立表空间语句
create tablespace test_service
datafile 'test_service.dat' size 10M reuse
autoextend on next 5M maxsize 3096M;
===========================创建表空间以后建立用户名和密码
1、首先使用dba权限角色登陆PLSQL
2、选择File-New-User 输入需要创建的账户及密码,选择表空间
3、一定要分配的权限:Role privileges 角色权限,至少分配connect(连接权限)、resource(资源访问权限)
System privileges系统权限,至少分配unlimited tablespace(无限使用表空间权限)
Quotas配额权限:“Tablespace” 中选中General里你填的默认表空间, 勾选 “Unlimited” 复选项 (这个一定要选中啊,不然创建表的时候会提示没有表空间的访问权限的)。
然后单击 ”Apply” 按钮使各项设置起作用。
创建视图权限、 同义词对象查看权限、 同义词更删查改权限
Connected as qc A: grant select on A.TBL_ACCEPT_RECORD to B;
Connected as qc DBA:grant create any view to B;