Hi All,
I got stuck in writing query to fetch 100 records at a time.
Here is what I have tried.
select JobDefinition.* from JobDefinition LIMIT 100
select Top 100 JobDefinition.* from JobDefinition
select JobDefinition.* from JobDefinition FETCH FIRST 100 ROWS ONLY
All the above queries ended with sql exception.
Any pointers are really helpful.