gpt4 book ai didi

java - 我怎样才能在 SAS 9.4 中获得像 OLAPDataSetInterface 这样的对象

转载 作者:行者123 更新时间:2023-11-30 12:02:58 24 4
gpt4 key购买 nike

我需要得到一个类似 OLAPDataSetInterface 的对象,但不使用 OLAP 服务器。

我曾经使用过:

//Connect to OLAP server
OLAPDataSetInterface cube = objectInSession.getOlapDataSet();
//Get the info
cube.execute("query_mdx");

我尝试使用 DataSetInterface 但不起作用:

com.sas.sasserver.dataset.DataSetInterface ds = null;
//Getting my temporary table
ds.setDataSet("WORK.my_table");

然后我做了以下事情:

//BBDD connector

WorkspaceConnector connector = factory.getWorkspaceConnector(0L);
IWorkspace workspace = connector.getWorkspace();
ILanguageService ls = workspace.LanguageService();

//This creates my temporary table in the library WORK (WORK.my_table)
String stmt = "%include \"/saswork/MY_PROGRAM.sas\" ;";
ls.Submit(stmt);

com.sas.sasserver.dataset.DataSetInterface ds = null;
//ds = ...

最佳答案

这是在 C# 中,但应该有助于理解数据集检索过程。我不使用 SAS OLAP,所以无法告诉您如何处理该项目。

    public string GetDataSet(string sasDirectory, string dataset)
{
Common.Log($"Getting SAS dataset ({dataset}) at {sasDirectory}");
DataTable dt = new DataTable(dataset);
try
{
using (var cn = new OleDbConnection($@"Provider=SAS.LocalProvider; Data Source={sasDirectory}"))
{
cn.Open();
var cmd = cn.CreateCommand();
cmd.CommandType = CommandType.TableDirect;
cmd.CommandText = dataset;
var sas = new OleDbDataAdapter(cmd);
var ds = new System.Data.DataSet();
sas.Fill(ds, dataset);
dt = ds.Tables[0];
Common.Log($"SAS dataset loaded.");
}
}
catch (Exception ex)
{
string errMessage = "Unable to get the SAS dataset. Library: " + sasDirectory + ", DataSet: " + dataset + ", " +
ex.TargetSite.Name;
Common.Log($"SAS Error in {MethodBase.GetCurrentMethod().Name}", MessageType.Error, ex);
}
return dt.ToCsv('\t');
}

关于java - 我怎样才能在 SAS 9.4 中获得像 OLAPDataSetInterface 这样的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58075168/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com