使用ADOMD XMLReader从SSAS多维数据集获取数据

时间:2013-04-09 03:30:18

标签: c# asp.net cube ssas-2008 adomd.net

我有一个多维数据集,我正在尝试使用以下代码检索数据。我不知道查询将返回的列数和行数。 我只想读取每行的每个列的值。

void OutputDataWithXML()
        {
            //Open a connection to the local server.
            AdomdConnection conn = new AdomdConnection("Data Source=localhost");
            conn.Open();

            //Create a command to retrieve the data.
            AdomdCommand cmd = new AdomdCommand(@"WITH MEMBER [Measures].[FreightCostPerOrder] AS 
[Measures].[Reseller Freight Cost]/[Measures].[Reseller Order Quantity],  
FORMAT_STRING = 'Currency'

SELECT [Geography].[Geography].[Country].&[United States].Children ON ROWS, 
[Date].[Calendar].[Calendar Year] ON COLUMNS
FROM [Adventure Works]
WHERE [Measures].[FreightCostPerOrder]", conn);

            //Execute the command, retrieving an XmlReader.
            System.Xml.XmlReader reader = cmd.ExecuteXmlReader();

            **// How to get the values form each column here ????
    // I just want to read value of each column going over each row**
            Console.WriteLine(reader.ReadOuterXml());

            //Close the reader, then the connection
            reader.Close();
            conn.Close();

            //Await user input.
            Console.ReadLine();
        }

以下链接说明从SSAS多维数据集中检索数据的最快方法是XMLReader

http://msdn.microsoft.com/en-us/library/ms123479(v=sql.105).aspx

1 个答案:

答案 0 :(得分:0)

获得XmlReader之后,您可能希望获得一个CellSet来读取数据和元数据。

参见https://technet.microsoft.com/en-us/library/ms123476(v=sql.110).aspx 在“检索处于断开状态的数据”部分

string DemonstrateDisconnectedCellset() {
//Create a new string builder to store the results
System.Text.StringBuilder result = new System.Text.StringBuilder();

//Connect to the local server
using (AdomdConnection conn = new AdomdConnection("Data Source=localhost;"))
{
    conn.Open();

    //Create a command, using this connection
    AdomdCommand cmd = conn.CreateCommand();
    cmd.CommandText = @"
                  WITH MEMBER [Measures].[FreightCostPerOrder] AS 
                        [Measures].[Reseller Freight Cost]/[Measures].[Reseller Order Quantity],  
                        FORMAT_STRING = 'Currency'
                  SELECT 
                        [Geography].[Geography].[Country].&[United States].Children ON ROWS, 
                        [Date].[Calendar].[Calendar Year] ON COLUMNS
                  FROM [Adventure Works]
                  WHERE [Measures].[FreightCostPerOrder]";


    //Execute the query, returning an XmlReader
    System.Xml.XmlReader x = cmd.ExecuteXmlReader();

    //At this point, the XmlReader could be stored on disk,
    //transmitted, modified, cached, or otherwise manipulated

    //Load the CellSet with the specified XML
    CellSet cs = CellSet.LoadXml(x);

    //Now that the XmlReader has finished being read
    //we can close it and the connection, while the
    //CellSet can continue being used.
    x.Close();
    conn.Close();

    //Output the column captions from the first axis
    //Note that this procedure assumes a single member exists per column.
    result.Append("\t");
    TupleCollection tuplesOnColumns = cs.Axes[0].Set.Tuples;
    foreach (Tuple column in tuplesOnColumns)
    {
        result.Append(column.Members[0].Caption + "\t");
    }
    result.AppendLine();

    //Output the row captions from the second axis and cell data
    //Note that this procedure assumes a two-dimensional cellset
    TupleCollection tuplesOnRows = cs.Axes[1].Set.Tuples;
    for (int row = 0; row < tuplesOnRows.Count; row++)
    {
        result.Append(tuplesOnRows[row].Members[0].Caption + "\t");
        for (int col = 0; col < tuplesOnColumns.Count; col++)
        {
            result.Append(cs.Cells[col, row].FormattedValue + "\t");
        }
        result.AppendLine();
    }

    return result.ToString();
} // using connection
}
相关问题