Oracle10g中SCN與TimeStamp轉換

potoo發表於2010-09-26

1 取得SCN

SQL> select dbms_flashback.get_system_change_number scn from dual;

       SCN
-----------------------------------------------------------------------
   2583787

2 使用scn_to_timestamp轉化為時間timestamp

SQL> select scn_to_timestamp(2583787) time from dual;

TIME
---------------------------------------------------------------------------
26-9月 -10 09.24.59.000000000 下午

3 使用timestamp_to_scn轉化為SCN

SQL> select timestamp_to_scn(scn_to_timestamp(2583787)) scn from dual;

       SCN
-----------------------------------------------------------------------
   2583787

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24620620/viewspace-674905/,如需轉載,請註明出處,否則將追究法律責任。

相關文章