Describe the function and untility of the most difficult
SAS macro that you have written.
how can u convert this 25-jul-2010 from numeric to charcter?
What are the ways to do a “table lookup” in sas?
What Proc glm does?
How do you add a number to a macro variable?
Is the physical structure of the data set in the same orientation as the report? Do you need to reshape the data sets? What method should you use to reshape the data–DATA steps,PROC TRANSPOSE,output data set from a procedure?
Which statement does not perform automatic conversions in comparisons?
Mention what are the data types does SAS contain?
what is SAS/Access and SAS/Connect?what are the uses?
calculate the sum of value using only DATA STEP. data count_; input year name $ value; cards; 2006 xxx 10 2007 yyy 12 2006 xxx 20 2008 yyy 15 2007 xxx 15 ; out put should be like this year name T_value ----------------------- 2006 xxx 30 2007 xxx 15 2007 yyy 12 2008 xxx 15
HOW MANY WAYS YOU CAN RETRIEVE THE DATA FROM ORACLE TABLES? WHAT IS ORACLE CLINICAL? HOW IT IS USEFUL?
3 Answers Accenture, Novartis,
i have one dataset data l; input name: $ 25; cards; manoj is a good boy to krishna krishna is a god boy to malli malli is good boy to ramana ques: here i want "manoj" observations nubers
What is the function of output statement in a SAS Program?