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
2018-09-27 16:21:05 +08:00

3 lines
232 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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%';