How Oracle Store Number internal?(轉載)
作者:eygle
出處:http://www.eygle.com/blog []
日期:2005-12-11 13:54
本文連結:
Oracle在資料庫內部透過相應的演算法轉換來進行資料儲存,本文簡單介紹Oracle的Number型數值儲存及轉換.這個內容是為了回答留言板上的號問題.
我們可以透過函式來轉換數字的儲存形式,一個簡單的輸出類似如下格式:
SQL> select dump(1) from dual; DUMP(1) |
DUMP函式的輸出格式類似:
型別 ,符號/指數位 [數字1,數字2,數字3,......,數字20]
各位的含義如下:
1.型別: Number型,Type=2 (型別程式碼可以從Oracle的文件上查到)
2.長度:指儲存的位元組數
3.符號/指數位
在儲存上,Oracle對正數和負數分別進行儲存轉換:
正數:加1儲存(為了避免Null)
負數:被101減,如果總長度小於21個位元組,最後加一個102(是為了排序的需要)
指數位換算:
正數:指數=符號/指數位 - 193 (最高位為1是代表正數)
負數:指數=62 - 第一位元組
4.從開始是有效的資料位
從開始是最高有效位,所儲存的數值計算方法為:
將下面計算的結果加起來:
每個乘以100^(指數-N) (N是有效位數的順序位,第一個有效位的N=0)
5. 舉例說明
SQL> select dump(123456.789) from dual; DUMP(123456.789) |
: 195 - 193 = 2
13 - 1 = 12 *100^(2-0) 120000
35 - 1 = 34 *100^(2-1) 3400
57 - 1 = 56 *100^(2-2) 56
79 - 1 = 78 *100^(2-3) .78
91 - 1 = 90 *100^(2-4) .009
123456.789
SQL> select dump(-123456.789) from dual; DUMP(-123456.789) |
62 - 60 = 2(最高位是0,代表為負數)
101 - 89 = 12 *100^(2-0) 120000
101 - 67 = 34 *100^(2-1) 3400
101 - 45 = 56 *100^(2-2) 56
101 - 23 = 78 *100^(2-3) .78
101 - 11 = 90 *100^(2-4) .009
123456.789(-)
現在再考慮一下為什麼在最後加102是為了排序的需要,-123456.789在資料庫中實際儲存為
60,89,67,45,23,11
而-123456.78901在資料庫中實際儲存為
60,89,67,45,23,11,91
可見,如果不在最後加上102,在排序時會出現-123456.789
對於號提問,第一個問題是:
1.請問為什麼193,2各代表什麼意思?
從上面就可以看到答案了.
2.還有NUMBER數字型別為什麼有2個位元組的長度呢?
對於這個問題,我想我們應該知道,所有資料型別最終在計算機裡都以二進位制儲存,實際上所謂的資料型別都是我們定義的.所以儲存只由演算法決定.
所以這個問題是不成立的.比如:
SQL> select dump(110) from dual; DUMP(110) SQL> select dump(1100) from dual; DUMP(1100) |
我們會看到,雖然1100>110,但是儲存上1100卻只佔2位元組,而110卻佔了3個位元組.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267897/viewspace-1006716/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- How Oracle Store Number internal(zt)Oracle
- C#中public、private、protected、internal、protected internal (轉載)C#
- How to Rename a Server That Is Not a Data Store ServerServer
- oracle internalOracle
- Oracle-InternalOracle
- 轉載:ORA-00600: internal error code, arguments: [504]Error
- oracle INTERNAL_FUNCTIONOracleFunction
- Internal/Oracle的密碼更改用什麼命令(轉)Oracle密碼
- How Oracle Works!Oracle
- How to Study OracleOracle
- Oracle System Change Number (SCN) Number 完全筆記Oracle筆記
- oracle進位制轉換to_number_to_char_bin_to_numOracle
- 【NUMBER】Oracle的NUMBER資料型別特點Oracle資料型別
- 轉載 個人用 How To Remove Docker Images, Containers, and VolumesREMDockerAI
- How to enable trace in OracleOracle
- In Oracle,How to use dumpOracle
- An Example of How Oracle WorksOracle
- 轉載oracle awrOracle
- Leetcode 1365. How Many Numbers Are Smaller Than the Current Number (cpp)LeetCode
- Oracle HowTo:How to get Oracle SCN?Oracle
- oracle 中呼叫 store procedureOracle
- oracle redo internal 之 dump logfileOracle Redo
- oracle redo internal 之 dump logfileOracle
- How Oracle Locking WorksOracle
- How to rename an Oracle stored procedureOracle
- 轉載Oracle AWR速查Oracle
- 轉載--oracle DML鎖Oracle
- oracle rowid (轉載)Oracle
- ORACLE NUMBER資料型別Oracle資料型別
- oracle redo internal (2) --- dump內容理解Oracle Redo
- oracle redo internal (2) --- dump內容理解Oracle
- How to Relink Oracle Database SoftwareOracleDatabase
- How to Shrink Undo Segment In Oracle DatabaseOracleDatabase
- How To Delete An Oracle Applications UserdeleteOracleAPP
- How to gather statistics on Oracle eBS.Oracle
- How to find Current open Cursors in OracleOracle
- how to kill the runing job in ORACLEOracle
- How to drop Oracle RAC database manually?OracleDatabase