MOLAP, ROLAP, and HOLAP are different storage modes in SQL Server Analysis Services (SSAS). MOLAP stores aggregated data and source data in a multidimensional structure for fast queries. ROLAP stores aggregations in indexed views in the relational database, while HOLAP combines MOLAP and ROLAP by storing aggregations in a multidimensional structure but not source data. Queries against aggregated data are faster with MOLAP and HOLAP, while ROLAP is slower but uses less storage.