Troubleshooting SQL Server 2014 Integration Services If you have problems with SQL Server 2014 Integration Services (SSIS), review this troubleshooting checklist to find potential solutions. 1. Install the latest SQL Server 2014 service pack. Because many SQL Server 2014 Integration Services bugs were fixed in SQL Server service packs, you should install the latest SQL Server service pack. At the […]
Tag: SSIS package
Tips for using Integration Services in SQL Server 2014 (Part 2)
Tips for using Integration Services in SQL Server 2014 (Part 2) Use the bcp utility instead of Integration Services when you need to export data from the SQL Server table into a text file. The bcp utility is much faster than SSIS, so try to use it whenever possible. If you need to sort data or identify similar data rows,...
Tips for using Integration Services in SQL Server 2014 (Part 1)
Tips for using Integration Services in SQL Server 2014 (Part 1) Try to avoid SSIS lookups. Because SSIS lookups slow down performance, try to use the Transact-SQL statements to perform the same functions. If you need to combine data rows from multiple upstream data flow components, you can use the Union All, Merge, and Merge Join transformations. These transformations make...