This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nms-nmsweb/sql/nms数据库初始化/SQL_删除表空间.txt

3 lines
232 B
Plaintext
Raw Permalink Normal View History

2018-09-27 16:21:05 +08:00
1.删除表空间drop tablespace di_w201512 including contents and datafiles;
2.获得删除语句:
select 'drop tablespace '||ts.name||' including contents and datafiles;' from v$tablespace ts where ts.NAME like '%_201510%';