这一篇我们来看看如何在存储过程中访问当前的上下文,例如当前在哪个数据库,哪个服务器等等

SSAS : 使用.NET为SSAS编写自定义程序集(三)_程序集

首先,需要添加引用

SSAS : 使用.NET为SSAS编写自定义程序集(三)_存储过程_02

需要注意,如果你的机器安装了多个SQL Server的版本,一定要找到正确的目录.下面这个目录是SQL Server 2005的

SSAS : 使用.NET为SSAS编写自定义程序集(三)_程序集_03

修改代码如下

using System;

using System.Collections.Generic;

using System.Text;

using Microsoft.AnalysisServices.AdomdServer;

namespace SSASStoreProcedure

{

    public partial class StoredProcedures

    {

        /// <summary>

        /// 这个方法用来添加一个前缀

        /// </summary>

        /// <param name="input"></param>

        /// <returns></returns>

        public static string AddPrefix(string prefix,string input)

        {

            return string.Format("{0}:{1}", prefix, input);

        }

        public static string AddServerName(string input)
        {
            string servername = Context.CurrentServerID;
            return string.Format("{0}:{1}", servername, input);

        }

    }

}

然后,部署程序集,用以下脚本测试

WITH MEMBER [Measures].[TestMember]

AS

SSASStoreProcedure.AddServerName([Measures].[Total Sales Amount]/[Measures].[Total Product Cost])

SELECT [Customer].[Gender].Members ON 0,

{[Customer].[Education].CHILDREN}*{[TestMember],[Measures].[Total Sales Amount],[Measures].[Total Product Cost]} ON 1

FROM [Analysis Services Tutorial]

SSAS : 使用.NET为SSAS编写自定义程序集(三)_程序集_04

 

需要注意的是:

这个Context对象,在SQL Server 2008中有些改进,包含了CurrentConnection对象和Server对象.

​Context​​ 类具有两个新增属性:

  • 这里可以得到当前用户的信息,那样就更强大了


本文由作者:陈希章 ​

本文版权归作者所有,可以转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。