I have a SAS coding issue which I am hoping someone can assist with.
My job is using the following instruction to create a SAS macro variable called &init_valueAMPEPCNT : -
proc sql;
select TOTAL_CR_CNT into :init_valueAMPEPCNT from perm.recordsAMPEP3;
where file_id = 'EFTAMPNZ';
quit;
Problem is, the job returns a condition code of RC=4.
This is what is returned: -
149 proc sql;
150 select TOTAL_CR_CNT into :init_valueAMPEPCNT from perm.recordsAMPEP3;
151 where file_id = 'EFTAMPNZ';
WARNING: This SAS global statement is not supported in PROC SQL. It has been ignored.
152 quit;
I am wanting a clean run of RC=0.
Referring to documentation on the internet I think our version of SQL may not support this representation (with the colon :🙂 to signify a macro variable).
I'm wondering if there is an alternative way of coding this short of not using SQL at all and going with SAS code only.
Removed the semi-colon and it worked!!! Thanks very much for a quick response.
remove the semicolon before the where clause.
Oops sorry sir @PGStats for the duplication. I didn;t see your post.
Are you sure whether your proc sql syntax is correct, i see one error
select TOTAL_CR_CNT into :init_valueAMPEPCNT from perm.recordsAMPEP3; /*shouldn't be semicolon here*/
The syntax should ideally be
proc sql;
select TOTAL_CR_CNT into :init_valueAMPEPCNT from perm.recordsAMPEP3
where file_id = 'EFTAMPNZ';
quit;
Removed the semi-colon and it worked!!! Thanks very much for a quick response.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.