Alias: | none |
ERROR: AFTER= not supported on this platform. NOTE: The SAS System stopped processing this step because of errors.
proc upload inlib=accts outlib=accts after='30dec01'd status=no;
WARNING: FILEFMT entries
.sas
and are located in a
directory on a server that runs UNIX to a folder on a client that
runs Windows. filename locref 'c:\'; rsubmit; filename fref '/local/programs'; proc upload infile=locref('*.sas') outfile=fref; run; endrsubmit;
proc build cat=libref.member-name batch; compile; run;libref identifies the SAS library that contains the catalog, and member-name identifies the catalog.
/*******************************************/
/* The libref ORDERS is defined in both */
/* operating environments. */
/*******************************************/
libname orders
server-SAS-library;
proc upload data=orders.qtr1;
run;
/*******************************************/ /* The libref ORDERS is defined only on */ /* the client. */ /*******************************************/ proc upload data=orders.qtr2; run;
libname orders
client-SAS-library;
options user=orders;
/*******************************************/ /* The libref ORDERS is defined in both */ /* operating environments. */ /*******************************************/ libname orders server-SAS-library; libname remote server-SAS-library; /************************************/ /* This option has no effect in */ /* this case. */ /************************************/ options user=remote; proc upload data=qtr1; run;
libname orders
client-SAS-library;
options user=orders;
/*******************************************/
/* The libref ORDERS is defined only on */
/* the server. */
/*******************************************/
libname remote
server-SAS-library;
options user=remote;
proc upload data=qtr1;
run;
proc upload data=study(keep=age score1 score2); run;
study
. Instead, the data set is renamed as results
in the server session. The uploaded data set also inherits only
the LABEL= and TYPE= data set options. For details about the LABEL=
and TYPE= SAS data set options, see SAS Data Set Options: Reference. proc upload data=study out=results; run;
study
. Instead, the data set is renamed as results
in the server session. The uploaded data
set also inherits only the LABEL= and TYPE= data set options. The
INDEX=NO data set option specifies that the index will not be re-created
in the server session.
proc upload data=study out=results(keep=age score1 score2) index=no; run;