Enum TypeSchemaCopyOption
Specifies how a dataflow column, column schema, or row data type is copied or duplicated. Used by TypeDetail.
Also see Dataflow Columns.
Namespace: actionETL
Assembly: actionETL.dll
Syntax
public enum TypeSchemaCopyOption
Fields
| Name | Description |
|---|---|
| CopyChildren | Copy child members of this data type individually. |
| Fail | The data type is unsupported and attempting to use it should raise an error. |
| Ignore | The data type is unsupported in a dataflow row and any attempt to use it should be ignored. Note that other members in the row should still be processed, if they are supported. |
| Shallow | The data type can be shallow copied any number of times, i.e. multi-copy is supported. |
| SingleShallow | The data type supports being shallow copied once, but should raise an error if additional copies are attempted, i.e. multi-copy is not supported. |
| SingleShallowThenDeep | The first copy of this data type should be shallow copied, and subsequent copies should be deep copies. Multi-copy is supported. |