मेरा मानना है कि आप एक आदर्श हैश फ़ंक्शन के बारे में बात कर रहे हैं। Oracle का ORA_HASH फ़ंक्शन एक आदर्श हैश फ़ंक्शन नहीं है।
http://en.wikipedia.org/wiki/Perfect_hash_function
आप जो चाहते हैं वह जितना करीब होगा, वह एक सहयोगी सरणी है। Oracle के पास वे हैं। इस उदाहरण के साथ खेलना शुरू करें:
set serverout on size 10000
DECLARE
cursor foo
is
select distinct fld1,fld2,fld9 from sometable;
type t is table of foo.%ROWTYPE
index by varchar2; -- change the index to an int if you want
myarray t; -- myarray is a table of records -- whatever foo returns
BEGIN
for x in foo
loop
-- index using the first column of the fetched row "fld1":
myarray(x.fld1)=x; -- assign the rowtype to the table of records.
end loop;
END;
/
नोट:एक सहयोगी सरणी हैशटेबल पर बनाई गई है, उपरोक्त उदाहरण fld1 को हैश कुंजी के रूप में उपयोग करता है। ऐसा करने के लिए वहां विशिष्ट है। इसकी हमेशा आवश्यकता नहीं होती है।