问题描述
您好,
有人可以向我解释一下Update Service在Analysis Service Tabular API中对数据库的作用吗?我目前正在尝试以编程方式在我的Analysis Services实例中创建分区,并且我试图尽可能多地减少
的过程。我真的不明白更新功能实际上在做什么以及何时应该使用它。将所有分区添加到模型中的不同表后,是否可以在流程结束时调用此方法?或者,每次向表中添加分区时,是否有
来调用此方法?
Can someone please explain to me what the Update function does in the Analysis Service Tabular API for databases? I am currently trying to create partitions in my Analysis Services instance programmatically and I am trying to shave as much time off the process as possible. I am not really understanding what the update function is actually doing and when I should use it. Can I call this method at the end of my process after I have added all my partitions to the different tables in my models? Or do I have to call this method every time I add a partition to a table?
这是API的链接:
https://docs.microsoft.com/en-us/dotnet/api/microsoft.analysisservices.tabular.database?view=sqlserver-2016
https://docs.microsoft.com/en-us/dotnet/api/microsoft.analysisservices.tabular.database?view=sqlserver-2016
提前谢谢。 ;
Thank you in advance.
推荐答案
更新功能:使用默认值更新当前对象的服务器定义为实际值,以更新相关对象和指定选项,以更新相关的
对象并报告操作中的任何警告。
简单的单词:Update语句更改了表格中一个或多个记录的数据。
有关详细信息,请参阅" MajorObject.Update
方法"。
For more details, refer "MajorObject.Update Method".
希望这会有所帮助。
这篇关于更新功能的说明的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!