Oracle PL/SQL/Date Timezone/DBTIMEZONE — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 10:01, 26 мая 2010
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>