SSIS package - can it open TP in Hex view of a text file?

General questions about using TextPad

Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard

Post Reply
slmehl
Posts: 4
Joined: Sun Nov 09, 2008 5:22 am

SSIS package - can it open TP in Hex view of a text file?

Post by slmehl »

Hello --

Our SSIS package creates a text file from the results of a SQL query.
After that, we want the package to open the file in TextPad in Hex view so we can inspect it.

Can anyone tell me how to do this?

Thanks in advance for any help.

Larry Mehl
miked
Posts: 56
Joined: Tue Feb 27, 2007 11:17 am

Post by miked »

If your SSIS package can run external programs you need to get it to put a line number in hex proceeded by 0x in brackets after the file name eg:

Code: Select all

textpad.exe test.txt (0x01)
This forces textpad into hex mode.
Post Reply