I'm a newbie in SSIS, and my first tutorial using SSIS was trying to import a flat file or text file which contains data, and my data looked like this:
FirstName LastName MiddleName FullName Alias
AA BB CC DD EE
I wanted to insert the data into a table on my database. I can't get it done because I cannot find the space delimiter on SSDT. Only {CR}
, {LF}
, {;}
, {,}
, etc. but I can't find the space.
Does anyone know how to insert the space as delimiter, and use it so I can import the data on my flat text and insert it to the table.