So I have this pipeline that migrates data from Oracle to Snowflake. There is one column in Oracle that has datatype NUMBER
and I used NUMBER(38, 18)
in Snowflake for it.
My pipeline started failing yesterday because that column in Oracle now has 21 digit numbers which NUMBER(38, 18)
cannot handle in Snowflake. I switched to NUMBER(38, 17)
and it worked for now.
Is there any NUMBER
equivalent in Snowflake so that it can handle any value from Oracle? I cannot possibly change the Oracle table datatype.