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 the difference between the sas data step and sas procs?
Describe crosslist option in tables statement?
what are the scrubbing procedures in sas? : Sas programming
What are pdv and it functions?
Hi, Does anybody has lastest SAS certification(base, adv., clinical)dumps,if anybody has please email me at mailtorajani76@gmail.com. Thanks
What is the function of output statement in a SAS Program?
Give some examples where proc report’s defaults are different than proc print’s defaults?
what is intially documentation in sas?
What is SAS? What are the functions does it performs?
what do the sas log messages "numeric values have been converted to character" mean? : Sas programming
what is ae onset date n what is RDS
what is snowflake schema? : Sas-di
what is transformation in sas data integration? : Sas-di
Tell me about % include and % eval? : sas-macro
how does sas handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, procs? : Sas programming