In following example,
USER= and PASSWORD= are connection options.
libname mydblib sqlsvr user=testuser password=testpass;
In the following example,
the libref MYDBLIB connects to a Microsoft SQL Server database using
the NOPROMPT= option.
libname mydblib sqlsvr
noprompt="uid=testuser;
pwd=testpass;
dsn=sqlservr;"
stringdates=yes;
proc print data=mydblib.customers;
where state='CA';
run;