What statement do you code to tell SAS that it is to write to an external file? What statement do you code to write the record to the file?
2 10289If reading an external file to produce an external file, what is the shortcut to write that record without coding every single variable on the record?
7 24157If you’re not wanting any SAS output from a data step, how would you code the data statement to prevent SAS from producing a set?
8 21106Have you ever linked SAS code? If so, describe the link and any required statements used to either process the code or the step itself.
2 9752When looking for data contained in a character string of 150 bytes, which function is the best to locate that data: scan, index, or indexc?
2 8429If you have a data set that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variable?
10 20158Code a PROC SORT on a data set containing State, District and County as the primary variables, along with several numeric variables.
7 15959
What Proc glm does?
explain the use of % includes a statement in sas? : Sas-administrator
What is the difference between class statement and by statement in proc means?
for whom is sas data integration studio designed? : Sas-di
what is the difference between unique key and primary key? : Sas-di
What is by-group processing?
How to create a permanent sas data set?
how can you put a "trace" in your program? : Sas programming
Describe the function and utility of the most difficult SAS macro that you have written?
What is the use of %include statement?
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.
Explain what is SAS informats?
Explain proc univariate?
What are the implications?
what is the limit of the number of the rows and columns available in the worksheet? : Sas-bi