有時候資料庫掛掉,起庫會出現ORA-00704錯誤,而導致ORA-00704錯誤的根本原因是訪問OBJ$的時候,ORACLE需要復原段中的資料,而訪問復原段的時候需要的undo資料已經被覆蓋,此時我們可以通過bbed工具手工提交事務,從而解決這個問題。使用bbed提交事務測試過程如下:JP@ORCL>create table JP_BBED_TEST as select * from hr.employees where rownum<=10;Table
在11g 安裝過程中預設只能指定一個 dg 用來儲存:crs ,voting但是oracle 官方一般建議我們這麼來配置:1、當ocr沒有配置鏡像,或者冗餘儲存時 最少3個ocr 。如果底層儲存不是RAID的話,oracle建議鏡像OCR,鏡像可以避免單點故障。At least two OCR locations if OCR is configured on an Oracle ASM disk group.You should configure OCR in two
1、Oracle Clusterware supports up to 100 nodes in a cluster on configurations running Oracle Database 10grelease 2 (10.2) and later releases.在10.2以後的版本開始 oracle的叢集支援最多100g節點的叢集。2、網路設定:每個節點最少2張網卡(one for a public network and one for a private
The Oracle 10g Clusterware processes on UNIX-based systems are:Oracle ClusterwareOracle-provided clusterware that manages clusterdatabase processing including node membership, group services, global resourcemanagement, and high availability
[oracle@ggos ~]$ rman target /Recovery Manager: Release 11.2.0.4.0 - Production on Fri Dec 6 00:17:59 2013Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.connected to target database: ORAPROD (DBID=9124528)RMAN>
一、問題引出1. 假設噹噹網上使用者下單買了本書,這時資料庫中有條訂單號為001的訂單,其中有個status欄位是’有效’,表示該訂單是有效;2. 後台管理員查詢到這條001的訂單,並且看到狀態是有效;3. 使用者發現下單的時候下錯了,於是撤銷訂單,假設運行這樣一條SQL: update order_table set status = ‘取消’ where order_id = 001;4.