Hi,
I need to compare two different sas datasets lying in two different servers. One is Unix and the other one is in Windows. I am running my sas session in windows , connecting to Unix using SAS/CONNECT to compare both the datasets. The program is throwing an error that the local library is not recognised. Please find below the snippet. The local directory was recognized by PROC DOWNLOADS but not by PROC COMPARE.
libname local "D:\test_dir";
%let rmtsrvr = xxxxxxxx xxxx;
options comamid=tcp remote=rmtsrvr;
signon user="xxxx" password="xxxxxxxxxxxxxxxxxxxxxx";
rsubmit;
libname rmt "/xxx/xxx/xxxx";
proc compare base=rmt.dt1 compare=local.dt1_t;
ID var1 var2;
run;
endrsubmit;
ERROR: Libref LOCAL is not assigned.
Thanks,
Vijay.