what is the difference between SET and MERGE?

Answer Posted / kumaraswamy maduri

Answer 4 is the perfect one.

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

I am preparing SAS Certified Advanced Programmer for SAS 9 in 2014. If anybody has the latest dumps for this exam, please mail me at dhiman.mukherjee@gmail.com

2261


Give some examples where proc report’s defaults are same as proc print’s defaults?

637


what is function of retain statment

1522


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?

2381


Do you know the features of sas?

592






What is auto call macro and how to create a auto call macro? What is the use of it? How to use it in sas with macros? : sas-macro

576


what is the difference between infile and input? : Sas-administrator

603


Can you explain the process of calendar?

638


What is the difference between the proc sql and data step?

660


How can sas program be validated?

575


Hi Jeevan/Akshara I have tried to contact SASI Vats for latest Advanced SAS Programming Certification Dumps (A00-212) but have not got any response. I would highly and gratefully appreciate your assistance in this regard. If you guys have access to this, would you be kind enough to forward it to me ? I would abide by all the terms you have for this. Please, note my email id: upretigopi@yahoo.com Preti Sharma

3056


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.

1795


describe how to adjust the performance of data integrator? : Sas-di

561


How to include or exclude specific variables in a data set?

641


how to remove duplicates using proc sql?

622