Generate offline OLAP cube programmatically without SSAS -


i wondering how can generate olap cube programmatically in c# using relational datasource without using analysis services. concrete example (something couldnt find anywhere on net.)would appreciated lot.

you can programmatically create cube using c# , analysis management objects amo:

        // create adventure works cube         cube cube = db.cubes.findbyname("adventure works");         if (cube != null)            cube.drop();         db.cubes.add("adventure works"); 

Comments