Where’s my Data?

I was doing a data conversion that involved importing data from a flat-file source into SQL Server. I fired up SSIS and created the Data Flow tasks that would move the data into the SQL Server tables.

The problem was, the longer fields (i.e. a “Notes” column) were all being truncated no matter what data type I made the destination field. So I created a Data Conversion task to sit between the Flat-File data source and the SQL Server Destination. After I had tried every conceivable destination data type and Data Conversion, I decided that the problem was occurring before SSIS even got a hold of it.

This is when I discovered the Advanced Editor for the data source.

Write click on the data source and select “Show Advanced Editor”. Select the “Input and Output Properties” tab. Under “Flat File Source Output” –> “Output Columns” you will see the fields to be imported. Here you can change the data type of the fields. I selected “text stream” and that fixed the truncation issue. I was able to get rid of all the Data Conversion steps and just do a straight import to the SQL Server table.

image

Technorati Tags:,

This article is part of the GWB Archives. Original Author: Kirstin Juhl

New on Geeks with Blogs

  • We Won The One Award I Actually Care About

    Full Scale made the Inc. 5000 for the fifth year straight, the 12th listing across my three companies. Here is why the one award you cannot buy is worth stopping for.

  • Your Customers Build the Features Now

    I let a tool I liked sit dead for a year rather than build the features I wanted. An MCP server meant I never had to, and your customers can do the same to your product.

  • Get the Size of a Directory in Linux the Easy Way

    du -sh for the quick answer, ncdu for the cleanup, df for the disk itself: every command for checking directory size in Linux, plus why du and df never agree.

  • Vim Search and Replace: The Ultimate Guide

    One :%s command replaces every match in a file before a find dialog would even open. The Vim substitute patterns worth the muscle memory: flags, ranges, capture groups, and multi-file edits.