The application package I customize and that looks up to the MSSQL
database
(called HEAT, from FrontRange) offers an Import/Export module that
transforms the carriage returns into \r\n ASCII characters. But, the
module
doesn't provide any scheduling feature, which I absolutely need.
Is there any way I can get the same result with DTS and have the entire
records show up in only one line each?
transforms the carriage returns into \r\n ASCII characters. ...
...
create temp table using
select ..., REPLACE( yourMemoField, CHAR(13) + CHAR(10), '\r\n'), ...
into tempTable
from yourTable
and then use the view as input table in the dts.
Robert Lummert <r...@w4u.com> wrote in message news:<3BFCDA3D...@w4u.com>...