Alter Session

In this page you could find information about Session.

Alter session

Alter session has an equivalent in Snowflake and some the variables are mapped to Snowflake variables. If a permutation of Alter Session is not supported the node will be commented and a warning will be added.

Oracle Code:

IN -> Oracle_01.sql
alter session set nls_date_format = 'DD-MM-YYYY';

Snowflake Code:

OUT -> Oracle_01.sql
ALTER SESSION SET DATE_INPUT_FORMAT = 'DD-MM-YYYY' DATE_OUTPUT_FORMAT = 'DD-MM-YYYY';

Session Parameters Reference

The session parameters that doesn't appear in the table are not currently being transformed.

Session ParameterSnowflake transformation

NLS_DATE_FORMAT

DATE_INPUT_FORMAT and DATE_OUTPUT_FORMAT

NLS_NUMERIC_CHARACTERS

NOT SUPPORTED

Last updated