0xC0204006
Last changed: DarrenSQLIS

.

Failed to set property "%1!s!" on "%2!s!". The property could not be set for an unknown reason.

Constant DTS_E_FAILEDTOSETPROPERTY
HRESULT 0xC0204006
Error -1071628282
Code 16390
Facility Component (DTS_FACILITY_COMPONENT)
Severity Error (DTS_SEVERITY_ERROR)

Community Notes

Examples of this error can be seen when calling SetComponentProperty method of CManagedComponentWrapper, such as when building the Data Flow programmatically. Causes for this are usually simple mistakes when programming for example:

 ...
 IDTSComponentMetaData90 component = dataFlow.ComponentMetaDataCollection.New();
 component.ComponentClassID = "...";
  CManagedComponentWrapper instance = component.Instantiate();
 instance.ProvideComponentProperties();
 instance.SetComponentProperty("Rows", rows);
 ...
 Could not set the property value:
 Error at DFT Fuzzy Lookup [FZL Fuzzy Lookup [1015]]: 
   The MinSimilarity threshold property on the Fuzzy Lookup transformation must be 
   a value greater than or equal to 0.0 but less than 1.0.

ComponentErrorCodes