SSIS Logging

The SQL Server Integration Services include the Logging Services (Logs). So you can use them in packages, containers, tasks, etc. Let me show the steps involved in SSIS logging (saving the log information).

For this SSIS logging demonstration, we will use the below-shown data.

Source

SSIS Logging Example

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

Data Flow Task

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

OLE DB Source and Destination

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

Source Table

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

Destination Table

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

Map Source and Destination

Click OK to close the OLE DB Destination editor.

Configure Logging in SSIS

To configure SSIS, please navigate to the menu and select the Logging (submenu), as we shown below.

SSIS Logging 6

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.

SSIS Logging 7

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

Configure SSIS Logging

You can see the available SSIS logging options list 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 logging 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.
Log Provider

SQL Server Configuration

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

SSIS Logging 10

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

SSIS Logging New Database Connection

Text File Configuration

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

SSIS Logging 12

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

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 the Browse button and add the file name at the location (file system).

Browse Text file to store information

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

check mark both Sql and text files as the provider 15

Configure SSIS 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.

We selected the OnInformation, OnPreExecute, and OnPostExecte events for the demo.

SSIS Logging 16

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

SSIS Logging 17

Save button: This button saves the configuration settings of an SSIS logging we configured here in an XML file.

Save Configuration Settings

Load button: This is used to load the existing log configuration settings XML file.

Save in XML File 19

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

SSIS Logging 20

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.

Log Table

Comments are closed.