作者:萝莉控穿大鞋的胖胖 | 来源:互联网 | 2023-09-13 20:38
这一篇我们来看看如何在存储过程中访问当前的上下文,例如当前在哪个数据库,哪个服务器等等首先,需要添加引用需要注意,如果你的机器安装了多个SQLServer的版本,一定要找到正确的
这一篇我们来看看如何在存储过程中访问当前的上下文,例如当前在哪个数据库,哪个服务器等等
首先,需要添加引用
需要注意,如果你的机器安装了多个SQL Server的版本,一定要找到正确的目录.下面这个目录是SQL Server 2005的
修改代码如下
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.AnalysisServices.AdomdServer;
namespace SSASStoreProcedure
{
public partial class StoredProcedures
{
///
/// 这个方法用来添加一个前缀
///
///
///
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]
需要注意的是:
这个Context对象,在SQL Server 2008中有些改进,包含了CurrentConnection对象和Server对象.
Context 类具有两个新增属性:
- Server,对新增服务器对象的只读引用。
- CurrentConnection,对新增 AdomdConnection 对象的只读引用。