热门标签 | HotTags
当前位置:  开发笔记 > 数据库 > 正文

如何恢复一个被误drop的存储过程

这种恢复是非常容易的,原理就是利用了oracle里所有的存储过程的源代码都是存在dba_source里,而drop某个存储过程的时候,oracle

这种恢复是非常容易的,原理就是利用了oracle里所有的存储过程的源代码都是存在dba_source里,而drop某个存储过程的时候,oracle

今天有同事给我写信:"我大概10分钟前错误地drop掉了一个存储过程:P_IPACCHECK_NC,而这个存储过程的源码我本机又没有备份,麻烦您恢复一下,,谢谢"

如下是完整的恢复过程:

用sys用户登陆,执行如下的查询:

SQL> select text from dba_source as of timestamp to_timestamp('2009-03-06 09:45:00', 'YYYY-MM-DD HH24:MI:SS') where owner='IPRA' and name= 'P_IPACCHECK_NC' order by line;

TEXT

--------------------------------------------------------------------------------

procedure P_IPACCHECK_NC(n_flag out number,

vc_message out varchar2) is

------------------------------------------------------------------------------

-- PROCEDURE NAME : P_IPACCHECK_NC --

-- NAME IN SYSMTH : NONE --

-- DESCRIPTION : 对IWBIBT记录进行有效性检查,没有错误的数据置标志为

--

-- INVOKED : --

-- PROGRAMMED BY : ZhouXin DATE 2008/12/02 --

-- MODIFIED BY :

-- TYPE : ONLINE --

-- COPYRIGHT 1997~2008 ACCA-ARK --

-- --

------------------------------------------------------------------------------

vc_ipastc varchar2(20);

n_errcount number := 0;

begin

for rec_pac in (select * from iwbpac where ipastc is null) loop

TEXT

--------------------------------------------------------------------------------

n_errcount := 0;

vc_ipastc := rec_pac.ipastc;

--检查清算月

if rec_pac.ipalrm > to_number(to_char(sysdate, 'YYYYMM')) then

vc_ipastc := vc_ipastc || 'A';

n_errcount := n_errcount + 1;

end if;

--检查名义开账公司

if f_masaln_existawbprefix(rec_pac.ipaarr) != true then

vc_ipastc := vc_ipastc || 'B';

n_errcount := n_errcount + 1;

end if;

--检查实际开账公司

if f_masaln_existawbprefix(rec_pac.ipacar) != true then

vc_ipastc := vc_ipastc || 'C';

n_errcount := n_errcount + 1;

end if;

--检查开账公司

if f_masaln_existawbprefix(rec_pac.ipairl) != true then

vc_ipastc := vc_ipastc || 'E';

n_errcount := n_errcount + 1;

TEXT

--------------------------------------------------------------------------------

end if;

--检查名义开账公司

if rec_pac.ipalas <> 'P' then

vc_ipastc := vc_ipastc || 'F';

n_errcount := n_errcount + 1;

end if;

--检查帐单录入日期

if rec_pac.ipanpd > to_number(to_char(sysdate, 'YYYYMMDD')) then

vc_ipastc := vc_ipastc || 'G';

n_errcount := n_errcount + 1;

end if;

--检查开账月

if rec_pac.ipailm > to_number(to_char(sysdate, 'YYYYMM')) then

vc_ipastc := vc_ipastc || 'H';

n_errcount := n_errcount + 1;

end if;

--检查原始开账金额

if rec_pac.ipaemk = 'B' and rec_pac.ipaamt is null then

vc_ipastc := vc_ipastc || 'I';

n_errcount := n_errcount + 1;

end if;

TEXT

--------------------------------------------------------------------------------

--检查清算期

if to_number(rec_pac.ipacpr) <1 or to_number(rec_pac.ipacpr) > 4 then

vc_ipastc := vc_ipastc || 'J';

n_errcount := n_errcount + 1;

end if;

--检查开账期

if to_number(rec_pac.ipabpr) <1 or to_number(rec_pac.ipabpr) > 4 then

vc_ipastc := vc_ipastc || 'K';

n_errcount := n_errcount + 1;

end if;

--没有错误,置标志位'0'

if n_errcount = 0 then

update iwbpac

set ipastc = '0'

where ipacpr = rec_pac.ipacpr

and ipairl = rec_pac.ipairl

and ipacar = rec_pac.ipacar

and ipanvn = rec_pac.ipanvn

and ipanva = rec_pac.ipanva

and ipalrm = rec_pac.ipalrm;

else

TEXT

--------------------------------------------------------------------------------

update iwbpac

set ipastc = vc_ipastc

where ipacpr = rec_pac.ipacpr

and ipairl = rec_pac.ipairl

and ipacar = rec_pac.ipacar

and ipanvn = rec_pac.ipanvn

and ipanva = rec_pac.ipanva

and ipalrm = rec_pac.ipalrm;

end if;

end loop;

exception

when others then

n_flag := 0;

vc_message := substr(sqlerrm, 1, 1000);

end P_IPACCHECK_NC;

100 rows selected

补充:

sys@ORCL> select text from dba_source where owner='LSF' and order by line;

TEXT
-----------------------------------------------------------------------------------------------------------------------------------
procedure emp_sal
is
v_last_name employee.last_name%type;
v_employee_id employee.employee_id%type;
v_salary employee.salary%type;
cursor cursor_sal is
select last_name,employee_id,salary from employee where salary between 2000 and 3000;
begin
open cursor_sal;
loop
fetch cursor_sal into v_last_name,v_employee_id,v_salary;
exit when cursor_sal%notfound;
update employee set salary=salary*1.2 where last_name=v_last_name and employee_id=v_employee_id;
end loop;
close cursor_sal;
commit;
end;

17 rows selected.

SQL> show user
USER is "LSF"
SQL> select username from user_users;

USERNAME
------------------------------
LSF

SQL> select text from user_source where order by line;

TEXT
--------------------------------------------------------------------------------
procedure emp_sal
is
v_last_name employee.last_name%type;
v_employee_id employee.employee_id%type;
v_salary employee.salary%type;
cursor cursor_sal is
select last_name,employee_id,salary from employee where salary between 2000 and
3000;

begin
open cursor_sal;
loop
fetch cursor_sal into v_last_name,v_employee_id,v_salary;
exit when cursor_sal%notfound;
update employee set salary=salary*1.2 where last_name=v_last_name and employee_i
d=v_employee_id;

end loop;
close cursor_sal;
commit;
end;

17 rows selected.

SQL> select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') from dual;

TO_CHAR(SYSDATE,'YY
-------------------
2011-08-10 14:46:24

SQL> drop procedure emp_sal;

Procedure dropped.

SQL> select text from user_source where order by line;

no rows selected

SQL> select text from user_source as of timestamp to_timestamp('2011-08-10 14:46:24','YYYY-MM-DD HH24:MI:SS') where order by line;
select text from user_source as of timestamp to_timestamp('2011-08-10 14:46:24','YYYY-MM-DD HH24:MI:SS') where order by line
*
ERROR at line 1:
ORA-01031: insufficient privileges

sys@ORCL> select text from dba_source as of timestamp to_timestamp('2011-08-10 14:46:24','YYYY-MM-DD HH24:MI:SS') where owner='LSF' and order by line;

TEXT
-----------------------------------------------------------
procedure emp_sal
is
v_last_name employee.last_name%type;
v_employee_id employee.employee_id%type;
v_salary employee.salary%type;
cursor cursor_sal is
select last_name,employee_id,salary from employee where salary between 2000 and 3000;
begin
open cursor_sal;
loop
fetch cursor_sal into v_last_name,v_employee_id,v_salary;
exit when cursor_sal%notfound;
update employee set salary=salary*1.2 where last_name=v_last_name and employee_id=v_employee_id;
end loop;
close cursor_sal;
commit;
end;

17 rows selected.


推荐阅读
  • 本文探讨了在 SQL Server 2012 的 Integration Services 项目中配置 ADO.NET 源时遇到的错误及其解决方案。 ... [详细]
  • MongoDB核心概念详解
    本文介绍了NoSQL数据库的概念及其应用场景,重点解析了MongoDB的基本特性、数据结构以及常用操作。MongoDB是一个高性能、高可用且易于扩展的文档数据库系统。 ... [详细]
  • 包含phppdoerrorcode的词条 ... [详细]
  • 一个建表一个执行crud操作建表代码importandroid.content.Context;importandroid.database.sqlite.SQLiteDat ... [详细]
  • MySQL初级篇——字符串、日期时间、流程控制函数的相关应用
    文章目录:1.字符串函数2.日期时间函数2.1获取日期时间2.2日期与时间戳的转换2.3获取年月日、时分秒、星期数、天数等函数2.4时间和秒钟的转换2. ... [详细]
  • Spring Data JdbcTemplate 入门指南
    本文将介绍如何使用 Spring JdbcTemplate 进行数据库操作,包括查询和插入数据。我们将通过一个学生表的示例来演示具体步骤。 ... [详细]
  • 解决SQL Server数据库sa登录名无法连接的问题
    在安装SQL Server数据库后,使用Windows身份验证成功,但使用SQL Server身份验证时遇到问题。本文将介绍如何通过设置sa登录名的密码、启用登录名状态以及开启TCP协议来解决这一问题。 ... [详细]
  • 在将Web服务器和MySQL服务器分离的情况下,是否需要在Web服务器上安装MySQL?如果安装了MySQL,如何解决PHP连接MySQL服务器时出现的连接失败问题? ... [详细]
  • SQL 连接详解与应用
    本文详细介绍了 SQL 连接的概念、分类及实际应用,包括内连接、外连接、自连接等,并提供了丰富的示例代码。 ... [详细]
  • 本文介绍了如何使用Flume从Linux文件系统收集日志并存储到HDFS,然后通过MapReduce清洗数据,使用Hive进行数据分析,并最终通过Sqoop将结果导出到MySQL数据库。 ... [详细]
  • 本文介绍了如何在 Spring 3.0.5 中使用 JdbcTemplate 插入数据并获取 MySQL 表中的自增主键。 ... [详细]
  • BIEE中的最终用户界面被称为Presentation Layer(展现层)。展现层呈现的内容与用户在Web报表开发界面中看到的一致,使用业务语言进行描述,隐藏了技术细节,如星型模型。本文将详细介绍展现层的设计要点及其与业务模型层的关系。 ... [详细]
  • Hadoop的文件操作位于包org.apache.hadoop.fs里面,能够进行新建、删除、修改等操作。比较重要的几个类:(1)Configurati ... [详细]
  • PHP 使用 Cookie 进行访问授权的方法
    本文介绍了如何使用 PHP 和 Cookie 实现访问授权,包括表单验证、数据库查询和会话管理等关键步骤。 ... [详细]
  • 本文详细介绍了Java代码分层的基本概念和常见分层模式,特别是MVC模式。同时探讨了不同项目需求下的分层策略,帮助读者更好地理解和应用Java分层思想。 ... [详细]
author-avatar
你送的指环_526
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有