Hi. I'm just starting out learning SAS Studio on SAS University Edition. I'm trying to copy a table, sashelp.class, into a new file called work.classname. When I run it, I get the errors below. A new file called classname is created in my work folder but I can't open it because it doesn't contain any columns (I get an error message on it). Any thoughts on how to correct this? And is there an easier way to make a copy of an existing file? Thanks. data work.classname; proc copy in=sashelp.class out=work.classname; run; 1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; 42 ; 43 data work.classname; NOTE: The data set WORK.CLASSNAME has 1 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 44 proc copy in=sashelp.class out=work.classname; _____________ 22 201 ERROR 22-322: Expecting a name. ERROR 201-322: The option is not recognized and will be ignored. 45 run;
... View more