- 1、本文档共5页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
oracle数据库日期,时间使用,删除恢复等
Oracle批量删除表、索引等对象、批量恢复Drop操作删除的表、索引等对象虽然能够恢复表结构和数据,但是索引,主键,约束等,并不能完全恢复。/**********************************************************************查询Drop操作删除的对象select * from recyclebin ;单个对象(表、索引或是通过drop操作删除的其它对象)恢复flashback table(被删除的对象类型)被删除的对象名称 to before drop***********************************************************************/--Demo单张表恢复flashback table Table_XXX to before drop;-- 创建批量恢复表的存储过程create or replace procedure RecoveryOfTable isbegin declare /*********************************************************************** select flashback table ||a.original_name|| to before drop from recyclebin a where a.operation = DROP and a.type=TABLE恢复其它类型对象请将flashback table 这里换为其它类型, type=相应的类型可加更多条件限制,具体查询recyclebin***********************************************************************/ cursor cur_flashback is select flashback table ||a.original_name|| to before drop from recyclebin a where a.operation = DROP and a.type=TABLE; v_name varchar2(4000);begin open cur_flashback; fetch cur_flashback into v_name; while cur_flashback%found loop execute immediate v_name; fetch cur_flashback into v_name; end loop; dbms_output.put_line(恢复成功!); close cur_flashback;end; end;--执行存储过程(使用plsql操作时)beginRecoveryOfTable;end;--执行存储过程(使用SQL调用)execute RecoveryOfTable;/**************************************批量删除数据库表 select * from user_tables where table_name like Table_XXX%;存储过程体**************************************/declare cursor cur_delete is select drop table || table_name from user_tables where table_name like Table_XXX%;/*************************************可模板条件删除其它类型对象如:索引等**************************************/ v_name varchar2(4000);begin open cur_delete; fetch cur_delete into v_name; while cur_delete%found loop execute immediate v_name; fetch cur_delete into v_name; end loop; dbms_output.put_line(将所有Table_XXX开头的表删除!); close cur_delete;end;执行PURGE TABLE ZYM_USER.BIN$UagqFGZsZcvgQAoKpSB9uQ==$0--
文档评论(0)