What are symbol tables?Differemce between Local N Global
Symbol tables.....
Answers were Sorted based on User's Feedback
Answer / chetan
Symbol table is save the Macro varibale list.
Local symobl table save the local macro varibale &
Global symbol table save the global macro varibale.
| Is This Answer Correct ? | 8 Yes | 3 No |
Macro variables are stored in symbol tables, which list the
macro variable name and its value. There is a global symbol
table, which stores all global macro variables. Local macro
variables are stored in a local symbol table that is
created at the beginning of the execution of a macro.
| Is This Answer Correct ? | 3 Yes | 3 No |
What are the ways in which macro variables can be created in sas programming?
what are input dataset and output dataset options? : Sas programming
What is the role of unrestrictive users? : sas-grid-administration
What are SAS/ACCESS and SAS/CONNECT?
If reading a variable length file with fixed input, how would you prevent SAS from reading the next record if the last variable didn?t have a value?
i have a dataset with 100000 records. i want 100 records from that dataset and create a dataset.we need to pick the observations random order like 100obs,500obs,1020obs,1890obs,2565obs like that i need 100 obs in random order? how can we create this one?
how to intersect the tables by using PROC MIXED?
Why is a STOP statement needed for the point=option on a SET statement?
Does SAS ‘Translate’ (compile) or does it ‘Interpret’? Explain.
There are 200 observations in a dataset, i want to pull out the observation no's 100, 150,180,190 by using Proc SQL? How you can get it?
How do you debug macros?
If you use a symput in a data step, when and where can you use the macro variable? : sas-macro