Oracle 常用建库模板
记录一下
create tablespace lxw_tablespace datafile '/oradata/orcl/lxw_data_01.ora' size 30G;
--或者
create tablespace lxw_tablespace datafile '/oradata/orcl/lxw_data_01.ora' size 100M autoextend on next 10M maxsize unlimited;
-- 大小 100M,每次 10M 自动增大,最大不限制
create user lxw identified by "lxw@123" default tablespace lxw_tablespace ;
grant connect,resource to lxw ;
--查询表空间
select * from dba_tablespaces
--查询数据文件
select * from dba_data_files