Home >Database >Mysql Tutorial >Oracle恢复被误编译覆盖的存储过程

Oracle恢复被误编译覆盖的存储过程

WBOY
WBOYOriginal
2016-06-07 17:24:111074browse

在写Oracle存储过程时候,是在以前已经写好的过程基础上修改的,想换个名字,由于疏忽没有改名字就编译了,编译完才意识到。这时

同事在写Oracle存储过程时候,是在以前已经写好的过程基础上修改的,想换个名字,由于疏忽没有改名字就编译了,编译完才意识到。这时原来的那个已经没有了。找我想办法恢复回原来的那个过程。

通过查资料想到个方法,也不知道成不成,只能当做试试。

SELECT * FROM source$
 AS OF TIMESTAMP TO_TIMESTAMP('2012-9-6 16:50:32', 'YYYY-MM-DD HH24:MI:SS')
where source like '%sp_copy_project%'
  order by line;

只查到一些简单的信息,不够恢复数据的。

上边的是原来那个,下边的是刚编译的。

      OBJ#      LINE SOURCE
---------- ---------- --------------------------------------------------------------------------------
    190762          1 procedure        sp_copy_project(old_pro_id number, domain_id number, new_pro_id
    190471          1 procedure sp_copy_project(dxid number, rtn out number, msg out varchar2(4000)) i
 
于是有用下边这句,查到了需要的信息。选了一个往前30分钟的时间点。

select * from dba_source
AS OF TIMESTAMP TO_TIMESTAMP('2012-9-6 16:20:00', 'YYYY-MM-DD HH24:MI:SS')
where  name like upper('%sp_copy_project%') and owner ='YWMX'
order by line;

 

过程是一行一行的,,于是把全选将其贴到plsql编辑器里,

文本被接起来,格式也正好。

在前边加上 “create or replace ”,重新编译,

被覆盖的过程回来了。

linux

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn