Valid in: | LIBNAME statement |
Default: | none |
Supports: | All |
libname x fedsvr server="d1234.us.company.com" port=2171 user=user1 pwd=pass1 dsn=basedsn direct_exe=delete; data x.db_dft; /*create the SAS data set of 5 rows */ do col1=1 to 5; output; end; run; options sastrace=",,,d" sastraceloc=saslog nostsuffix; proc sql; delete * from x.db_dft; /*this delete statement is passed directly to the data source*/ quit;