Select Page

Run a PowerShell Script from SSIS

It can be confusing to know which tool in the SSIS toolbox to use when trying to execute a PowerShell script from within SSIS. The best task to use is an Execute Process Task. Under General you can give it a name and a description. This post first appeared...

SSIS Save to XML Output

There isn’t much online about saving an output of data to an XML file. When trying with a file system task it throws errors. There is a workaround for this. You can use a data flow task in SSIS to export to a flat file that is an XML file. You simply need to have a...

SSIS Email Task Delay Validation

Recently I was trying to send a file via Email in SSIS. For the connection to the file I was using a variable as the file name changes everyday. This post first appeared at http://thesqlgirl.com/2017/11/24/ssis-email-task-delay-validation/. The author is Jeanne...

MDS “Service Unavailable” Error

After restarting a server that has MDS on, I could no longer access MDS via the browser. This seemed very strange as I have restarted the server multiple times and it had never done this before. Turns out the Application Pool had stopped for MDS. So I started it up...

Limiting SSIS to a Single File Type

A while ago I was having some issues with SSIS and moving files. There was a hidden file called thumbs.db When SSIS was running the move file task it would fail because it can’t place duplicate files in the same location. The thumbs.db file was the problem. Even...