Page 1 of 1

How to count the rows ?parallel jobs.

Posted: Thu Feb 08, 2007 4:25 am
by ketanshah123
Hi

In my sequential file (Source) there are more than 1000 records
I want to get first 500 records from it for further processing.
and wants to pass rest all records to another temporary file.

so my query is , In parallel job how can I count and get first 500 records from sequential file?

tried with @inrownum system fuction but not getting desired result.

Posted: Thu Feb 08, 2007 5:57 am
by ArndW
You can force sequential execution so that you only have one process, then use @INROWNUM to limit output from a link to 500.

Posted: Thu Feb 08, 2007 6:46 am
by ketanshah123
Thnx........ :D