Simplifying your code shows no errors. The error is likely somewhere else, otherwise please post your full log.
1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
68
69 %let QCCPW = QCC2019;
70 PROC SQL;
71 Create table BO_DATA (alter=&QCCPW write=&QCCPW)
72 as select *
73 from sashelp.class;
NOTE: Table WORK.BO_DATA created, with 19 rows and 5 columns.
74 QUIT;
NOTE: PROCEDURE SQL used (Total process time):
real time 0.05 seconds
cpu time 0.03 seconds
@Lav001 wrote:
Hi,
While creating the password it is throwing below error, any suggestion?
%let QCCPW = QCC2019;
PROC SQL;
Create table SAMPLE.BO_DATA (alter=&QCCPW write=&QCCPW)
as select *
from BO_DATA_&YM A LEFT JOIN
AACILITY_INFO (drop=zip_code state: county: city: ) B
on A.Aacility=B.Aacility
order by A.Unique_ID;
QUIT;
ERROR: Invalid or missing ALTER password on member SAMPLE.BO_DATA.DATA.
Thanks
Lav