安裝oracle XML Database 組件

來源:互聯網
上載者:User

標籤:

近期部署項目資料庫,編譯包時遇到錯誤:
 
 
 PACKAGE CTG.CTG_CSB_COMMON 編譯錯誤
 
 錯誤:PLS-00201: identifier ‘XMLDOM‘ must be declared
 行:124
 文本:function getValueByXpath(inNode In xmldom.domnode, inXpath in Varchar2)
 
 錯誤:PL/SQL: Declaration ignored
 行:124

 文本:function getValueByXpath(inNode In xmldom.domnode, inXpath in Varchar2)

 

 

 

 原因:缺少 oracle XML Database 組件

 
 驗證XML DB是否安裝,可以通過 dba_registry 視圖
 
 select comp_name "Component" from dba_registry;
 結果:
 Component
 ------------------------------------------
 Oracle Database Catalog Views

 Oracle Database Packages and Types

 

 

 

 解決:調用 catqm.sql 指令碼,匯入此組件

 
 此指令碼將建立xdb使用者
 

 

 建議為 XML DB 建立資料表空間

 create tablespace xmldb_ts 
 datafile ‘d:\oracle\databases\ora10\xmldb_ts.dbf‘ size 10M autoextend on maxsize unlimited
 extent management local uniform size 1M;

 當然也可以使用sysaux資料表空間。

 同時 ,pool size最好也應該設定足夠大

 alter system set shared_pool_size = 80M scope=spfile;
 如果shared pool size重設了額,資料庫必須重啟。
 

運行指令碼。注意:此指令碼僅能被sys使用者運行。

 呼叫指令碼時,需給予以下參數:

catqm.sql <XDB_PASSWD> <TABLESPACE> <TEMP_TABLESPACE>

 

 @?/rdbms/admin/catqm xml_password xmldb_ts temp;

 

 驗證建立是否成功:

 select comp_name "Component" from dba_registry;
 
 結果:
 Component
 ------------------------------------------
 Oracle Database Catalog Views
 Oracle Database Packages and Types
 Oracle XML Database

 

 

 如果想卸載XML DB:

 SQL> @?/rdbms/admin/catnoqm
 SQL> alter tablespace XMLDB_TS offline;
 SQL> drop tablespace XMLDB_TS including contents;

轉:http://blog.csdn.net/vvqboy/article/details/8169344

 

安裝oracle XML Database 組件

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.