In SQL Server 2005, I would check the version of my package like so:
USE [msdb]
GO
SELECT [Name], CAST([VerMajor] AS VARCHAR(4)) + '.' + CAST([VerMinor] AS VARCHAR(4)) + '.' + CAST([VerBuild] AS VARCHAR(4))
AS [Version]
FROM [dbo].[sysdtspackages90]
WHERE [Name] IN ('MYPackage')
Order by [Name]
In SQL Server 2008 - I do not see the table [dbo].[sysdtspackages90]
.
If I replace the table with [dbo].[sysdtspackages]
in my query, I get back 0 rows.
Where is the package information stored in 2008? Or am I not seeing any record returned by Select * from [dbo].[sysdtspackages]
because I do not have the right permission?