摘要:
1、建立表空间、用户(文档模式) 用户 建立:create user 用户名 identified by "密码"; 授权:grant create session to 用户名; grant create table to 用户名; grant create tablespace to 用户名; 阅读全文
摘要:
1、删除用户 DROP USER user_name cascade; 2、删除表空间、数据文件 --查看表空间 SELECT * FROM User_Tablespaces; --删除 DROP TABLESPACE tablespaces_name INCLUDING CONTENTS AND 阅读全文