DBCA響應檔案建庫報模版不存在解決辦法

wuweilong發表於2012-04-07

1、執行建庫命令
[oracle@wwl database]$ dbca -silent -responseFile /home/oracle/database/dbca.rsp

2、報模版不存在,錯誤資訊如下:
Template General Purpose does not exist. Please specify an existing template for database creation.

3、解決辦法,開啟dbca.rsp響應檔案,找到如下配置資訊:
#-----------------------------------------------------------------------------
# Name          : TEMPLATENAME
# Datatype      : String
# Description   : Name of the template
# Valid values  : Template name as seen in DBCA
# Default value : None
# Mandatory     : Yes
#-----------------------------------------------------------------------------
TEMPLATENAME = "General Purpose"    將其修改為
TEMPLATENAME = "General_Purpose.dbc"

我們可以找下所有的模版確認下,如下命令
[oracle@wwl templates]$ find $ORACLE_HOME/assistants/dbca -name "*.dbc"
/oracle/orahome/10.2.0/db_1/assistants/dbca/templates/Data_Warehouse.dbc
/oracle/orahome/10.2.0/db_1/assistants/dbca/templates/General_Purpose.dbc
/oracle/orahome/10.2.0/db_1/assistants/dbca/templates/Transaction_Processing.dbc

4、再次測試執行,能夠正常建庫,故障已處理

 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/20674423/viewspace-720607/,如需轉載,請註明出處,否則將追究法律責任。

相關文章