Hello,
I wonder if someone already transfer on its server those two files from Post Canada:
canada.add
canada.arc
and if so , what can we do with those two files and SAS.
I know that my question seem a bit strange but we have an old process that deposit those two files on our server but I have no idea who use those files or what to do with it.
Can we use SAS and those two file to generate a postal code dataset?
to be honest, I don't know how to use those files. Which software can I use to look at those file?
file add 'path to add file';
data demo;
length variable $5000.;
infile add lrecl=5000 obs=500;
infile;
variable = _infile_;
run;
That's what I'd use to start reading it into SAS and then parsing it out as needed.
If it's fixed width it's painful to decode for sure.
I suggest you stop the process and delete the files, then wait if someone complains.
The only way to deal with undocumented processes.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.