what is the difference between DUPKEY and NODUPKEY???
Answer Posted / naveenkumar
Nodupkey eliminates duplicate observations using the
variables which we pass at by statement
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
What are SAS/ACCESS and SAS/CONNECT?
how can you create zero observation dataset? : Sas programming
why is sas data integration studio important? : Sas-di
Which command is used to save logs in the external file?
how does sas handle missing values in functions? : Sas programming
Differentiate between ceil and floor functions.
explain the function of substr in sas? : Sas-administrator
Explain the use of proc print and proc contents?
explain the difference between alternate key, business key, foreign key, generated key, primary key, retained key and surrogate key ? : Sas-di
what do the sas log messages "numeric values have been converted to character" mean? What are the implications? : Sas programming
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.
name the scheduler for scheduling job and explain the scheduler? : Sas-di
what are the types of interactive display types? : Sas-bi
Give an example where SAS fails to convert character value to numeric value automatically?
what are the categories that sas informats are used to the place the data? : Sas-administrator