--Create TableCREATE TABLE jsdateudf_table( col1 DATE );--Create ProcedureCREATE OR REPLACE PROCEDURE jsdateudf_proc ( par1 DATE )ISBEGIN INSERT INTO jsdateudf_table VALUES(par1);END;--Insert DateCALL jsdateudf_proc('20-03-1996');--SelectSELECT * FROM jsdateudf_table;
Take into consideration that Oracle DATE contains an empty TIMESTAMP (00:00:00.000), while Snowflake DATE does not. SnowConvert allows transforming DATE to TIMESTAMP with the flag.