oracle 创建表空间和用户
程序员文章站
2022-07-14 19:15:23
...
写下备忘
--创建表空间
create tablespace 空间名
logging
datafile 'D:\dbpath\xxx.dbf'
size 50m;
--修改表空间自动增长
select file_id,aa.* from dba_data_files aa where tablespace_name='空间名'
alter database datafile 33 autoextend on next 10M maxsize 10G;
--创建用户
create user 用户名 identified by password
default tablespace 空间名;