溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Oracle怎么定位數(shù)據(jù)表的最近DML時(shí)間

發(fā)布時(shí)間:2021-08-18 10:52:13 來源:億速云 閱讀:182 作者:chen 欄目:建站服務(wù)器

本篇內(nèi)容主要講解“Oracle怎么定位數(shù)據(jù)表的最近DML時(shí)間”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“Oracle怎么定位數(shù)據(jù)表的最近DML時(shí)間”吧!

由于時(shí)間久,數(shù)據(jù)庫中的表太多,前后很多人操作過,也不知道哪些表有用哪些沒用,于是,想通過判斷數(shù)據(jù)表的最后DML時(shí)間,來確定哪些數(shù)據(jù)表最近沒操作過。

SQL> create table A as select id,name from t_employee;

Table created

SQL> select tb.table_name,tb.monitoring from user_tables tb where table_name='A';

TABLE_NAME                     MONITORING
------------------------------ ----------
A                              YES

由此可以看到,數(shù)據(jù)表默認(rèn)都是啟動(dòng)了monitoring功能的。

下面,通過ORA_ROWSCN來定位表A的最后dml時(shí)間。

SQL> select max(ora_rowscn), scn_to_timestamp(max(ora_rowscn)) from mvs.A;

MAX(ORA_ROWSCN) SCN_TO_TIMESTAMP(MAX(ORA_ROWSC
--------------- --------------------------------------------------------------------------------
      155220760 29-11月-11 11.25.50.000000000 上午

有人說只要表為monitoring狀態(tài),從視圖 user_tab_modifications 也可以看到,可實(shí)際上確什么都沒查到。

SQL> select * from user_tab_modifications where table_name='A';

TABLE_NAME                     PARTITION_NAME                 SUBPARTITION_NAME                 INSERTS    UPDATES    DELETES TIMESTAMP   TRUNCATED DROP_SEGMENTS
------------------------------ ------------------------------ ------------------------------ ---------- ---------- ---------- ----------- --------- -------------

刪除A中的數(shù)據(jù),只剩下一條。

SQL> select max(ora_rowscn), scn_to_timestamp(max(ora_rowscn)) from mvs.A;

MAX(ORA_ROWSCN) SCN_TO_TIMESTAMP(MAX(ORA_ROWSC
--------------- --------------------------------------------------------------------------------
      155223006 29-11月-11 11.46.33.000000000 上午

然后再插入一條記錄。

SQL> insert into a(id,name) values(1,'test');

1 row inserted

SQL> commit;

Commit complete

查看記錄及對應(yīng)的偽列ORA_ROWSCN值。

SQL> select id,name,ora_rowscn from a order by id;

        ID    NAME                 ORA_ROWSCN
----------   -------------------- ----------------------
         1     test                  155223032
 1108     s11                   155223006

SQL>

通過上面的偽列 ORA_ROWSCN 及函數(shù)SCN_TO_TIMESTAMP(ORA_ROWSCN)就可以獲得該行數(shù)據(jù)的最后DML時(shí)間。

SQL> insert into a(id,name) values(2,'test');

1 row inserted

SQL> insert into a(id,name) values(3,'test');

1 row inserted

SQL> commit;

Commit complete

SQL> select id,name,ora_rowscn from a order by id;

        ID NAME                 ORA_ROWSCN
---------- -------------------- ----------
         1 test                  155226434
         2 test                  155226434
         3 test                  155226434
 1108 s11                   155223006

SQL> insert into a(id,name) values(4,'test');

1 row inserted

SQL> commit;

Commit complete

SQL> select id,name,ora_rowscn from a order by id;

        ID NAME                 ORA_ROWSCN
---------- -------------------- ----------
         1 test                  155226448
         2 test                  155226448
         3 test                  155226448
         4 test                  155226448
 1108 s11                   155223006

SQL> insert into a(id,name) values(5,'test2');

1 row inserted

SQL> commit;

Commit complete

SQL> select id,name,ora_rowscn from a order by id;

        ID NAME                 ORA_ROWSCN
---------- -------------------- ----------
         1 test                  155226463
         2 test                  155226463
         3 test                  155226463
         4 test                  155226463
         5 test2                 155226463
 1108 s11                   155223006

6 rows selected

SQL>

到此,相信大家對“Oracle怎么定位數(shù)據(jù)表的最近DML時(shí)間”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI