Hello,
We are trying to use the DQLOAD macro in the default 'Identify Gender' snippet within SAS Viya. However we get the below error. Is this because DQLOAD requires additional parameters as input such as the QKB location? In this case how do we identify the QKB location in our SAS Viya Environment?
Code:
%dqload(dqlocale=(ENUSA));
Data _null_;
Length name$100;
Length gender $20;
Name='Mrs. Sallie Mae Pavlik'
Gender=dqgender(name,'Name','ENUSA');
PUT GENDER;
run;
Log:
NOTE: DQLOAD macro beginning
WORK "SASGOPT
ERROR: ERROR in the FILENAME statement
NOTE: DQLOAD macro ending
Thanks in advance!