What is the best option to resolve this problem?
I was thinking of another option; selecting the ROWID's in the cursor itself.
ie
declare
cursor my_cur is
select t1.ROWID RowID1, t2.ROWID RowID2, t1.col_1, t1.col_2, t2.col_1, t2.col_22 from t1, t2
where t1.col_1 =...