Hi experts,
(Sorry for the cross-post; I submitted this to the SQL Programming forum before discovering there is a special section for DTS.)
This is SQL Server 2000 Standard.
I want to export data to a .txt file and have all the data be contiguos, together with no spaces.
Here is a sample table layout:
Col Name Data Type Value
Cust# char 11 00000052314
TransType char 1 A
DivCode char 2 48
(Note that each value is the max length allowed for that column... This is actually the way my input data is.)
** The destination text file that gets generated by my DTS package contains spaces between the data.... for ex
00000052314 A 48
** What I need is....no spaces
00000052314A48
I start with a blank .txt file.
Have I specified something wrong in the 'delimited by' stuff OR some other silly mistake?
Also, there is a button for Destination that says 'Populate from Columns' - Have tried it and still get the spaces.
Thanks for any help you can give,
John
(Sorry for the cross-post; I submitted this to the SQL Programming forum before discovering there is a special section for DTS.)
This is SQL Server 2000 Standard.
I want to export data to a .txt file and have all the data be contiguos, together with no spaces.
Here is a sample table layout:
Col Name Data Type Value
Cust# char 11 00000052314
TransType char 1 A
DivCode char 2 48
(Note that each value is the max length allowed for that column... This is actually the way my input data is.)
** The destination text file that gets generated by my DTS package contains spaces between the data.... for ex
00000052314 A 48
** What I need is....no spaces
00000052314A48
I start with a blank .txt file.
Have I specified something wrong in the 'delimited by' stuff OR some other silly mistake?
Also, there is a button for Destination that says 'Populate from Columns' - Have tried it and still get the spaces.
Thanks for any help you can give,
John