日期:2014-05-16 浏览次数:20537 次
---创建表命名空间 create tablespace test datafile 'D:\oracle\product\10.2.0\oradata\personalDB\tbsp_test'size 50M default storage (initial 500k next 500k minextents 1 maxextents unlimited pctincrease 0); --创建用户1并设置其表命名空间为test create user test1 identified by ding default tablespace test; grant resource,connect,dba to test1; --创建用户2并设置其表命名空间为test create user test2 identified by ding default tablespace test; grant resource,connect,dba to test2;