create tablespace test datafile '/app/oracle/oradata/test.ora' size 1000m;
create user c##test identified by test default tablespace test quota 500m on users;
grant all privileges to c##test
表空间不足问题追加表空间
首先找到使用的表空间 找到表空间文件
alter database datafile '/u01/app/oracle/oradata/hpdsvstar/system01.dbf' autoextend on next 1G maxsize 30G;
追加文件大小
原文链接:https://www.f2er.com/oracle/209180.html