Hi, I am a new beginner on SAS. Get a script from a programmer.
Anyone would be able to explain what does '&schema.' mean? what is the relationship between lib and db shown as below? Thanks.
%conn;
%conxn(P_AU_EDW1_FC_V,fc,lib);
proc sql;
%conxn(&schema., PAT, db);
...
quit;
We'd need the macro code for detailed answers, but I guess you should look at https://en.wikipedia.org/wiki/Database_schema
@shawnyap wrote:
Hi, I am a new beginner on SAS. Get a script from a programmer.
Anyone would be able to explain what does '&schema.' mean? what is the relationship between lib and db shown as below? Thanks.
%conn;
%conxn(P_AU_EDW1_FC_V,fc,lib);
proc sql;
%conxn(&schema., PAT, db);...
quit;
This "means" that your programmer needs to learn how to document code shared or used by others.
&schema refers to a macro variable which would resolve to some text. Where the value is set depends on previous code or environment perhaps. Your shown use implies that at least one use of the macro variable is to pass the first parameter to another macro code block (the %conxn() bit). The documentation for the macro should tell someone what is expected for that first positional parameter.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.