oracle新建表空间的四条语句

1.create user platform identified by intest;
2.create tablespace PLATFORM_DATA datafile 'c:PLATFORM_DATA.dbf' size 500m;
3.alter user platform  default tablespace PLATFORM_DATA;
4.grant create session,create table,unlimited tablespace to platform;  
原文地址:https://www.cnblogs.com/hxzblog/p/9598493.html