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
I have several jobs and several packages. In SQL Server 2005 we used to use DTS Packages, but they are now defunct (I know that I can re-enable them, but that\'s not what I\'m after). I receive the fo
I\'ve written a web cgi application in perl and before I start to distribute it to clients, I\'d li开发者_如何学Cke to provide an option for future updates.