SSC-FDM-OR0031
The error logging clause in DML statements is not supported by Snowflake
Description
Example Code
Input Code:
MERGE INTO people_target pt
USING people_source ps ON (pt.person_id = ps.person_id)
WHEN MATCHED THEN UPDATE
SET pt.first_name = ps.first_name,
pt.last_name = ps.last_name,
pt.title = ps.title
LOG ERRORS;Output Code:
Recommendations
Last updated
