Does anyone know what is the default value for the default_timezone attribute of the dbms_scheduler? That is, without this value ever being set manually.
For example, on one of my servers, the following statement returns the value 'Europe/Vienna
'.
BEGIN
DBMS_SCHEDULER.get_scheduler_attribute('default_timezone', :VALUE);
END;
/
while /usr/bin/timedatectl
on the server returns
Local time: Do 2023-03-30 13:27:28 CEST
Universal time: Do 2023-03-30 11:27:28 UTC
RTC time: Do 2023-03-30 11:27:27
Time zone: Europe/Berlin (CEST, +0200)
NTP enabled: n/a
NTP synchronized: no
RTC in local TZ: no
DST active: yes
Last DST change: DST began at
So 2023-03-26 01:59:59 CET
So 2023-03-26 03:00:00 CEST
Next DST change: DST ends (the clock jumps one hour backwards) at
So 2023-10-29 02:59:59 CEST
So 2023-10-29 02:00:00 CET
I did not find anything regarding this in the Oracle documentation.