热门标签 | 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.


推荐阅读
  • PHP 编程疑难解析与知识点汇总
    本文详细解答了 PHP 编程中的常见问题,并提供了丰富的代码示例和解决方案,帮助开发者更好地理解和应用 PHP 知识。 ... [详细]
  • 本文详细介绍了如何使用libpq库与PostgreSQL后端建立连接。通过探讨PQconnectdb()函数的工作原理及其在实际应用中的使用方法,帮助读者理解并掌握建立高效、稳定的数据库连接的关键步骤。 ... [详细]
  • 本文详细介绍了HTML中标签的使用方法和作用。通过具体示例,解释了如何利用标签为网页中的缩写和简称提供完整解释,并探讨了其在提高可读性和搜索引擎优化方面的优势。 ... [详细]
  • 数据库内核开发入门 | 搭建研发环境的初步指南
    本课程将带你从零开始,逐步掌握数据库内核开发的基础知识和实践技能,重点介绍如何搭建OceanBase的开发环境。 ... [详细]
  • 本文深入探讨 MyBatis 中动态 SQL 的使用方法,包括 if/where、trim 自定义字符串截取规则、choose 分支选择、封装查询和修改条件的 where/set 标签、批量处理的 foreach 标签以及内置参数和 bind 的用法。 ... [详细]
  • 使用C#开发SQL Server存储过程的指南
    本文介绍如何利用C#在SQL Server中创建存储过程,涵盖背景、步骤和应用场景,旨在帮助开发者更好地理解和应用这一技术。 ... [详细]
  • 本文探讨了适用于Spring Boot应用程序的Web版SQL管理工具,这些工具不仅支持H2数据库,还能够处理MySQL和Oracle等主流数据库的表结构修改。 ... [详细]
  • 本文详细介绍了如何通过多种编程语言(如PHP、JSP)实现网站与MySQL数据库的连接,包括创建数据库、表的基本操作,以及数据的读取和写入方法。 ... [详细]
  • 在当前众多持久层框架中,MyBatis(前身为iBatis)凭借其轻量级、易用性和对SQL的直接支持,成为许多开发者的首选。本文将详细探讨MyBatis的核心概念、设计理念及其优势。 ... [详细]
  • 在使用 DataGridView 时,如果在当前单元格中输入内容但光标未移开,点击保存按钮后,输入的内容可能无法保存。只有当光标离开单元格后,才能成功保存数据。本文将探讨如何通过调用 DataGridView 的内置方法解决此问题。 ... [详细]
  • 本文详细介绍了如何在 Linux 平台上安装和配置 PostgreSQL 数据库。通过访问官方资源并遵循特定的操作步骤,用户可以在不同发行版(如 Ubuntu 和 Red Hat)上顺利完成 PostgreSQL 的安装。 ... [详细]
  • 如何在PostgreSQL中查看数据表
    本文将指导您使用pgAdmin工具连接到PostgreSQL数据库,并展示如何浏览和查找其中的数据表。通过简单的步骤,您可以轻松访问所需的表结构和数据。 ... [详细]
  • 利用存储过程构建年度日历表的详细指南
    本文将介绍如何使用SQL存储过程创建一个完整的年度日历表。通过实例演示,帮助读者掌握存储过程的应用技巧,并提供详细的代码解析和执行步骤。 ... [详细]
  • 本文介绍了如何通过 Maven 依赖引入 SQLiteJDBC 和 HikariCP 包,从而在 Java 应用中高效地连接和操作 SQLite 数据库。文章提供了详细的代码示例,并解释了每个步骤的实现细节。 ... [详细]
  • 在使用SQL Server进行动态SQL查询时,如果遇到LIKE语句无法正确返回预期结果的情况,通常是因为参数传递方式不当。本文将详细探讨这一问题,并提供解决方案及相关的技术背景。 ... [详细]
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社区 版权所有