Update (clsServer)

[!附註]

  下一版的 Microsoft SQL Server 將不再提供此功能。請勿在新的開發工作中使用此功能,並且儘速修改使用此功能的應用程式。

The Update method of an object of ClassType clsServer updates an object definition in the metadata repository. This method must be called after any attribute for the server object has been changed, or the affected metadata for the changes will not be persistent past the server object scope.

語法

object.Update    

參數

  • object
    An object of ClassType clsServer.

備註

Whenever a write-enabled server property is changed, its metadata in the repository must be updated with this method. Subordinate objects are automatically updated when you update an object that contains other objects, such as a cube that contains partitions, dimensions, and measures.

範例

The following example invokes the Update method after setting the server timeout property:

' Assume dsoServer is connected to Analysis Services.
dsoServer.Timeout = 30 ' = 30 seconds.
dsoServer.Update

請參閱

參考