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
Name few SAS functions?
What are the different versions of sas that you have used until now? : sas-grid-administration
I have a dataset concat having variable a b & c. How to rename a b to e & f?
How do you use the do loop if you don’t know how many times you should execute the do loop?
Mention what is SAS data set?
what techniques and/or procs do you use for tables? : Sas programming
AE datasets names? how many types?
What are the best sas programming practices for handling very large datasets? : sas-grid-administration
Which are the statements whose placement in the data step is critical?
What are the statements in proc sql?
What are the uses of sas?
What are the ways to do a “table lookup” in sas?
What is the role of unrestrictive users? : sas-grid-administration
what are the types of interactive display types? : Sas-bi
What are the automatic variables for macro? : sas-macro