The SQL Server Integration Services includes the Logging Services (Logs). So, you can use them in packages, containers, tasks, etc. Let me show what the steps involved in SSIS logging (saving the log information) are.
For this SSIS logging demonstration, we are going to use the below-shown data.

SSIS Logging Example
To explain the concept, first, drag and drop the data flow task from the toolbox to control flow and rename it to SSIS LOGGING, as we have shown below.

Double click on it will open the SSIS data flow tab. Drag and drop OLE DB Source and OLE-DB destination onto the data flow region.

Double click on the OLE-DB source will open the Source Editor. From the below screenshot, you can see that we are using the [Employee] table present in the database. Please refer OLE DB Source article to understand the available options in the OLEDB source editor.

Double-click on the OLE DB Destination will open the OLE DB Destination Editor to configure the target database. For the time being, we are selecting the existing table Table called [SSIS Logging Example Table].

Click on the Mappings tab to check whether the source columns accurately mapped to the destination columns.

Click OK to close the OLE DB Destination editor.
Configure Logging in SSIS
To configure SSIS, please navigate yourself to the menu and select the Logging (submenu), as we showed below.

Once you select the SSIS Logging option, a new window called Configure Logs will open. As you can see from the below screenshot, SSIS Logging is showing a warning message.

Please checkmark the package (folder) to remove the warning message.

You can see the list of available SSIS logging options at the provider type property.
- Log Provider for SQL Server Profiler: This saves the Log information in the Profiler
- For XML Files: The information will store in an XML file.
- Provider for SQL Server: It saves the information in the sysssislog table present in the Database (System tables)
- For Windows Event: It will store the SSIS log information in the local computer. It is under the Application log on Windows.
- Provider for Text Files: This option saves the information in the comma-separated value (CSV) format. You can change the default extension to .txt as well.

SQL Server Configuration
Please select the provider type, and click the Add button. First, we will add the Provider for the server.

Next, we have to configure the connection string (Database along with the credentials). For now, we are selecting the existing connection that is pointing to the database.

Text File Configuration
Next, we added one more provider, i.e., Text files. It means the SSIS logging information will store in both the SQL server and the text file.

Currently, we don’t have any File connection in the package, so click on the <New Connection..>.

Once you click on the <New Connection..> option, File Connection Manager Editor will be opened to configure it. In this example, we are creating a new file. So, we are selecting Create File option from the Usage Type.
Next, Click on the Browse button, and add the file name at the location (file system).

Next, go to the Details tab to configure them in-detail

Configure Log Event details
The below picture will show you the list of available events in the SSIS Logging. Please read each event so that you can understand the meaning of them. As it is in simple English, we are not explaining the events.
For the demo purpose, we selected the OnInformation, OnPreExecute, and OnPostExecte events.

You can also click the Advanced button to control further the information stored in the tables.

Save button: This button is to save the configuration settings of an SSIS logging that we configured here in an XML file.

Load button: Use this button to load the existing log configuration settings XML file.

Click OK to close the SSIS log settings and run the designed package.

Let me open the SSIS Logging file present in the file system to see the information in the specified text file.
Please open the Management Studio. Under the specified database, go to the Tables folder -> System Tables. Here you will find the sys table.

Comments are closed.