How to create a custom ADO Multi Dimensional Catalog with no database
        Posted  
        
            by Alan Clark
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Alan Clark
        
        
        
        Published on 2010-03-28T21:06:40Z
        Indexed on 
            2010/03/30
            9:03 UTC
        
        
        Read the original article
        Hit count: 436
        
Does anyone know of an example of how to dynamically define and build ADO MD (ActiveX Data Objects Multidimensional) catalogs and cube definitions with a set of data other than a database?
Background: we have a huge amount of data in our application that we export to a database and then query using the usual SQL joins, groups, sums etc to produce reports. The data in the application is originally in objects and arrays. The problem is the amount of data is so large the export can take > 2 hours. So I am trying to figure out a good way of querying the objects in memory, either by a custom OLAP algorithm or library, or ADO MD. But I haven't been able to find an example of using ADO MD without a database behind it.
We are using Delphi 2010 so would use ADO ActiveX but I imagine the ADO.NET MD is similar. I realize that if the application data was already stored in a database the problem would solve itself. Also if Delphi had LINQ capability I could query the objects and arrays that way.
© Stack Overflow or respective owner