Are any queries in other databases equivalent to Oracle very useful ANALYZE TABLE..? I am looking for alternatives for the following database providers:
ANALYZE TABLE..
Thanks in advance
MySQL has ANALYZE TABLE, see here:
ANALYZE TABLE
http://dev.mysql.com/doc/refman/5.5/en/analyze-table.html
Take a look at SQLServer-DBA.com on this page for an overview of statistics and another page on how to collect statistics in MS SQL Server. I do not know other vendor implementations.
, SQL Server CREATE STATISTICS, .