How to define multiple row delimiters for a Flat File Connection in SSIS? for example for a text file containing this string:

Civility is required at all times; rudeness will not be tolerated.

I want to have this two rows after using ';' and '.' for row delimiter:

Civility is required at all times

rudeness will not be tolerated

link|improve this question

So you already have a row delimiter defined like a newline (\n) and you want to also split on a semicolon? Is there just one row in the data flow or will you need to copy columns 1-n and double up for the Civility row and Rudeness row? – billinkc Oct 31 '11 at 14:47
@arz do you mean using ; and \r\n for row-delimiter? – Raj More Oct 31 '11 at 16:13
feedback

1 Answer

up vote 3 down vote accepted

For source data, I created a 3 line file

Civility is required at all times; rudeness will not be tolerated.
The quick brown fox jumped over the lazy dogs.
I am but a single row with no delimiter beyond the carriage return

The general approach I have taken below is to use a flat file connection manager with a format of Ragged Right and my header row delimiter is {CR}{LF}. I defined one columns, InputRow as String 8000. YMMV

In my data flow, after the flat file source, I add a script component as a data transformation called Split Rows.

data flow

On the Input Columns tab, check the InputRow and leave it as ReadOnly so the script can access the value. It'd be nice if you could switch it to ReadWrite and modify the outgoing values but that's not applicable for this type of operation.

By default, a script task is a synchronous component, meaning there's a 1:1 relationship between rows in and rows out. This will not suit your needs so you will need to switch it over to Asynchronous mode. I renamed the Output 0 to OutputSplit and changed the value of SynchronousInput from "Input 0 (16)" to None. Your value for 16 may vary.

Script to Async mode

On your Output Columns for OutputSplit, Add a Column with a name of SplitRow DT_STR 8000. output column definition

Within your script transformation, you only need to be concerned with the ProcessInputRow method. The string class offers a split method that takes an array of character values that will work as the splitters. Currently, it is hard coded below in the array initializer but it could just as easily be defined as a variable and passed into the script. That is left as an exercise to the poster.

/// <summary>
/// we have to make this an async script as 1 input row can be many output rows
/// </summary>
/// <param name="Row"></param>
public override void Input0_ProcessInputRow(Input0Buffer Row)
{
    string[] results = Row.InputRow.Split(new char[]{';', '.'});
    foreach (string line in results)
    {
        // Remove this line if it is desirable to have empty strings in the buffer
        if (!string.IsNullOrEmpty(line))
        {
            OutputSplitBuffer.AddRow();
            // You might want to call trim operations on the line
            OutputSplitBuffer.SplitRow = line;
        }
    }
}

With all of this done, I hit F5 and voila, Data viewer

This is going to be a fairly memory intensive package depending on how much data you run through it. I am certain there are optimizations one could make but this should be sufficient to get you going.

link|improve this answer
Just one column. – ARZ Oct 31 '11 at 16:21
Updated with one more question about file layout. 2 or 3 delimiters? – billinkc Oct 31 '11 at 16:40
Number of delimiters is not a constant and may be 2,3 or more than 3. – ARZ Oct 31 '11 at 16:50
Is this possible without using the Script Component? – ARZ Nov 1 '11 at 8:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.