blog-cq
drop tablespace qb including contents and datafiles;
DROP TABLESPACE TJLGL INCLUDING CONTENTS AND DATAFILES;

drop user qb cascade

create tablespace qb
logging
datafile \'E:\app\landa6\oradata\qb.DBF\' --(表空间路径)
size 32m 
autoextend on 
next 32m 
extent management local;

create user qb identified by qb default tablespace qb

grant dba to qb;--(分配权限给用户)



SELECT \'DELETE FROM \'|| table_name || \';\' FROM USER_TABLES ORDER BY TABLE_NAME;


分类:

技术点:

相关文章:

  • 2022-01-20
  • 2021-12-30
  • 2021-06-07
  • 2021-12-04
  • 2021-12-19
  • 2022-12-23
  • 2022-12-23
  • 2022-01-02
猜你喜欢
  • 2021-08-01
  • 2021-12-04
  • 2021-10-11
  • 2022-12-23
  • 2021-06-13
  • 2022-12-23
相关资源
相似解决方案