Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Pagination, Paginating, Limiting Number of Records Returned
If you only want to get 12,000 records returned from your query, look into the Oracle rownum() function.
NS told me about it and I googled it and found a lot of info. From what google turns up, you should be able to take your existing SQL select statement and wrap another select statement around it:
SELECT * FROM (<your-select-statement>) WHERE rownum() < 10000
but you'll get the following error back:
"Error Executing the reader: ERROR [42000] [OpenAccess][OpenRDA ODBC]Syntax error in SQL statement. syntax error line 13 at or after token <ORDER>."
I was told that the NS Open Access Parser does not allow subqueries in the FROM clause.
0