Meta
Archives
Categories
Tags
Architecture Biking BizTalk C# DataWarehousing DBA Denali IFR IIS IoC Learn To Fly Legacy log4net MadDotNet MadeInUSA MSTechEd MVC MVVM NHibernate ORM PDC PowerPivot Racing RFID SharePoint SilverLight Sql SQL Server 2012 SSAS SSIS SSRS Tabular Models Team Build Team Foundation Server Testing Triathlon Virtualization Visual Studio WCF Windows Server WPF
Tag Archives: SSIS
SSIS: Using the Script Component to Obtain an Error Description
In the SSIS data flow, many data flow components provide an ErrorOutput that allows you to route rows that generate errors or truncation to another component in the data flow. The ErrorOutput path contains the following metadata: ErrorCode, ErrorColumn and … Continue reading
SSIS: Handling Truncation and Data Errors
SSIS provides functionality to handle unexpected data in the data flow. Data flow errors are often due to invalid data values (e.g. string instead of number) and data truncation. Many components in the data flow support error outputs that allow … Continue reading
SSIS: Implementing IsNumeric( ) Logic Using the Data Flow Script Component
SSIS does not include an ‘out-of-the-box’ isNumeric( ) function. Fortunately, this functionality can be implemented using the script component in the data flow. I am going to make the assumption that readers are familiar with the SSIS script component. If … Continue reading
SSIS: Implementing Package Logging
SSIS logging is configured on a package-by-package basis. SSIS provides a flexible event logging environment that allows developers to configure: the container or scope to log (generally the entire package), the type of events to log, and the log provider … Continue reading
SSIS: Issues with the Excel Data Source
I discovered some undesirable behavior with the SSIS Excel Data Source. Although this issue has been well-documented for a while, I thought it is worth mentioning again. I had one column in my spreadsheet that was sparsely populated, nearly all … Continue reading