Hi all SAS Users,
Today, when merging two datasets by using proc SQL (I do not use hash object thingy because it is quite a bit complex to me at this moment).
My code is as below
data origin / view=origin;
set my.keepvar_1999_2001_1;
_seqno=_n_;
run;
proc sql;
create table matching (drop=_seqno) as
select a.*, ex_rate
from origin a left join currency b
on a.CURCDD = b.CURCDD & a.DATADATE=b.DATADATE
order by _seqno;
quit;
And the log is as below
NOTE: DATA STEP view saved on file WORK.ORIGIN.
NOTE: A stored DATA STEP view cannot run under a different operating system.
First of all, regarding the operating system (OS), I took a look at a comment from the previous post by @Reeza
"I'm guessing you're using the wrong encoding option here, is the file created and being used on the same OS or are you crossing OS and languages here? For example, is it created out of a Unix System and read on a Windows System?"
I can say I run all of them on a Window system.
Secondly, I did a search about the document about this line of note, this documentsas just mentioned this line of code and no further explanation. So, I am wondering if I need to care about that note.
Warm regards.
... View more