Processing 10,000 Dataverse rows in a single Power Automate List rows action
You manage a Microsoft Power Automate cloud flow. The cloud flow queries Microsoft Dataverse data by using the List rows action. You need to configure the cloud flow to process 10,000 records in a single run. What should you do? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point.
Community Votes
100% of anonymous learners picked answer BD. Votes are pick records left by other test-takers — they are not the verified answer.
Community Insight
Pagination is the supported mechanism for retrieving more than 5,000 rows from the List rows action; the threshold tells the connector how many total rows to fetch across pages. The @odata.nextLink is the continuation token the API returns for the remaining pages.
The Dataverse 'List rows' action caps a single page at 5,000 rows. To exceed that in one run you enable pagination and set the threshold to 10,000, and/or rely on the @odata.nextLink the response exposes to page through the remaining records until all 10,000 are retrieved.
Setting 'row count' (A) or FetchXML 'top' (C) to 10,000 directly — both are capped at 5,000, so they silently truncate and never return 10,000 rows in a single page.
Community Discussion (4 comments)
Comments & Corrections
No comments yet — spotted an error or have a note? Share it below.
Expert Analysis
Why the Answer Is Correct
Option B acknowledges the 5,000-row page limit and uses the @odata.nextLink continuation to retrieve the remaining rows. Option D turns on pagination in the List rows action and sets the threshold to 10,000, which instructs the connector to page through and return up to 10,000 records in the run. Both together meet the goal.Why the Other Options Are Wrong
Option A (row count = 10,000) is bounded by the 5,000 maximum per page, so it cannot return 10,000 at once. Option C (FetchXML top = 10,000) is also capped at 5,000 for the top parameter, so it truncates. Only B and D handle the >5,000 volume correctly.Community Comment Notes
pey (likes=5) explains B and D handle large datasets by processing records in batches. 1285cc6 (likes=1) cites Microsoft docs that the maximum top value is 5,000, ruling out C.Official Reference
Related Analysis
Practice All PL-400 Questions
Access 85 questions with complete answers and detailed explanations.
View Full PL-400 Practice Test →