I was wondering if someone knows what is the best practice for using the Query Execution Mode inside the ADF? From what I understand:
Database: The search results are filtered from the Database table every time the query is hit. In Memory: The results are filtered from the VO cache memory. It will use the rows which are already in the row set. It will stop the unnecessary hits to the DB. Both: The results are filtered from the existing row set and also from the filtered results from Database. This is useful when you want to filter from uncommitted records also.
The reason why I am asking is because I had some issues with using Both option. My bind variables weren't properly updated.
Thank you in advance!