您好,登錄后才能下訂單哦!
有些時候可能會因為安裝數據庫不夠規范,導致系統時間設置的不正確,我們需要調整系統時間。但是調整系統時間到底會對數據庫造成什么影響呢。我們來做幾個小實驗。
1.測試帶有日期字段的表插入操作。
--session 1
SQL> create table t1 (id int,dt date);
Table created.
SQL> insert into t1 values(1,sysdate);
1 row created.
SQL> select * from t1;
ID DT
---------- -----------------------
1 09-DEC-2017 10:21:16
--session 2
[root@roidb01 ~]# date
Sat Dec 9 10:21:40 CST 2017
[root@roidb01 ~]# date -s 20:00:00
Sat Dec 9 20:00:00 CST 2017
[root@roidb01 ~]# date
Sat Dec 9 20:00:02 CST 2017
--返回session1
SQL> insert into t1 values(1,sysdate);
1 row created.
SQL> select * from t1;
ID DT
---------- -----------------------
1 09-DEC-2017 10:21:16
1 09-DEC-2017 20:00:09
SQL>
SQL> insert into t1 values(1,sysdate);
1 row created.
SQL> select * from t1;
ID DT
---------- -----------------------
1 09-DEC-2017 10:21:16
1 09-DEC-2017 20:00:09
1 09-DEC-2017 19:00:10
這里某些表日期字段使用的sysdate時間的話,時間會根據操作系統時間來插入數據,日期肯定是會變化的,這樣很可能造成業務邏輯出現問題,需要注意。
2.測試AWR報告
--修改時間為前一天
[root@roidb01 ~]# date -s 01:00:00
Sat Dec 9 01:00:00 CST 2017
[root@roidb01 ~]#
[root@roidb01 ~]# date -s "2017-12-08 11:00:00"
Fri Dec 8 11:00:00 CST 2017
[root@roidb01 ~]# date
Fri Dec 8 11:00:01 CST 2017
--AWR報告異常
SQL> @?/rdbms/admin/awrrpt.sql
Current Instance
~~~~~~~~~~~~~~~~
DB Id DB Name Inst Num Instance
----------- ------------ -------- ------------
1489897299 ORCL 1 orcl
Specify the Report Type
~~~~~~~~~~~~~~~~~~~~~~~
AWR reports can be generated in the following formats. Please enter the
name of the format at the prompt. Default value is 'html'.
'html' HTML format (default)
'text' Text format
'active-html' Includes Performance Hub active report
Enter value for report_type:
Type Specified: html
Instances in this Workload Repository schema
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
DB Id Inst Num DB Name Instance Host
------------ -------- ------------ ------------ ------------
* 1489897299 1 ORCL orcl roidb01
Using 1489897299 for database Id
Using 1 for instance number
Specify the number of days of snapshots to choose from
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Entering the number of days (n) will result in the most recent
(n) days of snapshots being listed. Pressing <return> without
specifying a number lists all completed snapshots.
Enter value for num_days: 2
Listing the last 2 days of Completed Snapshots
Snap
Instance DB Name Snap Id Snap Started Level
------------ ------------ --------- ------------------ -----
orcl ORCL 1 09 Dec 2017 10:14 1
2 09 Dec 2017 10:14 1
3 09 Dec 2017 10:14 1
4 09 Dec 2017 10:14 1
5 09 Dec 2017 19:00 1
6 09 Dec 2017 19:01 1
7 09 Dec 2017 01:02 1
8 09 Dec 2017 01:02 1
9 08 Dec 2017 11:00 1 --變成前一天,時間亂了
10 08 Dec 2017 11:00 1
Specify the Begin and End Snapshot Ids
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Enter value for begin_snap:
這里也說明了,修改時間對AWR會有一定影響,盡量時間往后調整。
3.對數據庫集群影響
對于Oracle RAC數據庫需要各實例時間一致,時間不一致會造成節點down機。
小結:在安裝數據庫的時候一定要調整好數據庫的時間和時區,這個也是必須檢查的項目,要按照規范安裝數據庫,避免不必要的麻煩。如果還有其他影響,大家可以留言,一起交流。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。