if you were told to create many records from one record, show how you would do this using array and with proc transpose? : Sas programming
No Answer is Posted For this Question
Be the First to Post Answer
What is your favorite all time computer book? Why?
how sas deals with business intelligence? : Sas-bi
Name types of category in which SAS Informats are placed?
Hi Friends, My name is Priya,am new to this Forum. am looking for SAS Platform Administration Interview Questions.I searched every where but I couldn't find any where.please can anyone help me with the FAQ's. It would be a great favor to me if you can email the Interview Questions to priyafeb84@gmail.com
How do you write a test plan?
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.
How do you add a number to a macro variable?
You need to create an In List that it is to be later used in a Where Clause that includes all the Regions that begin with the letter A from the sashelp.shoes table. Using PROC SQL with an into clause create the following string from the sashelp.shoes table using the variable region “AFRICA”,”ASIA”,…..
how does sas handle missing values in a merge? : Sas programming
In the SAS Data step what is the difference between the subsetting done by Where and subsetting done by If?
What is instream data in SAS?
Which of the following is not created during compilation phase?