Hello, any ideas of how to do this?
My first guess is having one Sandbox DBA SQL Server that has multiple Linked Servers and then run a script like the following as a SQL Agent job that can output query in email.
SELECT
sdb.
Name
AS
DatabaseName,
COALESCE
(
CONVERT
(
VARCHAR
(12),
MAX
(bus.backup_finish_date), 101),
'-'
)
AS
LastBackUpTime
FROM
sys.sysdatabases sdb
LEFT
OUTER
JOIN
msdb.dbo.backupset bus
ON
bus.database_name = sdb.
name
GROUP
BY
sdb.
Name
But any other ways of doing this?
Thanks in advance.