You can do 2 things
1
If the first couple of characters are always the same you could check it in your transformations like this
If DTSSource("Col001") ="footer" then
'do nothing
else
DTSDestination("Field1") = DTSSource("Col001")
end if
2
use the file system object and save the file without the footer
an excellentt DTS book is Professional SQL Server 2000 DTS (Data Transformation Services)
http://www.amazon.com/exec/obidos/AS...ink%5Fcode=xm2
http://sqlservercode.blogspot.com/