This has been a rather well used presentation title but it does allow a certain degree of flexibility, and we covered a good range of topics in my session at the UK SQL Server User Group in Cambridge last night. Thanks to all who attended. Here is the rather limited slide deck and the all… Continue reading SSIS Tips & Tricks (Presentation)
Month: May 2009
Creating packages in code – Execute SQL Task
The Execute SQL Task is for obvious reasons very well used, so I thought if you are building packages in code the chances are you will be using it. Using the task basic features of the task are quite straightforward, add the task and set some properties, just like any other. When you start interacting… Continue reading Creating packages in code – Execute SQL Task
Searching for tasks with code – Executables and Event Handlers
Searching packages or just enumerating through all tasks is not quite as straightforward as it may first appear, mainly because of the way you can nest tasks within other containers. You can see this illustrated in the sample package below where I have used several sequence containers and loops. To complicate this further all containers… Continue reading Searching for tasks with code – Executables and Event Handlers
Maintaining packages with code – Adding a property expression programmatically
Every now and then I’ve come across scenarios where I need to update a lot of packages all in the same way. The usual scenario revolves around a group of packages all having been built off the same package template, and something needs to updated to keep up with new requirements, a new logging standard… Continue reading Maintaining packages with code – Adding a property expression programmatically