Does someone know which system table or system view can be used to link with the ownersid column of sysdtspackages90 to identify the creator of an SSIS package.
Example:
SELECT *
FROM msdb.dbo.sysusers
WHERE sid = (SELECT ownersid
FROM msdb.dbo.sysdtspackages90
WHERE name = 'SSIS_Package_Name')
The subquery returns a value.
But the main query does not.
Thanks