SSC-EWI-TD0053
Snowflake does not support the period datatype, all periods are handled as varchar instead
Some parts in the output code are omitted for clarity reasons.
Precision of generated varchar representations
PERIOD_UDF generates the varchar representation of a period using the default formats for timestamps and time specified in Snowflake, this means timestamps will have three precision digits and time variables will have zero, because of this you may find that the results have a higher/lower precision from the expected, there are two options to modify how many precision digits are included in the resulting string:
Use the three parameters version of PERIOD_UDF: This overload of the function takes the
PRECISIONDIGITS
parameter, an integer between 0 and 9 to control how many digits of the fractional time part will be included in the result. Note that even if Snowflake supports up to nine digits of precision the maximum in Teradata is six. Example:
Call | Result |
|
|
|
|
|
|
Alter the session parameters
TIMESTAMP_NTZ_OUTPUT_FORMAT
andTIME_OUTPUT_FORMAT
: The commandsALTER SESSION SET TIMESTAMP_NTZ_OUTPUT_FORMAT = <format>
andALTER SESSION SET TIME_OUTPUT_FORMAT = <format>
can be used to modify the formats Snowflake uses by default for the current session, modifying them to include the desired number of precision digits changes the result of future executions of PERIOD_UDF for the current session.
Example code
Input code:
Output code:
Recommendations
Since the behavior of
PERIOD
and its related functions is emulated using varchar, we recommend reviewing the results obtained to ensure its correctness.If you need more support, you can email us at snowconvert-support@snowflake.com
Last updated