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


Please Help Members By Posting Answers For Below Questions

What is Linear Regression?

888


Briefly explain input and put function?

836


Explain the purpose of substr functions in sas programming.

791


How would you code a macro statement to produce information on the sas log? This statement can be coded anywhere? : sas-macro

795


What are the statements that are executed only?

903


What do the SAS log messages "numeric values have been converted to character" mean?

1107


Describe 5 ways to do a “table lookup” in SAS?

880


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.

2025


How can you create a macro variable with in data step? : sas-macro

775


what is the function of catx syntax? : Sas-administrator

852


is data integration and etl programming is same? : Sas-di

797


What is maximum storage capability of SAS?

1092


How to specify variables to be processed by the freq procedure?

832


Mention the difference between ceil and floor functions in sas?

901


what is the use of proc sql? : Sas programming

785