朋友做1主庫、2物理從庫的DG配置,配置完成後,發現有一個從庫,始終不能接收到主庫的歸檔日誌。日誌不能正常傳輸到從庫,很多都是歸檔目的地配置的問題,或者網路設定問題。處理步驟,一般是先看v$archive_dest_status視圖,擷取概要資訊,再查看主庫、從庫的alert.log記錄檔。在查看朋友主庫的v$archive_dest_status時,發現歸檔目的地3提示錯誤:ORA-16053: DB_UNIQUE_NAME string is not in the Data Guard
create index idx_p_merchant_detail_id on D_ORDER_DETAIL (merchant_detail_id) Online;建立好長時間,沒有反映;然後取消,結果刪除索引的時候,報如下的錯誤: 錯誤:ORA-08104: this index object 67420 is being online built or rebuilt 通過 ONLINE 參數建立索引(或者重建索引), 如果進程被突然終止,或者是手工 CTRL+C
今天使用Oracle 11g EXP命令備份庫遇到以下錯誤:EXP-00003: no storage definition found for segment(11, 307)"EXP-00003: no storage definition found for segment ……"錯誤,和Oracle的一個小Bug相關,可以通過修改一個匯出相關的View來解決。在目標資料庫使用sys使用者,執行如下SQL建立新的view:CREATE OR REPLACE
Oracle EBS R12.1.1 on Oracle Linux64 5.7依賴包僅選了oracle-validated-1.1.0-14.el5,未作其他依賴包驗證。1. 安裝到最後一步進行驗證時,所有http有關的服務都失敗1.1 運行adapcctl.sh status發現HTTP_Server沒起來-bash-3.2$ ./adapcctl.sh status You are running adapcctl.sh version 120.7.1201000
slave processes是代表其他進程執行工作的後台進程。 I/O Slave ProcessesI/O slave processes (Innn)simulate asynchronous I/O for systems and devices that do not support it. In asynchronous I/O, there is no timing requirement for transmission, enabling
最近部署項目,Linux系統使用非Oracle使用者測試(比如test)tnsping orcl出現如下提示資訊: TNS Ping Utility for Linux: Version 11.2.0.1.0 - Production on 04-DEC-2012 14:29:28 Copyright (c) 1997, 2009, Oracle. All rights reserved. Used parameter files: /opt/
開發過程中不需要限制賬戶的到期時間,所以需要進行一些設定。1 查看使用者的proifle是哪個,一般是default:SELECT username,PROFILE FROM dba_users;2 查看指定概要檔案(如default)的密碼有效期間設定:SELECT * FROM dba_profiles s WHERE s.profile='DEFAULT' AND resource_name='PASSWORD_LIFE_TIME';3