Troubleshooting - How do I get Table Record Count fastest way using QODBC
Problem Description:
What is the fastest way to get the number of records from a table?
Solution:
QODBC would need to scan the whole table to get the record or row count. So you shouldn't do it if don't need to do it. If you must do it, run the query against the optimized table using nosync like this:
SELECT count(listid) as "Table Row Count" from Customer nosync