What problem does it solve? Okta Workflows Tables behave in non-obvious ways — case-sensitive search, a hidden 3,500-row return cap, no native upsert, and throttling under high-frequency access — causing silent data mismatches, duplicate rows, and failed flows in production automations. ## Core Features & Use Cases - Search Rows guidance: Explains case-sensitive searchRows2 behavior with no "starts with" support, plus workarounds using To Lower Case normalization or List - Filter helper flows. - Pagination and limits reference: Covers the hard 3,500-row return cap with 0-based Offset pagination, and table limits of 500,000 rows, 64 columns, 16 KB per cell, and 200/100 table quotas. - Upsert race mitigation: Documents the read-then-write pattern (Search Rows → If/Else → Create/Update Row), its concurrency race risk, and serialization via a concurrency=1 helper flow. - Use Case: When building a sync-reconciliation flow that searches a table by email and updates rows, apply case normalization and Offset pagination to avoid missed matches and truncated result sets. ## Quick Start Ask how to handle case-sensitive Search Rows and the 3500-row limit in an Okta Workflows table sync flow.