Get Databases List from all the MS SQL Server
You are supposed to get a list of all
the databases on each SQL Server instance, along with their total number. All
of your SQL Server instances are added to a server as connected servers.
where name not in ('msdb','master','tempdb','msdb','model')
0 Comments