Hello Everyone,
I've having some difficulty to understand the difference between pls_integer and binary_integer when declaring a collection..
Isn't both pls_integer and binary_integer supposed to be the same in 10g and 11g?
My problem is that i've declared a collection in a procedure with binary_integer and per record it takes 10second to process. (i.e TYPE test_table IS TABLE OF test%rowtype INDEX BY BINARY_INTEGER; )
However the same procedure with the collection declared with index by pls_integer, take only 1 second to process. (i.e TYPE test_table IS TABLE OF test%rowtype INDEX BY PLS_INTEGER;)
Any help would be welcomed.
Thanks.