I have a ACCESS database which includes tons of tables and I try to import to SAS to manage those tables.
I wirte Proc import but an Error message keep pop out "ERROR: Failed to connect to the Server: ."
NOTE: The SAS System stopped processing this step because of errors.
Here is the SAS code I write,
PROC IMPORT OUT=WORK.TEST
TABLE="ALL Hb ID"
DBMS=ACCESSCS REPLACE;
DATABASE="U:\Databases\SCD_DATA.ACCDB";
RUN;
Does any one know how to solve this problem? I don't want to export each table to EXCEL and then import to SAS.
I am so afraid that I will lost data when I export to EXCEL and import to SAS.
Thank you