Find out who are the owners of the SQL agent jobs by running the script below.
SELECT J.name AS [Job Name] ,L.name AS [Job Owner] FROM msdb.dbo.sysjobs_view J INNER JOIN master.dbo.syslogins L ON J.owner_sid = L.sid GO
Find out who are the owners of the SQL agent jobs by running the script below.
SELECT J.name AS [Job Name] ,L.name AS [Job Owner] FROM msdb.dbo.sysjobs_view J INNER JOIN master.dbo.syslogins L ON J.owner_sid = L.sid GO
Leave a Reply