I've got a large SQL table (over 16 million records) that I need to pull information from based on some selections in my app.
I've tried both Search and Filter. It does not give me the delegation warning but when I look at the call the app makes it is only getting the top 2000.
Here is what I tried for Search
Search(
'[MMD].[PF_Read_DM_RNTL_PI19_MAIN_IN_SERVICE_SIZE_PREM]',
compareUseSelection[@Value],
"ORDERED_PROD"
)
For Filter I tried with both = and in with the same results.
Filter(
'[MMD].[PF_Read_DM_RNTL_PI19_MAIN_IN_SERVICE_SIZE_PREM]',
compareUseSelection[@Value] = ORDERED_PROD
)
Is there something I am missing or a different way I should be trying to pull the data?