Oracle PL/SQL/Date Timezone/DBTIMEZONE

Материал из SQL эксперт
Перейти к: навигация, поиск

Determine the database time zone:

   
SQL> select dbtimezone from dual;

DBTIME
------
+00:00
1 row selected.
SQL>
SQL>
SQL>



Get database time zone using the DBTIMEZONE() function

 
SQL>
SQL> --Get database time zone using the DBTIMEZONE() function:
SQL>
SQL> SELECT DBTIMEZONE FROM dual;
DBTIME
------
+00:00
SQL>