Deprecated. Use the methods in the DBMS_CRYPTO built-in package,這個包已經不建議使用了
附,dbms_random幾個參數的介紹:
function value return number,返回一個[0,1)之間的隨機數,精度為38位(Gets a random number, greater than or equal to 0 and less than 1, with decimal 38 digits)
function value(low IN NUMVBER,high IN NUMBER) return number,返回一個[low,high)之間的隨機數
function normal return number,return random numbers in a standard normal distribution,返回服從常態分佈的一組數,標準差為1,期望值為0,傳回值中68%介於+1 和 -1 之間,95%介於 +2 和 -2 之間,99%介於+3 和 -3之間。
function random return BINARY_INTEGER, (Generate Random Numeric Values),
function string(opt char,length Number) return varchar2(the maximum is 60),返回一個指定長度的字串( Create Random Strings),opt seed values:
'a','A'&n
問:我工作中的問題:主管讓我為了某個活動要隨機取出一些合格EMAIL或者手機號碼使用者,來頒發獲獎通知或其它訊息,我們公司用的Oracle 9i 請問這個如何??
答:可以用oracle裡產生隨機數的PL/SQL, 目錄檔案名稱在:/ORACLE_HOME/rdbms/admin/dbmsrand.sql。
用之前先要在sys使用者下編譯:
SQL>@/ORACLE_HOME/rdbms/admin/dbmsrand.sql
它實際是在sys使用者下產生一個dbms_random程式包,同時產生公有同義字,並授權給所有資料庫使用者有執行的許可權。
使用dbms_random程式包, 取出隨機資料的方法:
1. 先建立一個唯一增長的序號tmp_id
create sequence tmp_id increment by 1 start with 1 maxvalue 9999999 nocycle nocache;
2. 然後建立一個暫存資料表tmp_1,把符合本次活動條件的記錄全部取出來。
create table tmp_1 as select tmp_id.nextval as id,email,mobileno from 表名 where 條件;
找到最大的id號:
select max(id) from tmp_1;
假設為5000
3. 設定一個產生隨機數的種子
execute dbms_random.seed(12345678);
或者
execute dbms_random.seed(TO_CHAR(SYSDATE,'MM-DD-YYYY HH24:MI:SS'));
4. 調用隨機數產生函數dbms_random.value產生暫存資料表tmp_2
假設隨機取200個
create table tmp_2 as select trunc(dbms_random.value(1,5000)) as id from tmp_1 where rownum<201;
[ 說明:dbms_random.value(1,5000)是取1到5000間的隨機數,會有小數,
trunc函數對隨機數字取整,才能和暫存資料表的整數ID欄位相對應。
注意:如果tmp_1記錄比較多(10萬條以上),也可以找一個約大於兩百行的表(假如是tmp_3)來產生tmp_2
create table tmp_2 as select trunc(dbms_random.value(1,5000)) as id from tmp_3 where rownum<201; ]
5. tmp_1和tmp_2相關聯取得合格200使用者
select t1.mobileno,t1.email from tmp_1 t1,tmp_2 t2 where t1.id=t2.id;
[ 注意:如果tmp_1記錄比較多(10萬條以上),需要在id欄位上建索引。]
也可以輸出到文字檔:
set pagesize 300;
spool /tmp/200.txt;
select t1.mobileno,t1.email from tmp_1 t1,tmp_2 t2 where t1.id=t2.id order by t1.mobileno;
spool off;
6. 用完後,刪除暫存資料表tmp_1、tmp_2和序號tmp_id。