1、执行建库命令
[Oracle@www.linuxidc.com database]$ dbca -silent -responseFile /home/oracle/database/dbca.rsp2、报模版不存在,错误信息如下:
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@www.linuxidc.com 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.dbc4、再次测试执行,能够正常建库,故障已处理Oracle中如何编译失效的对象 http://www.linuxidc.com/Linux/2012-04/58241.htm
更多Oracle相关信息见Oracle 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=12 64位Ubuntu 12.04 安装mysql-workbench问题解决记录Oracle手工建库步骤相关资讯 Oracle数据库基础教程
- 在Oracle数据库中插入含有&符号的 (03/06/2013 09:20:14)
- Oracle 执行计划更改导致数据加工 (02/13/2013 14:45:04)
- 判断Oracle Sequence是否存在 (02/13/2013 14:32:26)
| - Oracle数据库中无法对数据表进行 (02/26/2013 14:24:58)
- Oracle 在同一台主机上建立用户管 (02/13/2013 14:40:58)
- Oracle em 无法启动,报not found错 (02/13/2013 14:29:48)
|
本文评论 查看全部评论 (0)