How to write duplicate records into a separate dataset using
sort?
Answer Posted / vimal
PROC SORT DATA=data_a DUPOUT=dup_data
NODUPKEY
OUT=nodup_data;
BY x;
RUN;
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
what are sas/access and sas/connect? : Sas programming
What is the difference between %put and symbolgen? : sas-macro
What are the ways in which macro variables can be created in sas programming?
Describe the function and untility of the most difficult SAS macro that you have written.
Name validation tools used in SAS
What is the role of administrative users? : sas-grid-administration
What are the data types that sas contain?
Are you sensitive to code walk-throughs peer review or QC review?
What areas of SAS are you most interested in?
what is sas enterprise intelligence architecture? : Sas-bi
What is the difference between the proc sql and data step?
explain the use of % includes a statement in sas? : Sas-administrator
How do you add a number to a macro variable? : sas-macro
How can I remove header from output data set?
How to limit decimal places for the variable using proc means?