Oracle修改時區

不一樣的天空w發表於2018-10-18

Oracle修改時區


1. 首先確認會話時區是否正確,會話時區可能和資料庫時區不一致

SQL> select sessiontimezone from dual;


SESSIONTIMEZONE

---------------------------------------------------------------------------

+08:00


會話時區是北京時區


SQL> select dbtimezone from dual;


DBTIME

------

+00:00


DB是世界時區


SQL> select tz_offset(sessiontimezone), tz_offset(dbtimezone) from dual;


TZ_OFFS TZ_OFFS

------- -------

+08:00  +00:00



2. 檢查資料庫是否有這樣的欄位型別 TIMESTAMP WITH LOCAL TIME ZONE  

SQL> select c.owner || '.' || c.table_name || '(' || c.column_name || ') -'

     || c.data_type || ' ' col

   from dba_tab_cols c, dba_objects o

  where c.data_type like '%WITH LOCAL TIME ZONE'

     and c.owner=o.owner

    and c.table_name = o.object_name

    and o.object_type = 'TABLE'

 order by col

 /


COL

--------------------------------------------------------------------------------

OE.ORDERS(ORDER_DATE) -TIMESTAMP(6) WITH LOCAL TIME ZONE


--檢視時區依賴的表

SQL> select u.name || '.' || o.name || '.' || c.name TSLTZcolumn

   from sys.obj$ o, sys.col$ c, sys.user$ u

  where c.type# = 231

    and o.obj# = c.obj#

    and u.user# = o.owner#;


TSLTZCOLUMN

--------------------------------------------------------------------------------

OE.ORDERS.ORDER_DATE


3. 檢視時區依賴表結構

SQL> desc oe.orders

 Name                                      Null?    Type

 ----------------------------------------- -------- ----------------------------

 ORDER_ID                                  NOT NULL NUMBER(12)

 ORDER_DATE                                NOT NULL TIMESTAMP(6) WITH LOCAL TIME

                                                     ZONE

 ORDER_MODE                                         VARCHAR2(8)

 CUSTOMER_ID                               NOT NULL NUMBER(6)

 ORDER_STATUS                                       NUMBER(2)

 ORDER_TOTAL                                        NUMBER(8,2)

 SALES_REP_ID                                       NUMBER(6)

 PROMOTION_ID                                       NUMBER(6)


4. 檢視時區依賴表資料

SQL> select ORDER_DATE from oe.orders;


ORDER_DATE

---------------------------------------------------------------------------

21-MAR-04 08.18.21.862632 AM

09-JAN-06 12.19.44.123456 PM

09-JAN-06 01.34.13.112233 PM

27-JAN-06 01.22.51.962632 AM

02-FEB-06 05.34.56.345678 PM

03-FEB-06 12.19.11.227550 PM

28-FEB-06 09.03.03.828330 AM

30-MAR-06 02.22.09.509801 AM

30-MAR-06 05.34.50.545196 AM

28-JUL-06 02.22.59.662632 AM

28-JUL-06 03.34.16.562632 AM

..................................

28-JUN-08 11.53.32.335522 AM

15-JUL-08 08.18.23.234567 AM

27-JUL-08 10.59.10.223344 PM

02-AUG-08 01.22.48.734526 AM


105 rows selected.


5. 處理時區依賴表

(1) 建立臨時表進行備份

SQL> create table oe.test1(order_id number,order_date date);


Table created.


SQL> insert into oe.test1(order_id,order_date) select order_id,order_date from oe.orders;


105 rows created.


SQL> commit;


Commit complete.



(2) 處理原表oe.orders中的列order_date

SQL> alter table oe.orders drop column order_date;


Table altered.


SQL> alter table oe.orders add order_date date;


Table altered.


SQL> update oe.orders a set order_date= (select order_date from oe.test1 b where a.order_id=b.order_id);


105 rows updated.


SQL> commit;


Commit complete.


(3) 再次查詢是否還存在以上型別的列

SQL> select c.owner || '.' || c.table_name || '(' || c.column_name || ') -'

         || c.data_type || ' ' col

       from dba_tab_cols c, dba_objects o

      where c.data_type like '%WITH LOCAL TIME ZONE'

         and c.owner=o.owner

        and c.table_name = o.object_name

        and o.object_type = 'TABLE'

     order by col

     /


no rows selected


SQL> select u.name || '.' || o.name || '.' || c.name TSLTZcolumn

       from sys.obj$ o, sys.col$ c, sys.user$ u

      where c.type# = 231

        and o.obj# = c.obj#

        and u.user# = o.owner#;


no rows selected



6. 修改時區,但是查詢還是未生效

SQL> alter database set time_zone='+8:00';


Database altered.


SQL> select dbtimezone from dual;


DBTIME

------

+00:00


7. 重啟資料庫,時區生效

SQL> shutdown immediate;

Database closed.

Database dismounted.

ORACLE instance shut down.

SQL> 

SQL> startup

ORACLE instance started.


Total System Global Area  835104768 bytes

Fixed Size                  2257840 bytes

Variable Size             549456976 bytes

Database Buffers          281018368 bytes

Redo Buffers                2371584 bytes

Database mounted.

Database opened.

SQL> 

SQL> select dbtimezone from dual;


DBTIME

------

+08:00


SQL> select tz_offset(sessiontimezone), tz_offset(dbtimezone) from dual;


TZ_OFFS TZ_OFFS

------- -------

+08:00  +08:00


8. 刪除臨時表

SQL> drop table oe.test1 purge;


Table dropped.


另外:

對於全球化的業務而言,業務必須在多個時區之間正常運轉。從9i版本開始,Oracle環境能夠知道所使用時區。為了實現這個功能,需要指定資料庫所執行的時區以及使用TIMESTAMP WITH TIME ZONE與TIMESTAMP WITH LOCAL TIME ZONE資料型別。前一種具有一個時區指示符,這個指示符說明了其引用的時區。後一種資料型別在儲存時會被規範化為資料庫時區,但隨後在檢索時會轉換為客戶端的時區。普通的DATE和TIMESTAMP資料型別在儲存時始終會規範為資料庫時區,並且會在查詢過程原樣顯示。

 關於timestamp的幾個函式:

 sysdate      資料庫伺服器作業系統時間,顯示不含時區(其實隱含了時區)。

 systimestamp 資料庫伺服器作業系統時間以及時區

 注意:上述兩個函式的返回值不會受到客戶端影響。


 localtimestamp      根據客戶端時區轉換成客戶端當前時間,但顯示並不含時區

 current_timestamp   根據客戶端時區轉換成客戶端當前時間,包含客戶端時區

 注意:上述兩個函式的返回值和客戶端時區設定有關,會轉換為客戶端時區的時間。



來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31397003/viewspace-2216818/,如需轉載,請註明出處,否則將追究法律責任。

相關文章