what is OLAP?

Answer Posted / raju

stands for online analytical programming which is used to
summarize the data.

Is This Answer Correct ?    4 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

In SAS explain which statement does not perform automatic conversions in comparisons?

801


what are 5 ways to perform a table lookup in sas? : Sas-administrator

763


What are the new features included in the new version of SAS Programming Language?

737


What sas features do you use to check errors and data validation?

692


Will it bother you if the guy at the next desk times the frequency and duration of your bathroom or coffee breaks on the grounds that ?you are getting paid twice as much as he is??

2096






what is sas business intelligence? : Sas-bi

588


What are the parameters of scan function?

620


How you are maintaining sas programmes in your company...any specific version control software you are using? If so, tell me the name?

1580


What are the prime responsibilities of data integration administrator? : Sas-di

589


for what purpose would you use the retain statement? : Sas programming

584


If money were no object, what would you like to do?

2691


Mention common programming errors committed in sas ?

647


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.

1801


What is the basic syntax style in SAS?

619


What is the difference between order and group variable in proc report?

841