I have come across articles that state that SELECT COUNT(*) FROM TABLE_NAME will be slow when the table has lots of rows and lots of columns.
I have a table that might contain even billions of rows [it has approximately 15 columns]. Is there a better way to get the EXACT count of the number of rows of a table?
Please consider the following before your answer:
I am looking for a database vendor independent solution. It is OK if it covers MySQL, Oracle, MS SQL Server. But if there is really no database vendor independent solution then I will settle for different solutions for different database vendors.
I cannot use any other external tool to do this. I am mainly looking for a SQL based solution.
I cannot normalize my database design any further. It is already in 3NF and moreover a lot of code has already been written around it.