Is there a way to make selecting random rows faster in oracle with a table that has million of rows. I tried to use sample(x) and dbms_random.value and its taking a long time to
Can you use pseudorandom rows?
select * from ( select * from ... where... order by ora_hash(rowid) ) where rownum<100