所以我已经安装了AMO并创建了以下控制台应用程序:
using System;
using Microsoft.AnalysisServices;
using Microsoft.AnalysisServices.Tabular;
namespace procesarCuboSSAST
{
class Program
{
static void Main(string[] args)
{
try
{
string ConnectionString = "Data source=SERVER\\BI";
using (Microsoft.AnalysisServices.Tabular.Server server = new Microsoft.AnalysisServices.Tabular.Server())
{
server.Connect(ConnectionString);
Microsoft.AnalysisServices.Tabular.Database Db = server.Databases["TestModel"]; //Connect to the DB
Model m = Db.Model;
m.RequestRefresh(Microsoft.AnalysisServices.Tabular.RefreshType.Full);
m.SaveChanges();
}
Console.WriteLine("Press Enter to close this console window.");
Console.ReadLine();
}
catch (Exception e)
{
Console.Write(e.Message.ToString());
Console.WriteLine("Press Enter to close this console window.");
Console.ReadLine();
}
}
}
}
但是,我收到错误消息:“对象引用未设置为对象的实例”
我可以使用以下方式正确列出SSAS实例中的数据库和模型
foreach (Database db in server.Databases)
{
Console.WriteLine("Properties for database {0}:", db.Name);
...
我的服务器是SSAS 2014 Enterprise(表格)(12.0.5000.0)
答案 0 :(得分:0)
您要处理的表格模型是什么兼容性级别? Model
类仅适用于1200或更高级别的表格模型。 Database
类可让您以较低的兼容性级别查看模型,但不能修改它们,这就是为什么您可以在实例上列出SSAS数据库而不处理它们的原因。下面的链接包含有关这些类的其他详细信息。