Although having a wrong extension, from what you're saying those files are compressed (zip). Once decompressed you're good to go, no need to open them through anything else. Seems you're just using Notepad++ to rename the extension. Unless Notepad++ is translating something in the process, say line feed/carriage return codes. Either way, I see no need to pass them through Notepad++, SAS will import them fine directly (after decompressed), as Ksharp suggestion. If you care to bypass the unzip process outside SAS, you may try to pipe the unzip command from infile, like this: data _null_; infile 'unzip -p C:\INPUT\MYFILE.bcp' pipe; * -p option pipes the content; input; put _infile_; run; NOTE: -p option of my unzip command line utility pipes the content of the zip, for winzip it's the -c option, you'll have to check the utility your using, and get the correct option flag. Another way, would be to use SASZIPAM engine, which is a "use at your own risk" feature: http://support.sas.com/kb/31/244.html But I wouldn't recommend it for big files like yours. Cheers from Portugal. Daniel Santos @ www.cgd.pt
... View more