I use the code below to export data to Access:
proc export data=proto.final
outtable="final"
dbms=access replace;
database="G:\CD Data\ccdbase8.mdb";
run;
Then have error:
ERROR: Libname PROTO is not assigned.
ERROR: Export unsuccessful. See SAS Log for details.
What should I do now?
Thanks!
proc export data=proto.final
outtable="final"
dbms=access replace;
database="G:\CD Data\ccdbase8.mdb";
run;
Then have error:
ERROR: Libname PROTO is not assigned.
ERROR: Export unsuccessful. See SAS Log for details.
What should I do now?
Thanks!