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
what is star schema? : Sas-di
Explain append procedure?
Describe the function and untility of the most difficult SAS macro that you have written.
What is slibref?
Do you know the features of sas?
How does the internal authentication work in sas? : sas-grid-administration
what are _numeric_ and _character_ and what do they do? : Sas programming
What is a pdv and what are its functions?
What can you learn from the SAS log when debugging?
how does sas handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, procs? : Sas programming
If you could design your ideal job, what would it look like?
What do the PUT and INPUT functions do?
How do dates work in sas?
What is proc sort?
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.