REQ: Change Database Name in Results if USE <database> in sc
tkdennis
Posts: 114
I have many databases on each SQL Instance, so my distribution lists are all set to master and I put the database name in the script. It would be nice if the results tab listed the database name from the USE statement that the SQL actually executed within, instead of every result showing the name from the distribution list.
This would include USE statements within dynamic SQL also
Thanks,
Traci
SMS 1.2.0.28
This would include USE statements within dynamic SQL also
if exists (select 1 from sys.databases where name = 'db1') exec ('use db1;exec sp__spaceused ') if exists (select 1 from sys.databases where name = 'db2') exec ('use db2;exec sp__spaceused ')
Thanks,
Traci
SMS 1.2.0.28
Comments