No comments SQL Server – Find Owners of SQL Server Agent Jobs Using TSQL By Enrique 26/04/2017 29/04/2020 SQL SERVER, Database Administration, T-SQL 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 Knowledge worth sharing...LinkedinFacebookGoogleTwitter