How to parameterize properties in SSIS package and configure them in a SQL job

Introduction In this article, we will cover the steps of how to run an SSIS package with sensitive data on SQL Server. In an SSIS package sensitive data such as tokens and passwords are by default encrypted by SSIS with your Windows account which you use to create a package. So if ProtectionLevel of a package is […]

SSIS YYYYMMDD date format using SSIS expression

Format Date – SSIS YYYYMMDD from date Often, you need to create file paths with a timestamp using an SSIS Expression. You can use SSIS Expressions Below is a simple expression that will produce a file path with the current timestamp

Sample Output C:\Folder\MyFile_20151231.json Convert Date – SSIS YYYYMMDD to Date

Set the SSIS […]