In SSIS I am creating a package and loading data from oledb source to flat file destination . While loading I have separated columns with semicolon delimiter(;) and rows with CR-LF. And I am using (ansi-latin 1) 1252 encoding.
The issue I am having is following. I have 3 columns name varchar(10),city varchar(10),country varchar(10)
I am getting output in the flat file as
However, I need output like
I want to have extra length left in the column occupied with space as shown above.Please someone help me with this.