What is the difference between nodup and nodupkey options?

Answer Posted / san

NODUP option eliminates the duplicate observations.


NODUPKEY eliminates the duplicate observation keys in the
data set.

Is This Answer Correct ?    19 Yes 27 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between one to one merge and match merge? Give an example.

672


Describe a time when you were really stuck on a problem and how you solved it?

2287


What do you know about symput and symget?

836


what is enterprise guide? What is the use of it? : Sas programming

625


How to import multiple xls files into sas. Out of those files, how to get different values from a single variable and how to find number of rows per value type? We can do this using group by for one xls file with proc sql. Was wondering how I can achieve this for multiple files at the same time. Any ideas?

2470






what are the best practices to process the large data sets in sas programming? : Sas-administrator

634


data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.

1914


What is the difference between INPUT and INFILE ?

863


What are the limitations for memory allocation for SAS variables

1022


what is sas olap server? : Sas-di

815


what is a method for assigning first.var and last.var to the by groupvariable on unsorted data? : Sas programming

657


How to convert a numeric variable to a character variable?

721


If a variable contains only numbers, can it be a character data type?

725


what are input dataset and output dataset options? : Sas programming

664


What is the length assigned to the target variable by the scan function?

772