第1步:创建临时表空间
create temporary tablespace yuhang_temp tempfile 'D:\oracledata\yuhang_temp.dbf' size 50m autoextend on next 50m maxsize 20480m
第2步:创建数据表空间
create tablespace yuhang_data datafile 'D:\oracledata\yuhang_data.dbf' size 1024m autoextend on next 64m maxsize 20480m (一般不需要) (asm管理) create tablespace CEN_PORTAL_V20 datafile '+DATADG' size 1024m autoextend on next 64m ;
第3步:创建用户并指定表空间
create user yuhang identified by "yuhang" default tablespace yuhang_data temporary tablespace yuhang_temp
第4步:给用户授予权限
grant connect,resource,dba to yuhang;标签:yuhang,autoextend,创建,create,next,tablespace,Oracle,授权,size From: https://www.cnblogs.com/zengwb/p/16645720.html