发布网友 发布时间:2022-04-22 12:20
共1个回答
热心网友 时间:2023-11-04 07:25
删除表空间temp,但不删除其文件 用:drop tablespace temp;\x0d\x0a 删除表空间temp同时删除表空间的数据对象 用drop tablespace temp including contents;\x0d\x0a删除表空间temp及其包含数据对象以及数据文件 用drop tablespace temp including contents and datafiles;\x0d\x0a希望能帮助你