I want to invoke a macro variable as password in the libname statement but it seems like not working. the libname statement I wrote is
%let pswd=ABCD
libname sa2st oracle path='wegtrse' user=myname password='&pswd' defer=no
connection=globalread readbuff=4000 ;
this gives an error
Error in the libname statement
and in the log
NOTE: Line generated by the macro variable "PSWD".
18 Xpswd
----
22
How can I invoke the macro variable in this libname statement ?