Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Recovery of oracle overwritten stored procedures for sharing of practical skills

2025-04-07 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

When writing or modifying stored procedures, it is easy to encounter a careless click, and the code behind overrides the previous stored procedure. How to restore it, the fastest and most convenient way, flash query!

1. Change the timestamp to before overwriting

create table huifu_procedure as

select *

from dba_source as of timestamp TO_TIMESTAMP('2014-11-26 14:00:00', 'YYYY-MM-DD HH24:MI:SS')

where TYPE = 'PROCEDURE'

And owner = 'EMPLY'

And Name = 'CHECKDATA_2014EMPLY';

2. Find the text, i.e. the code that is covered:

select text from huifu_procedure;

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report