ASE uses two system tables for maintaining stats on tables for obtimized query and data retrival.systabstats is used on table level and is maintained dynamically while sysstatistics maintains informat...
The update statistics command helps the server make the best decisions about which indexes to use when it processes a query, by providing information about the distribution of the key values in the in...
select count(*) does not need to fetch all column data - which you can see whenever the showplan chooses to perform the query using an index.I doubt there is a difference - and when I just tried to be...