標籤:Oracle Database 11g Release 2 installation On CentOS 6.6(x64 platform)(Note: the current user is "tdtc100")1. down install files (1) linux.x64_11gR2_database_1of2.zip (2) linux.x64_11gR2_database_2of2.zip2. unzip
標籤:oracle資料中刪除資料時提示“記錄被另一個使用者鎖住” 解決方案:1、查看資料庫鎖,診斷鎖的來源及類型: select object_id,session_id,locked_mode from v$locked_object;或者用以下命令: select b.owner,b.object_name,l.session_id,l.locked_mode from v$locked_object l, dba_objects b where
標籤:因為需求需要重建EM,重建時因為某些錯誤被迫停止,比如對象已存在、使用者已經存在等,最終找出了建立必備的條件;1.環境變數(Oracle和Grid在同一個使用者下安裝):ORACLE_HOME 要設為DB路徑;ORACLE_UNQNAME 要設定;2.刪除em相關的同義字:select ‘drop public synonym ‘||synonym_name||‘;‘ from dba_synonyms where
標籤:今天進行資料清理時發現報錯ORA-26026,主要是把從交易庫提取資料並插入到歸檔庫中。檢查一下發現是歸檔庫的索引問題。當時為了提高插入速度,所以刪除了歸檔庫的索引,可能對主鍵索引產生了影響。解決方案很簡單,重新重建了一下該表的主鍵索引,問題解決。sql語句:alter index 索引名稱 rebuild; oracle插入資料報錯ORA-26026
標籤:oracle官方文檔提示:If you had specified DELETE INPUT rather than DELETE ALL INPUT, then RMAN would have only deleted the specific archived redo log files that it backed up. For example, RMAN would delete the logs in /arc_dest1 if these files were used
標籤:Step 1: Start the GGSCI on Source and Target Source Target Oracle GoldenGate Command Interpreter for Sybase Version 12.1.2.0.0 17185003 OGGCORE_12.1.2.0.0_PLATFORMS_130924.1316
標籤:這是Oracle12c中筆者遇到的一個錯誤提示:ORA-01033: ORACLE initialization or shutdown in progress錯誤的中文意思是:Oracle初始化未成功或者已經在進程中關閉。經過分析:筆者是試圖訪問Oracle12c中的PDB資料庫,但是PDB預設情況下只是被掛載,並沒有啟動解決方案如下:方法一:SYSDBA登陸後執行如下命令:alter pluggable database PDBEPPS
標籤:Oracle關於記錄檔基本操作1.查詢系統使用的是哪一組記錄檔:select * from v$log;2.查詢正在使用的組所對應的記錄檔:select * from v$logfile;3.強制日誌切換:alter system switch logfile;4.查詢曆史日誌:select * from v$log_history;5.查詢日誌的歸檔模式:select dbid,name,created,log_mode from