It's said in documentation that
You can set values for multiple parameters in the same alter_session_set_clause
but there are no examples how to do it.
I'm trying to make it work with a query:
alter session
set nls_date_language = 'ENGLISH', DDL_LOCK_TIMEOUT = 360;
Maybe there's no way to do it in 19c at all?
It is possible. You just need to use the space as a separator and not a comma(,)
SQL> ALTER SESSION SET NLS_DATE_LANGUAGE = 'ENGLISH' DDL_LOCK_TIMEOUT = 360;
Session altered.
SQL>
Even Newline as a separator works fine.
SQL> ALTER SESSION SET NLS_DATE_LANGUAGE = 'ENGLISH'
2 DDL_LOCK_TIMEOUT = 360;
Session altered.
SQL>
I know that comma can be used as a separator as per the oracle documentation but It is not.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With