compare Refcursor outputs

Sravz

Member
Is there a way to compare Ref cursor outputs directly in pl sql developer version 9? Our existing procedures have been modified to improve performance. In this context we have to ensure that there is no data mismatch.How can we compare 2 refcursor s coming from different procedures?
 
You will have to export the results to a file (e.g. in CSV format) for both procedure versions and then use a file compare tool (e.g. ExamDiff as provided with PL/SQL Developer) to compare the 2 result sets.
 
Thanks Marco. I was actually looking to automate this process. Is there any way to achieve the same in plsql?
 
Back
Top