Share via


PredictorServiceSiteAdmin.RenameModelConfig

Ee811314.c++_on(en-US,CS.10).gifEe811314.vb_off(en-US,CS.10).gif

Use this method to rename a model configuration.

Definition

Sub RenameModelConfig(sOldModelConfigName As String,sNewModelConfigName As String)

Parameters

sOldModelConfigName

A String that contains the old model configuration name.

sNewModelConfigName

A String that contains the new model configuration name.

Return Values

None.

Error Values

This method sets the Number property of the global Err object to S_OK (&H00000000) to indicate success and to standard COM 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. In particular, the Description property may contain 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.

Example

oPredictorServiceSiteAdmin.RenameModelConfig "ModelConf1", "ModelConf2"

See Also

PredictorServiceAdmin Object

PredictorServiceSiteAdmin Object

PredModelBuilder Object


All rights reserved.