MSCEWI4066

Routine option not supported in Snowflake

Severity

Low

Description

This EWI is added when some of the following routine options is used

  • WITH ENCRYPTION

  • WITH RECOMPILE

  • WITH EXECUTE AS 'specific_username'

  • FOR REPLICATION

Input Code:

CREATE OR ALTER PROCEDURE GetVacationHours
   @Param1 INT,  
   @Param2 INT,
   @Param3 INT,
   @Param4 INT
WITH ENCRYPTION, RECOMPILE, EXECUTE AS 'user_name'
FOR REPLICATION
AS
BEGIN  
   SELECT * FROM Table1;
END

Output Code:

Recommendations

  • No additional user actions are required.

  • If you need more support, you can email us at [email protected]

Last updated