Format settings from flat file connection manager

  • Hello everyone,

    I have a SQL table in which there are some columns like Name, Age, City etc.

    And in rows there is some data.

    Now what I am trying to do is print this data to a text file in this format:

    <name>
    <abc>
    <age>
    <44>
    <city>
    <Tokyo>
    <phone>
    <11324242>
    <email>
    <hj@gmail.com>

    I tried various settings in flat file connection manger in SSIS package but so far no success.

    Is it achievable from flat file manger or is there another way?

    Check image for flat file connection manager settings.

    Regards

     

     

    • This topic was modified 1 year, 11 months ago by  Jobs90312.
    Attachments:
    You must be logged in to view attached files.
  • I don't think that there is a 'no code' way of achieving this.

    But if you know how to code and use Script Components, this is possible.

    The absence of evidence is not evidence of absence
    - Martin Rees
    The absence of consumable DDL, sample data and desired results is, however, evidence of the absence of my response
    - Phil Parkin

  • Having said that, if you can transform your source query so that the results look like this, it would be straightforward.

    ExcelData

     

    The absence of evidence is not evidence of absence
    - Martin Rees
    The absence of consumable DDL, sample data and desired results is, however, evidence of the absence of my response
    - Phil Parkin

  • Phil Parkin wrote:

    Having said that, if you can transform your source query so that the results look like this, it would be straightforward.

    ExcelData

     

    Can you please tell me what keywords can I use in my source query to make data look like this?

  • Keywords indeed! OK, here is one way, which (for ordering purposes) relies on every person having a unique Id column.

    DROP TABLE IF EXISTS #SomeData;

    CREATE TABLE #SomeData
    (
    PersonId INT NOT NULL PRIMARY KEY CLUSTERED
    ,Name VARCHAR(50) NOT NULL
    ,Age INT NOT NULL
    );

    INSERT #SomeData
    (
    PersonId
    ,Name
    ,Age
    )
    VALUES
    (1, 'abc', 44)
    ,(2, 'def', 55);

    SELECT c1.PersonId
    ,c1.Ctr
    ,c1.Item
    FROM #SomeData sd
    CROSS APPLY
    (
    SELECT x.PersonId
    ,x.Ctr
    ,x.Item
    FROM
    (
    VALUES
    (sd.PersonId, 1, '<name>')
    ,(sd.PersonId, 2, CONCAT('<', sd.Name, '>'))
    ,(sd.PersonId, 3, '<age>')
    ,(sd.PersonId, 4, CONCAT('<', sd.Age, '>'))
    ) x(PersonId, Ctr, Item)
    ) c1
    ORDER BY c1.PersonId
    ,c1.Ctr;

    The absence of evidence is not evidence of absence
    - Martin Rees
    The absence of consumable DDL, sample data and desired results is, however, evidence of the absence of my response
    - Phil Parkin

Viewing 5 posts - 1 through 4 (of 4 total)

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