IPredictorServiceSiteAdmin::RenameModelConfig

Ee784332.c++_off(en-US,CS.10).gifEe784332.vb_on(en-US,CS.10).gif

Use this method to rename a model configuration.

Definition

HRESULT IPredictorServiceSiteAdmin::RenameModelConfig(BSTRsOldModelConfigName,BSTRsNewModelConfigName);

Parameters

sOldModelConfigName

[in] A BSTR that contains the old model configuration name.

sNewModelConfigName

[in] A BSTR that contains the new model configuration name.

Return Values

This method returns an HRESULT indicating whether or not it completed successfully. See the following Error Values section for more details.

Error Values

This method returns S_OK (0x00000000) to indicate success and standard COM HRESULT error values to indicate failure. For more information about standard COM errors, see Standard COM Errors. Additional information may be available using the global Err object, which can be accessed using the API function GetErrorInfo. In particular, the GetDescription method of the IErrorInfo interface may return a text description of the error.

The following standard COM error value has a particular meaning in the context of this method.

E_FAIL

A model configuration with the old name could not be found, or a model configuration with the new name already exists.

Remarks

The name change is made to the model configuration entry in the PredictorModelCfgs table in the Data Warehouse.

Use the slModelsConfigs property of the PredictorServiceAdmin object to retrieve a list of the model configurations. Use the RenameModel method to rename a model.

Passing an empty string for the model configuration name will result in an invalid argument error.

Connect to the Data Warehouse using the Init method before calling the RenameModelConfig method.

For more information about memory ownership issues related to COM property and method parameters, see Managing COM Parameter Memory.

See Also

PredictorServiceAdmin Object

PredictorServiceSiteAdmin Object

PredModelBuilder Object


All rights reserved.