oracle建立用户分配表空间 以及遇到表空间不足问题追加表空间

前端之家收集整理的这篇文章主要介绍了oracle建立用户分配表空间 以及遇到表空间不足问题追加表空间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

猜你在找的Oracle相关文章