1)删除相同内容的表,先找出所有表
select ‘ drop table DS_REPORT.’||object_name||’;’ from dba_objects where object_name like ‘%CXMR410%’
2)复制以上结果,执行
3)不小心删除的数据可通过time stamp 找回数据,timestamp内为删除之前的指定时间点,但是如果数据表的数量量比较大,或者时间超过了2个小时就比较难找回了
select * from ogb_file as of timestamp to_timestamp(‘2019-02-19 17:16:38’, ‘yyyy-mm-dd hh24:mi:ss’)
转载请注明:赫非域 » TABLE的整批删除和timestamp