RawFileDestinationWriteOption Enumeration
The RawFileDestinationWriteOption enumeration provides options for how the SQL Server Integration Services Raw File Destination transformation should behave when the output file has the same name as an existing file.
Enumeration Values
Name | Summary |
---|---|
CreateAlways | Specifies that a new file should be created to store the raw file information. If the file already exists, the existing file will be overwritten. |
CreateOnce | Specifies that a new file should be created to store the raw file information. If the file already exists, the component should fail. |
Append | Specifies that the new data will be appended to the end of existing file. |
TruncateAndAppend | Specifies that the existing file will be be truncated and the the new data will be appended to the end of the truncated file. |