How Can i iterate thru the all my DB's and get a row count for each employee table? Each client is has there own DB, need to find the total employees in each DB.
Been trying to figure out how to use sp_MSforeachdb
sp_MSforeachdb
@command1 = 'select count(*) from employee'
Can output in seperate tables or would be good in one table wiht the DB name.