What are the functions done while Compilation...?
Answer / saifudheen
first of all data will be available on input stack...Once program reaches the input stack,SAS transforms the stream of characters into indivdual tokens..these tokens are transferred into diffrent parts of SAS for processing such as datastep compiler and the macro processor...The process that SAS uses to extract words and symbols from the input stack is called TOKENIZATION .Tokenization is performed by a compnent of SAS called WORD SCANNER..The word scanner starts the first character in the input stack and examines each character in turn..then it will be analysed by datastep compiler untill it reaches the end of the datastep(run statement)..data step compiler and SCL compiler transforms this output into DISPLAY MANAGER...
| Is This Answer Correct ? | 5 Yes | 1 No |
How to do user inputs and command line arguments in SAS? D&B
How do you specify the number of iterations and specific condition within a single do loop?
what is the diff b/w verification validation in sas
How would you delete observations with duplicate keys?
what is the diff. b/w proc means and proc summary?
How could you generate test data with no input data?
How experienced are you with customized reporting and use of Data _Null_ features?
What is the role of sas grid administrator? : sas-grid-administration
which stats created by proc means that are not created by proc summary or vice versa?
what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming
What are the prime responsibilities of data integration administrator? : Sas-di
How do I CREATE an external dataset with sas code? I would like to create within a sascode a non-exsistent textfile on the host. So I am not forced to create the file befor filling it.