[20170410]快速找回触发器内容.txt

简介: [20170410]快速找回触发器内容.txt --上午登录发现一个是触发器被人为删除了,需要恢复.链接http://www.itpub.net/thread-2084789-1-1.

[20170410]快速找回触发器内容.txt

--上午登录发现一个是触发器被人为删除了,需要恢复.链接http://www.itpub.net/thread-2084789-1-1.html.
--我提供几个方法:1.取出备份的system数据文件,通过bbed之类的工具定位.2使用logminer 应该也可以定位,表sys.source$.

--实际上还有1个简单粗暴的方法,直接通过strings查询归档日志.例子如下:

1.环境:
SYS@book> @ &r/ver1
PORT_STRING                    VERSION        BANNER
------------------------------ -------------- --------------------------------------------------------------------------------
x86_64/Linux 2.4.xx            11.2.0.4.0     Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production

--//我的测试环境很早建立的一个函数.
CREATE OR REPLACE function SCOTT.p2p_distance(
            p_latitude1 number,
            p_longitude1 number,
            p_latitude2 number,
            p_longitude2 number) return number deterministic is
  earth_radius  number := 6371;
  pi_approx     number := 3.1415197/180;
  lat_delta     number := (p_latitude2-p_latitude1)*pi_approx;
  lon_delta     number := (p_longitude2-p_longitude1)*pi_approx;
  arc           number := sin(lat_delta/2) * sin(lat_delta/2) +
                               sin(lon_delta/2) * sin(lon_delta/2) * cos(p_latitude1*pi_approx) * cos(p_latitude2*pi_approx);
begin
  return earth_radius * 2 * atan2(sqrt(arc), sqrt(1-arc));
end;
/

2.删除它,恢复看看.
SYS@book> @ &r/logfile
GROUP# STATUS TYPE       MEMBER                          IS_ GROUP# THREAD# SEQUENCE#       BYTES BLOCKSIZE MEMBERS ARC STATUS     FIRST_CHANGE# FIRST_TIME          NEXT_CHANGE# NEXT_TIME
------ ------ ---------- ------------------------------- --- ------ ------- --------- ----------- --------- ------- --- ---------- ------------- ------------------- ------------ -------------------
     1        ONLINE     /mnt/ramdisk/book/redo01.log    NO       1       1       815    52428800       512       1 YES INACTIVE     13277272313 2017-04-08 16:00:41  13277278586 2017-04-10 08:43:12
     2        ONLINE     /mnt/ramdisk/book/redo02.log    NO       2       1       816    52428800       512       1 YES INACTIVE     13277278586 2017-04-10 08:43:12  13277278900 2017-04-10 08:43:16
     3        ONLINE     /mnt/ramdisk/book/redo03.log    NO       3       1       817    52428800       512       1 NO  CURRENT      13277278900 2017-04-10 08:43:16 2.814750E+14
     4        STANDBY    /mnt/ramdisk/book/redostb01.log NO
     5        STANDBY    /mnt/ramdisk/book/redostb02.log NO
     6        STANDBY    /mnt/ramdisk/book/redostb03.log NO
     7        STANDBY    /mnt/ramdisk/book/redostb04.log NO
7 rows selected.

--//当前在线日志/mnt/ramdisk/book/redo03.log .

SYS@book> drop function SCOTT.p2p_distance;
Function dropped.

SYS@book> alter system checkpoint ;
System altered.

SYS@book> alter system checkpoint ;
System altered.

SYS@book> alter system checkpoint ;
System altered.
--//保证脏块写盘.

$ strings -3 /mnt/ramdisk/book/redo03.log > /tmp/aaa.txt

drop function SCOTT.p2p_distance
SCOTT
P2P_DISTANCE
ORA$BASE.,
YYYY-MM-DD HH24:MI:SS
YYYY-MM-DD HH24:MI:SS.FFHH.MI.SSXFF AM
HH.MI.SSXFF AM TZR
YYYY-MM-DD HH24:MI:SS.FF TZH:TZMAMERICANAMERICANGREGORIAN
BINARY
BINARY
AMERICA
AMERICA
BYTEFALSE
    _H--------------------------------------
function p2p_distance(
            p_latitude1 number,
            p_longitude1 number,
            p_latitude2 number,
            p_longitude2 number) return number deterministic is
  earth_radius  number := 6371;
  pi_approx     number := 3.1415197/180;
  la
t_delta     number := (p_latitude2-p_latitude1)*pi_approx;
  lon_delta     number := (p_longitude2-p_longitude1)*pi_approx;
  arc           number := sin(lat_delta/2) * sin(lat_delta/2) +
                               sin(lon_delta
6/2) * sin(lon_delta/2) * cos(p_latitude1*pi_approx) * cos(p_latitude2*pi_approx);
~~
begin
  return earth_radius * 2 * atan2(sqrt(arc), sqrt(1-arc));
end;
U7^M

--//ok,里面就有内容.改写一下就ok了:(注有一点点小错误,里面多了1个6,注意看下划线)
CREATE OR REPLACE function SCOTT.p2p_distance(
            p_latitude1 number,
            p_longitude1 number,
            p_latitude2 number,
            p_longitude2 number) return number deterministic is
  earth_radius  number := 6371;
  pi_approx     number := 3.1415197/180;
  lat_delta     number := (p_latitude2-p_latitude1)*pi_approx;
  lon_delta     number := (p_longitude2-p_longitude1)*pi_approx;
  arc           number := sin(lat_delta/2) * sin(lat_delta/2) +
                               sin(lon_delta/2) * sin(lon_delta/2) * cos(p_latitude1*pi_approx) * cos(p_latitude2*pi_approx);
begin
  return earth_radius * 2 * atan2(sqrt(arc), sqrt(1-arc));
end;
/

--//在引申一点,实际上你可以直接扫描system01.dbf文件找到对应的内容.正常业务数据库一般不会有大量的dml对于sys.source$表.

SYS@book> column PARTITION_NAME noprint
SYS@book> select * from (select * from dba_extents where segment_name='SOURCE$' order by block_id desc) where rownum=1;
OWNER  SEGMENT_NAME         SEGMENT_TYPE       TABLESPACE_NAME                 EXTENT_ID    FILE_ID   BLOCK_ID      BYTES     BLOCKS RELATIVE_FNO
------ -------------------- ------------------ ------------------------------ ---------- ---------- ---------- ---------- ---------- ------------
SYS    SOURCE$              TABLE              SYSTEM                                 79          1      91520    8388608       1024            1

--//最后1块在91520.占用1024块.
SYS@book> select (91520+1024-1)*8192 from dual ;
(91520+1024-1)*8192
-------------------
          758112256

--//91520+1024=92544

$ dd if=/mnt/ramdisk/book/system01.dbf bs=8192 count=92544 | strings -3 > /tmp/bbb.txt
92544+0 records in
92544+0 records out
758120448 bytes (758 MB) copied, 11.8657 seconds, 63.9 MB/s

--//查询可以找到如下:

function p2p_distance(
    _H
             p_latitude1 number,
    _H
!            p_longitude1 number,
    _H
             p_latitude2 number,
    _H
@            p_longitude2 number) return number deterministic is
    _H
   earth_radius  number := 6371;
    _H
)  pi_approx     number := 3.1415197/180;
    _H
    ?  lat_delta     number := (p_latitude2-p_latitude1)*pi_approx;
    _H
A  lon_delta     number := (p_longitude2-p_longitude1)*pi_approx;
    _H
@  arc           number := sin(lat_delta/2) * sin(lat_delta/2) +
    _H
~                               sin(lon_delta/2) * sin(lon_delta/2) * cos(p_latitude1*pi_approx) * cos(p_latitude2*pi_approx);
    _H
begin
    _H
;  return earth_radius * 2 * atan2(sqrt(arc), sqrt(1-arc));
    _H
end;,

--//编辑一下就ok了.感觉看归档日志更好一些.重新建立后

SCOTT@book> select p2p_distance(36.12, -86.67, 33.94, -118.4) from dual;

P2P_DISTANCE(36.12,-86.67,33.94,-118.4)
---------------------------------------
                             2886.40705
--//与原来计算结果一样.

目录
相关文章
|
SQL 测试技术 关系型数据库
[20150803]触发器对dml的影响.txt
[20150803]触发器对dml的影响.txt --最近做一个优化项目,这个项目实际上ETL项目,里面出现如下语句: UPDATE patient_medical_cost t    SET t.
981 0
|
关系型数据库 Oracle 数据库管理
[20131110]sys用户的表不能建立触发器.txt
[20131110]sys用户的表不能建立触发器.txt SYS@test01p> @ver BANNER                                                                            ...
639 0
|
数据库管理
[20130218]修改主键和触发器.txt
[20130218]修改主键和触发器.txthttp://connormcdonald.wordpress.com/2012/01/22/updating-primary-keys-and-triggers/重复试验,加强理解.
655 0
|
16天前
|
存储 安全 关系型数据库
2024 Mysql基础与进阶操作系列之MySQL触发器详解(21)作者——LJS[你个小黑子这都还学不会嘛?你是真爱粉嘛?真是的 ~;以后请别侮辱我家鸽鸽]
MySQL触发器的使用场景之数据完整性约束、如何具体创建person的日志表、触发器与存储过程的对比与选择、触发器的性能和注意事项等具体操作详解步骤;举例说明、注意点及常见报错问题所对应的解决方法
|
5月前
|
存储 SQL 关系型数据库
MySQL 进阶使用【函数、索引、视图、存储过程、存储函数、触发器】(2)
MySQL 进阶使用【函数、索引、视图、存储过程、存储函数、触发器】
|
5月前
|
存储 SQL 关系型数据库
MySQL 进阶使用【函数、索引、视图、存储过程、存储函数、触发器】(1)
MySQL 进阶使用【函数、索引、视图、存储过程、存储函数、触发器】
|
3月前
|
存储 关系型数据库 MySQL
MySQL 中的触发器数量之谜
【8月更文挑战第31天】
36 0
|
3月前
|
SQL 数据采集 关系型数据库
|
4月前
|
存储 SQL 关系型数据库
(十四)全解MySQL之各方位事无巨细的剖析存储过程与触发器!
前面的MySQL系列章节中,一直在反复讲述MySQL一些偏理论、底层的知识,很少有涉及到实用技巧的分享,而在本章中则会阐述MySQL一个特别实用的功能,即MySQL的存储过程和触发器。
|
4月前
|
存储 SQL 数据库
MySQL设计规约问题之为什么要避免使用存储过程、触发器和函数
MySQL设计规约问题之为什么要避免使用存储过程、触发器和函数