程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle數據庫基礎 >> Oracle10g中current_scn的正確計算運行

Oracle10g中current_scn的正確計算運行

編輯:Oracle數據庫基礎

以下的文章主要向你解答Oracle10g中的current_scn是如何正確的計算運行,我們大家都知道Oracle10g在v$database 視圖裡引入了current_scn,其實這個SCN是來自底層表,代表當前的SCN。

在Oracle9i中我們可以通過dbms_Flashback.get_system_change_number來獲得系統的SCN。

但是注意current_scn還是有所不同的,我們看一下一個查詢:

復制代碼

  1. Oracle@danaly ~]$ sqlplus '/ as sysdba'   
  2. SQL*Plus: Release 10.2.0.1.0 - Production on Thu Jun 21 10:15:08 2007  
  3. Copyright (c) 1982, 2005, Oracle. All rights reserved.  
  4. Connected to:  
  5. Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production  
  6. With the Partitioning, Oracle Label Security, OLAP and Data Mining Scoring Engine options  
  7. SQL> @scn  
  8. SQL> col current_scn for 99999999999999999  
  9. SQL> select current_scn from v$database;  
  10. CURRENT_SCN  
  11. 8910961765228  
  12. SQL> select dbms_Flashback.get_system_change_number current_scn from dual;  
  13. CURRENT_SCN  
  14. 8910961765228  
  15. SQL> select dbms_Flashback.get_system_change_number current_scn from dual;  
  16. CURRENT_SCN  
  17. 8910961765228  
  18. SQL> select current_scn from v$database;  
  19. CURRENT_SCN  
  20. 8910961765229  
  21. SQL> select dbms_Flashback.get_system_change_number current_scn from dual;  
  22. CURRENT_SCN  
  23. 8910961765229  
  24. SQL> select dbms_Flashback.get_system_change_number current_scn from dual;  
  25. CURRENT_SCN  
  26. 8910961765229  
  27. SQL> select current_scn from v$database;  
  28. CURRENT_SCN  
  29. 8910961765230  

我們看到current_scn的查詢會直接導致SCN的增進,而其他方式並不會。也就是說在這裡的current_scn就像是一個Sequence一樣,查詢會導致增進。這也很好理解,v$database只能通過增進當前的SCN才能保證獲得的SCN是Current的。可是如果不查詢呢?這個值肯定是不會增長的。以上的相關內容就是對Oracle10g的current_scn計算的介紹,望你能有所收獲。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved