oracle创建表空间和用户


create tablespace BXJIANSHE
logging
datafile 'D:\Dev\oracle\product\10.2.0\oradata\orcl\BXJIANSHE.dbf'
size 50m
autoextend on
next 50m maxsize 20480m
extent management local;


create user jianshenew identified by jianshenew
default tablespace SYSMOVE
temporary tablespace TEMP;



grant connect,resource,dba to jianshenew;

你可能感兴趣的:(oracle创建表空间)