Answer Posted / mohan reddy
NODUP OR NODUPREC OPTION IN PROC SORT STATEMENT.
EX;
PROC SORT DATA=EMP NODUP;
RUN;
NODUPKEY OPTION WILL ALSO DELETE THE DUPLICATE OBSERVATION
VALUES.BUT IT CAN USE THE BY VARIABLE.
EX
PROC SORT DATA=EMP NODUPKEY;
BY ENO;
RUN;
| Is This Answer Correct ? | 14 Yes | 1 No |
Post New Answer View All Answers
What is the order of application for output data set options, input data set options and SAS statements?
What is the length assigned to the target variable by the scan function?
What do you know about symput and symget?
What do you code to create a macro? : sas-macro
what is the different between functions and procs that calculate the same simple descriptive statistics? : Sas programming
What is substr function?
how would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable? : Sas programming
Do we follow ADAM in analysis dataset development?How? Usually which version? Why is it necessary?
How do you add a number to a macro variable? : sas-macro
Hi all, If Anybody has Advance SAS Certification dumps??? Please share with me. Email: pramod.kalugade03@gmail.com
What are the difference between sas functions and procedures?
What are the functions used for character handling?
what is star schema? : Sas-di
Explain how you can debug and test your SAS program?
what is function of retain statment