我国民法典结构:Oracle新建表空间及用户命令

来源:百度文库 编辑:偶看新闻 时间:2024/05/04 18:54:23
create tablespace cls datafile 'D:\oracle\product\10.2.0\oradata\ORCL\cls.ora' size 100m reuse  
       autoextend on maxsize unlimited  
       default storage(initial 320k  
               next 320k  
               minextents 1  
               maxextents unlimited  
               pctincrease 0);                
create user txdb identified by txdb  
 default tablespace cls  
 temporary tablespace temp;  
grant connect,resource,dba to txdb; 
commit;