The pagination controls in Data Grid 2 work natively when the datasource supports paging, but for a custom Query External Database implementation, you typically need to handle the paging logic yourself.
A couple of things to check:
OFFSET and FETCH NEXT?The error:
Missing IN or OUT parameter at index:: 1
usually indicates that Oracle is expecting a bind parameter that is not being supplied at execution time, which suggests that :offsetparam and/or :limitparam are not being populated at all.
From my experience, Data Grid 2 does not automatically pass paging parameters into a custom microflow for a Query External Database action. You may need to implement paging manually.
Could you share the microflow and datasource configuration screenshots for better understanding?
Thanks for your reply. That's exactly what I had suspected. The DataGrid2 doesn't provide the two parameters for offset and limit.
How can this problem be solved manually? Or are there other ideas for handling external tables with over 100,000 records?