在plsql工具中执行以下语句,可建立Oracle表空间。
/*分为四步 */ /*第1步:创建临时表空间 */ create temporary tablespace utms_temp tempfile 'G:\oracle\oracledata\utms_temp.dbf' size 50m autoextend on next 50m maxsize 20480m extent management local; /*第2步:创建数据表空间 */ create tablespace utmsspace logging datafile 'G:\oracle\oracledata\utmsspace_data.dbf' size 50m autoextend on next 50m maxsize 20480m extent management local; /*第3步:创建用户并指定表空间 */ create user utms identified by utms default tablespace utmsspace temporary tablespace utms_temp; /*第4步:给用户授予权限 */ grant connect,resource,dba to utms;
原文链接:https://www.f2er.com/oracle/209133.html