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.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.