SSC-FDM-TS0007
FOR REPLICATION clause does not exist in Snowflake.
Description
This message is shown when SnowConvert finds a procedure with a FOR REPLICATION clause. This is not supported in Snowflake, so it is removed.
This clause specifies that the procedure is created for replication. Consequently, it can't be executed on the Subscriber.
Code Example
Input Code:
CREATE PROCEDURE SelectAllCustomers
WITH FOR REPLICATION
AS
BEGIN
SELECT * FROM Customers;
END;Output Code:
Recommendations
No additional user actions are required.
If you need more support, you can email us at [email protected]
Last updated
