what are different type of sas servers ? On which server
does the sas code execute ?

Answer Posted / dvsr

SPDS server (Scalable performance data server)is one of the
server to Execute the SAS code.
SPDS has different components
1.SPDS services
2.Meta data server
3.ConnectServer
4.ShareServer
5.ObjectSpawners

Feel free To add more if I missed any thing ….:)

Is This Answer Correct ?    1 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is star schema? : Sas-di

842


Explain append procedure?

829


Describe the function and untility of the most difficult SAS macro that you have written.

1929


What is slibref?

949


Do you know the features of sas?

802


How does the internal authentication work in sas? : sas-grid-administration

823


what are _numeric_ and _character_ and what do they do? : Sas programming

877


What is a pdv and what are its functions?

789


What can you learn from the SAS log when debugging?

1111


how does sas handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, procs? : Sas programming

825


If you could design your ideal job, what would it look like?

2672


What do the PUT and INPUT functions do?

996


How do dates work in sas?

852


What is proc sort?

898


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.

2022