what is SAS ACCESS AND SAS CONNECT ? Give an example and
data statements used.
Answer Posted / raju v
SAS/CONNECT software is a SAS client/server toolset that
provides scalability
through parallel SAS processing. SAS/CONNECT provides users
and applications
developers the ability to manage, access, and process data
in a distributed and parallel
environment
SAS/ACCESS engines provide seamless and transparent
read/write/update access to more than 60 data sources,
including relational and nonrelational databases
Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
What is Linear Regression?
Briefly explain input and put function?
Explain the purpose of substr functions in sas programming.
How would you code a macro statement to produce information on the sas log? This statement can be coded anywhere? : sas-macro
What are the statements that are executed only?
What do the SAS log messages "numeric values have been converted to character" mean?
Describe 5 ways to do a “table lookup” in SAS?
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 can you create a macro variable with in data step? : sas-macro
what is the function of catx syntax? : Sas-administrator
is data integration and etl programming is same? : Sas-di
What is maximum storage capability of SAS?
How to specify variables to be processed by the freq procedure?
Mention the difference between ceil and floor functions in sas?
what is the use of proc sql? : Sas programming