Viewing 5 posts - 1 through 5 (of 5 total)
Check this topic out in SQL Server Books Online - Managing ntext, text, and image Data. Not sure about implementing this with the DTS wizard.
June 23, 2004 at 10:19 am
To get any error info on the operation
err.clear
Set tso = oFSO.OpenTextFile(outFileName, ForWriting, True)
if err.number <> 0 then
msgbox err.desc
End if
Try this - when the tso object is closed...
June 23, 2004 at 7:54 am
Check out the dynamic properties task in DTS.
BOL
The Dynamic Properties task works by retrieving values from sources outside a Data Transformation Services (DTS) package at package run time and...
June 23, 2004 at 7:34 am
Try using an left/right outer join to specify that data from the table on either the left or right side of the join will be returned even if there is no...
June 22, 2004 at 3:35 pm
changed the location of closing the out text stream, it was closing after every writing a line and not being reopened. Check the error number and description after each operation,...
June 22, 2004 at 3:25 pm
Viewing 5 posts - 1 through 5 (of 5 total)