Quick question: I've been tasked with exporting about 140K records in batches of 50K.
SELECT ... where ROWNUM <= 50000 seems to work fine but SELECT ... WHERE ROWNUM > 50000 doesn't return any rows.
Any ideas how to break the set up into chunks of 50,000 rows?
-Striker
SELECT ... where ROWNUM <= 50000 seems to work fine but SELECT ... WHERE ROWNUM > 50000 doesn't return any rows.
Any ideas how to break the set up into chunks of 50,000 rows?
-Striker