_DTSPredictor::get_NumRetries, put_NumRetries Property [C++]

The NumRetries property contains the number of retry attempts to be made that will be made after a Predictor model build failure.

Definition

[C++]

Get method:

HRESULT _DTSPredictor::get_NumRetries(
long NumRetries
);

Put method:

HRESULT _DTSPredictor::put_NumRetries(
long NumRetries
);

[Visual Basic]

Property NumRetries() As Long

Parameters

NumRetries[C++]

[in] When putting the property, a long that contains the number of retry attempts that will be made after a Predictor model build failure.
[out,retval] When getting the property, a long that contains the number of retry attempts that will be made after a Predictor model build failure.

None.[Visual Basic]

[C++]

Return Values

These methods return an HRESULT indicating whether they completed successfully. See the Error Values section for more details.

Error Values

[C++] These methods return 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.

[Visual Basic] This property 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.

Remarks

If the NumRetries property is set to 0, no retry attempt will be made. The minimum number of retry attempts is 0, and the maximum number of retry attempts is 255. The default value is 10.

See Also

Scripting the Model Builder DTS Task

[C++]

_DTSPredictor::get_ArchiveType, put_ArchiveType

_DTSPredictor::get_CustomRename, put_CustomRename

_DTSPredictor::CustomTask_Execute

_DTSPredictor::get_DWConnStr, put_DWConnStr

_DTSPredictor::get_ModelCfgName, put_ModelCfgName

_DTSPredictor::get_ModelName, put_ModelName

_DTSPredictor::PersistPropertyBag_Load

_DTSPredictor::PersistPropertyBag_Save

_DTSPredictor::get_RetryInterval, put_RetryInterval

_DTSPredictor::get_SourceName, put_SourceName

_DTSPredictor::get_SourceType, put_SourceType

_DTSPredictor::get_Version, put_Version

[Visual Basic]

DTSPredictor.ArchiveType

DTSPredictor.CustomRename

DTSPredictor.CustomTask_Execute

DTSPredictor.DWConnStr

DTSPredictor.ModelCfgName

DTSPredictor.ModelName

DTSPredictor.PersistPropertyBag_Load

DTSPredictor.PersistPropertyBag_Save

DTSPredictor.RetryInterval

DTSPredictor.SourceName

DTSPredictor.SourceType

DTSPredictor.Version

Copyright © 2005 Microsoft Corporation.
All rights reserved.