Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Content Management (Extended ECM)
API, SDK, REST and Web Services
Record Limit as Input Parameter?
Scott_Herman_(webmadmin_-_(deleted))
Is there a way to write a LiveReport that accepts an input parameter for the record limit? It would be useful to be able to limit the data dynamically.Thank you.
Find more posts tagged with
Comments
Alex_Kowalenko_(akowalen_(Delete)_2285456)
Oracle ROWNUM ...... is an pseudocolumn that returns a numbner indicating the order that rows are selected. You could limit the number of records by using a WHERE clause like ROWNUM <= <record limit parameter>.
Alex_Kowalenko_(akowalen_(Delete)_2285456)
MS-SQL TOP ...... is a select clause that limits the number of rows. Example, SELECT TOP ...