Oracle 1204 RAC failover 測試 (三)

經過兩次測試,感覺RAC很脆弱。1.拔除RAC1的public網線,站在RAC2旁邊看變化,發現VIP很快轉換到RAC2,使用者仍然可以使用。2.1分鐘後,RAC2自動重啟,察看原因是共用盤無法mount,此時另一同事正在config SAN,無法確定是否真的共用盤出了問題。3.乾脆來個更狠的測試,拔除兩台DB的電源,再插回去,重新開機,發現CRS無法啟動。[root@racdb02 install]# crs_stat -tCRS-0184: Cannot communicate with

Oracle EBS R12 打中文Patch報錯

最近安裝了一套 Oracle EBS R12,在打中文Patch時,報如下錯誤。FAILED: file FNDNLINS.sql on worker 1.FAILED: file JTFNLINS.sql on worker 3.退出ADADMIN後,無法進入ERP,報如下錯誤。 The system has not been taken off maintenance mode completely. Please contact your System Administrator.

Oracle EBS付款條件

Oracle EBS 付款設定申為靈活,部分設定尚沒搞清楚,確定的部分如下:Cutoff Day:  截至日起,即超過此日起,將會在下一個付款周期Due Daye: 往後推多少日,一般用於比如貨到多少日付款Due Date: 指定延遲到那日付款,基本不用Due Day of Month : 搭配Months Ahead,延遲Months Ahead月後,每月的幾號付款Due Months Ahead:搭配Day of Month,設定付款要延遲的月數。

Oracle ADI 錯誤及解決方式匯總—來自metalink

1.  Cannot connect to the database.  "Invalid username or password"Following are the probable causes for this error message:a.  The ADI Sign On (Security) has not been set up correctly (check this only if this is a fresh install).  Check the 3 cones

Oracle ERP Item Catalog and Item Category 的區別

    今天是2013年2月14,情人節,大年初四,很無奈得來上班。閑來無事,再來整理一下Item的相關知識。    Item有兩個東西,在我開始學ERP時困擾了很久,Catalog 和Category.我想後來者,應該也會有此困擾。Catalog:     物料的屬性,比如物料重量,長度,顏色,容值等。就是指物料都有那些屬性。比如人有身高,體重,性別等。主要是為了避免新增物料時,避免少設定物料的屬性。Category:     

符合中國人習慣的oracle取周的日期函數

     最近在幫HR抓加班記錄的統計資料。HR希望能by周統計加班時數。但Oracle的日期Function Compute周時是周日算第一天,周六算最後一天。而中國人的習慣是周一算第一天,周日算最後一天。而且,Oracle的函數返回的是第幾周,是個數字,HR還要再根據資料推算是那個日期段。自己編寫了一個符合我們要求的小函數,傳回值也科學很多,呵呵!FUNCTION get_wk (p_date IN DATE)      RETURN VARCHAR2   IS      v_wk  

Oracle歸檔日誌刪除

我們都都知道在controlfile中記錄著每一個archivelog的相關資訊,當然們在OS下把這些物理檔案delete掉後,在我們的controlfile中仍然記錄著這些archivelog的資訊,在oracle的OEM管理器中有可視化的日誌展現出,當我們手工清除archive目錄下的檔案後,這些記錄並沒有被我們從controlfile中清除掉,也就是oracle並不知道這些檔案已經不存在了!這時候我們要做手工的清除的話,下面我經過實驗,可以嘗試這種方法:1. 進入rman  2.

使用 Sql*Loader 向 Oracle 匯入資料

使用Oracle的sqlldr工具來將SDSS.CSV檔案中的資料匯入資料庫。SDSS.CSV 放置於 E:\ 內容如下:        2.3757291096910399E-4,-8.9490277843631194,20.302597,        0.00023851549291556,-0.88450365314434698,20.098101,        2.5168890447969299E-4,7.7169029946908094E-2,18.762859,       

Oracle 使用者管理

1.建立新的資料表空間:create tablespace newxxt datafile '/oradata/dduyoung/newxxt1.dbf' size 200M autoextend on next 10M maxsize unlimited, '/oradata/dduyoung/newxxt2.dbf' size 200M autoextend on next 10M maxsize unlimited extent management local segment space

關於.NET 訪問Oracle資料庫

1. System.Data.OracleClient 和 System.Data.OleDb 命名空間雖然通過這兩個命名空間的類都可以訪問 Oracle 資料庫,但和 SQL Server 類似的(System.Data.SqlClient命名空間的類效率要比 System.Data.OleDb 命名空間中的類高一些),System.Data.OracleClient命名空間中的類要比 System.Data.OleDb

Oracle 批量插入記錄

這裡使用了PL/SQL的聯合數組.我要將一組用'_'分隔的記錄插入資料庫,當然,這樣做只是為了方便從java調用預存程序進行批量插入. 先定義數群組類型和一個工具函數(用來分解字串):Code highlighting produced by Actipro CodeHighlighter

常見Oracle HINT

【原文】常見Oracle HINT的用法   1. /*+ALL_ROWS*/  表明對語句塊選擇基於開銷的最佳化方法,並獲得最佳輸送量,使資源消耗最小化.  例如:  SELECT /*+ALL+_ROWS*/ EMP_NO,EMP_NAM,DAT_IN FROM BSEMPMS WHERE EMP_NO='SCOTT';   2. /*+FIRST_ROWS*/  表明對語句塊選擇基於開銷的最佳化方法,並獲得最佳回應時間,使資源消耗最小化.  例如:  SELECT

materialized view in oracle

文章目錄 Timing the refreshSummary A materialized view is a database object that contains the results of a query. They are local copies of data located remotely, or are used to create summary tables based on aggregations of a

Oracle物化視圖文法

CodeCode highlighting produced by Actipro CodeHighlighter

成本控制:Oracle 最佳化器內幕

【原文:http://www.oracle.com/technology/global/cn/oramag/webcolumns/2003/techarticles/burleson_cbo_pt2_pt1.html】在本系列的第 1 部分中,我們討論了 Oracle 的基於成本的 SQL最佳化器的基本機制,作出關於資料訪問路徑的最佳決策。在這一結尾部分中,我們將重點討論為更改執行計畫而使用柱狀圖、外部成本會計功能、SQL提示,以及用於尋找和調整未達到最佳化的 SQL

oracle table 函數使用

PL/SQL表---table()函數用法/*PL/SQL表---table()函數用法:利用table()函數,我們可以將PL/SQL返回的結果集代替table。oracle記憶體表在查詢和報表的時候用的比較多,它的速度相對物理表要快幾十倍。simple example:1、table()結合數組:*/create or replace type t_test as object(id integer,rq date,mc varchar2(60));create or replace

Oracle字元竄操作函數

關於instr的用法是從 http://www.cnblogs.com/Xrinehart/archive/2005/04/21/142791.html 轉帖過來的.Code highlighting produced by Actipro CodeHighlighter

oracle exception使用

1.RAISE_APPLICATION_ERROR的定義及使用The procedure RAISE_APPLICATION_ERROR lets you issue user-defined ORA- error messages from stored subprograms. That way, you can report errors to your application and avoid returning unhandled exceptions. To call

深刻理解Oracle資料庫的啟動和關閉

     原文:http://www.softhouse.com.cn/news/show/1469.html  Oracle資料庫提供了幾種不同的資料庫啟動和關閉方式,本文將詳細介紹這些啟動和關閉方式之間的區別以及它們各自不同的功能。  一、啟動和關閉Oracle資料庫  對於大多數Oracle DBA來說,啟動和關閉Oracle資料庫最常用的方式就是在命令列方式下的Server Manager。從Oracle 8i以後,系統將Server

Oracle update用例

原文:http://dev.csdn.net/article/72/72686.shtm為了方便起見,建立了以下簡單模型,和構造了部分測試資料:  在某個業務受理子系統BSS中,  --客戶資料表  create table customers   (    customer_id   number(8)    not null,  -- 客戶標示    city_name     varchar2(10) not null,  -- 所在城市

總頁數: 1509 1 .... 277 278 279 280 281 .... 1509 Go to: 前往

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.