what is the SAS/ACCESS and SAS/CONNECT?
Answer Posted / rao
SAS/Access only process through the data bades like
oracle,sql-server,Ms-Access etc.
SAS/Connect only using Server connection.
| Is This Answer Correct ? | 10 Yes | 4 No |
Post New Answer View All Answers
Name types of category in which SAS Informats are placed?
Enlist the functions performed by sas.
How to limit decimal places for variable using proc means?
Did you used proc test? when?
how can you import .csv file in to sas? : Sas programming
Explain the main difference between the sas procedures and functions? : Sas-administrator
What are the scrubbing procedures in sas?
What are the different operating system platforms in which we can use sas? : sas-grid-administration
how would you create multiple observations from a single observation? : Sas programming
What does the RUN statement do?
How can you limit the variables written to output dataset in data step?
What is the function of Stop statement in a SAS Program?
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.
What are the differences between proc means and proc summary?
In sas, what are the areas that you are most interested in? : sas-grid-administration