Removing Tab character from source data

  • Hi All,

    I am moving data from SQL table to a fixed width flat file. I have trimmed a few columns to remove tabs and spaces.

    I have found that even after trimming, tabs are being written into the fixed width flat file which actually increases size of that record.

    Is there any work around for this? Any information would be of great help.:-)

    Thanks in advance,

    Chetan

  • Are the tabs in the source SQL data, or are they being added on the way to the output file?

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

  • Phil,

    There are tabs in the source SQL table data. I want to clean these tabs and extra spaces (Transformations) before moving data to the fixed width flat file.

  • You may use the Derived Transformation task.

    Option 1:Functions such as REPLACE, LEN, SUBSTRING might prove useful

    OR

    Option 2: Use Script Component in Transformation Mode or Source Mode and use the Trim() method available.

    Raunak J

  • Ref:http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=18281

    You can use REPLACE(<<String>>,char(9),'') and then trim it again just in case 😀

    Edit: CHAR control characters

    Tab: char(9)

    Line feed: char(10)

    Carriage return: char(13)

    _____________________________________________________________

    [font="Tahoma"]'Some people still are alive simply because it is illegal to shoot them... o_O 😎 '[/font]

  • I use this function to clean tabs, new lines, etc from a string. You can try it:

    ALTER FUNCTION [Processing].[fnFormatString](@s varchar(200))

    RETURNS varchar(200)

    AS

    BEGIN

    RETURN ISNULL(

    LTRIM( RTRIM(

    REPLACE(

    REPLACE(

    REPLACE(

    REPLACE(@s, CHAR(0), ''),

    CHAR(10) ,'')

    , CHAR(13), '')

    , CHAR(9), '')

    ))

    ,'')

    END

  • Thanks All.

    I got the solution,

    REPLACE([Column0],"\t"," ") will remove the tabs from source column [Column0] data.;-)

Viewing 7 posts - 1 through 6 (of 6 total)

You must be logged in to reply to this topic. Login to reply