I have some data called "abc_partner_data" within a permanent library called "Input_SAS", within SAS. I want to import the data into my SAS session so that I can start analysing the data. The code I have used to do this is below:
data abc_partner_data;
set Input_SAS.abc_partner_data*;
run;
However I keep getting two errors. Firstly SAS states "Libref abc_partner_data exceeds 8 characters". So can I change the Libref name to any name I want?
Also SAS states "the File WORK.SDP_POLICY_CUST_DATA does not exist". I am not sure how to solve this problem. Any suggestions would be useful!
Input_SASas the maximum length for a libref is 8 characters. - Tom