删除无任何数据对象的表空间:
首先使用PL/SQL界面化工具,或者使用oracle自带的SQL PLUS工具,连接需要删除的表空间的oracle数据局库。
确认当前用户是否有删除表空间的权限,如果没有 drop tablespace,请先用更高级的用户(如sys)给予授权或者直接用更高级的用户。
用drop tablespace xxx ,删除需要删除的表空间。
删除有任何数据对象的表空间
使用drop tablespace xxx including contents and datafiles;来删除表空间。
注意事项:
如果drop tablespace语句中含有datafiles,那datafiles之前必须有contents关键字,不然会提示ora-01911错误
删除语句:delete
格式:
delete from 表名 where 条件
根据where 条件删除表中数据,如果没有加入where 条件,删除表中所有的数据
案例:删除customer中姓名是张居正的信息
delete from customer
where name = '张居正';
案例:删除customer中id是20的信息
delete from customer
where id = 20;
案例:删除book表中所有的数据
delete from book;