我对这一切有点陌生......我想创建一个包含我所有表和索引的新表空间。
首先是表空间代码..
create tablespace Sales_T
datafile 'C:\oracle\product\10.2.0\oradata\project\dataexample.dbf'
size 100m
autoextend on next 100m;
然后将在此空间上分配的用户:
create user app_admin identified by "p4ss" default tablespace
sales_T temporary tablespace temp;
grant connect, resource to app_admin;
grant dba to app_admin;
登录app_admin用户,我可以创建表,但不能查询或插入数据,我需要授予哪些权限?