oracle 常用命令

  1. 创建/删除表空间

创建:
create tablespace USERS datafile '/oracle/oradata/mytest/tsuser.dbf'  size 500M autoextend on next 10M maxsize unlimited extent management local;
删除:
DROP TABLESPACE USERS INCLUDING CONTENTS AND DATAFILES;

2. 创建/删除用户

Create User ERIC Identified by Password Default TableSpace USERS; // 这里也可以不指定表空间,可以在后面的时候一起授权
drop user ERIC cascade
Grant Connect,Resource,DBA to ERIC;

3.sqlplus 常用



你可能感兴趣的:(oracle,常用命令)