-- 创建表空间 create tablespace frank_table_space datafile '/home/oracle/app/oracle/oradata/helowin/frank_table_space.dbf' size 100M autoextend on next 10M maxsize 3000M;
-- 删除表空间 drop tablespace frank_table_space including contents and datafiles
Service "helowin" has 1 instance(s). Instance "helowin", status READY, has 1 handler(s) for this service... Service "helowinXDB" has 1 instance(s). Instance "helowin", status READY, has 1 handler(s) for this service... The command completed successfully
案例-在线平台
1 2 3 4 5 6 7 8 9 10 11 12
--创建用户 createuser FGWCMS identifiedby Gzxu2012; grantconnect,resource,dba to FGWCMS;