我對這一切都有點新...我想創建一個新的表空間,它將包含我所有的表和索引。Oracle:沒有足夠的權限將數據插入到表空間表中
先將表代碼..
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用戶,我可以創建表,而不能查詢或插入數據,我需要授予哪些特權?
你的表和表成功創建??? – Addicted