MSCEWI4024
Incomplete transformation for Bulk Insert
This is a deprecated version of the SnowConvert documentation, please visit the official site HERE.
Severity
Low
Description
This EWI is added when a BULK INSERT inside a stored procedure was not identified at all, so the dependencies for the complete transformation will not be generated. Also the transformed COPY INTO retrieves the file from a tempStage that needs to be created manually.
Code Example
Input Code:
CREATE PROCEDURE BULK_PROC2
AS
BULK INSERT dbo.table1 FROM 'E:\test.txt'
WITH
(
FIELDTERMINATOR ='\t',
ROWTERMINATOR ='\n'
);
GOOutput Code:
Recommendations
Create a STAGE and a FILE FORMAT manually in order to retrieve the file.
If you need more support, you can email us at [email protected]
Last updated
