Valid in: | DATA and PROC steps |
Default: | NO |
Supports: | All |
create table x.products (id int identity primary key, product_name varchar(40))
data x.products; id=1; product_name='screwdriver'; output; id=2; product_name='hammer'; output; id=3; product_name='saw'; output; id=4; product_name='shovel'; output; run;
libname x fedsvr server="d1234.us.company.com" port=2171 user=user1 pwd=pass1 dsn=db2dsn dsnuser=db2user dsnpwd=db2pwd ignore_read_only_columns=yes; options sastrace=',,,d' sastraceloc=saslog nostsuffix; proc append base=x.productsdata=work.products; run;