- 论坛徽章:
- 0
|
oracle 10.2.0.1安装成功后,升级到10.2.0.4,然后用dbca建库成功。通过crs启动正常,通过sqlplus启动报ORA-29760错误。
[oracle@rac01 pfile]$ crs_stat -t -v
Name Type R/RA F/FT Target State Host
----------------------------------------------------------------------
ora....SM1.asm application 0/5 0/0 ONLINE ONLINE rac01
ora....01.lsnr application 0/5 0/0 ONLINE ONLINE rac01
ora.rac01.gsd application 0/5 0/0 ONLINE ONLINE rac01
ora.rac01.ons application 0/3 0/0 ONLINE ONLINE rac01
ora.rac01.vip application 0/0 0/0 ONLINE ONLINE rac01
ora....SM2.asm application 0/5 0/0 ONLINE ONLINE rac02
ora....02.lsnr application 0/5 0/0 ONLINE ONLINE rac02
ora.rac02.gsd application 0/5 0/0 ONLINE ONLINE rac02
ora.rac02.ons application 0/3 0/0 ONLINE ONLINE rac02
ora.rac02.vip application 0/0 0/0 ONLINE ONLINE rac02
ora.testdb.db application 0/0 0/1 ONLINE ONLINE rac02
ora....b1.inst application 0/5 0/0 ONLINE ONLINE rac01
ora....b2.inst application 0/5 0/0 ONLINE ONLINE rac02
[oracle@rac01 pfile]$
[oracle@rac01 pfile]$ sqlplus /nolog
SQL*Plus: Release 10.2.0.4.0 - Production on Fri May 20 19:20:32 2011
Copyright (c) 1982, 2007, Oracle. All Rights Reserved.
SQL> conn /as sysdba;
Connected to an idle instance.
SQL> startup
ORA-29760: instance_number parameter not specified
SQL>
[oracle@rac02 pfile]$ env
ORA_CRS_HOME=/oracle/product/10.2.0/crs_1
HOSTNAME=rac02
SHELL=/bin/bash
TERM=vt100
HISTSIZE=1000
USER=oracle
LD_LIBRARY_PATH=/oracle/product/10.2.0/db_1/lib
LS_COLORS=no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:bd=40;33;01:cd=40;33;01 r=01;05;37;41:mi=01;05;37;41:ex=01;32:*.cmd=01;32:*.exe=01;32:*.com=01;32:*.btm=01;32:*.bat=01;32:*.sh=01;32:*.csh=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.bz=01;31:*.tz=01;31:*.rpm=01;31:*.cpio=01;31:*.jpg=01;35:*.gif=01;35:*.bmp=01;35:*.xbm=01;35:*.xpm=01;35:*.png=01;35:*.tif=01;35:
ORACLE_SID=testdb
ORACLE_BASE=/oracle
MAIL=/var/spool/mail/oracle
PATH=/oracle/product/10.2.0/db_1/bin:/oracle/product/10.2.0/crs_1/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/oracle/bin
INPUTRC=/etc/inputrc
PWD=/oracle/admin/testdb/pfile
LANG=en_US.UTF-8
SSH_ASKPASS=/usr/libexec/openssh/gnome-ssh-askpass
SHLVL=1
HOME=/home/oracle
LOGNAME=oracle
CVS_RSH=ssh
LESSOPEN=|/usr/bin/lesspipe.sh %s
ORACLE_HOME=/oracle/product/10.2.0/db_1
G_BROKEN_FILENAMES=1
_=/bin/env
OLDPWD=/oracle/admin/testdb
[oracle@rac02 pfile]$
[oracle@rac02 pfile]$ cat init.ora.420201101722
##############################################################################
# Copyright (c) 1991, 2001, 2002 by Oracle Corporation
##############################################################################
###########################################
# Cache and I/O
###########################################
db_block_size=8192
db_file_multiblock_read_count=16
###########################################
# Cluster Database
###########################################
cluster_database_instances=2
remote_listener=LISTENERS_TESTDB
###########################################
# Cursors and Library Cache
###########################################
open_cursors=300
###########################################
# Database Identification
###########################################
db_domain=""
db_name=testdb
###########################################
# Diagnostics and Statistics
###########################################
background_dump_dest=/oracle/admin/testdb/bdump
core_dump_dest=/oracle/admin/testdb/cdump
user_dump_dest=/oracle/admin/testdb/udump
###########################################
# File Configuration
###########################################
db_create_file_dest=+ASMDG
###########################################
# Job Queues
###########################################
job_queue_processes=10
###########################################
# Miscellaneous
###########################################
compatible=10.2.0.3.0
###########################################
# NLS
###########################################
nls_territory="CHINA"
###########################################
# Processes and Sessions
###########################################
processes=150
###########################################
# SGA Memory
###########################################
sga_target=285212672
###########################################
# Security and Auditing
###########################################
audit_file_dest=/oracle/admin/testdb/adump
remote_login_passwordfile=exclusive
###########################################
# Shared Server
###########################################
dispatchers="(PROTOCOL=TCP) (SERVICE=testdbXDB)"
###########################################
# Sort, Hash Joins, Bitmap Indexes
###########################################
pga_aggregate_target=94371840
###########################################
# System Managed Undo and Rollback Segments
###########################################
undo_management=AUTO
control_files=("+ASMDG/testdb/controlfile/current.256.751592377"
cluster_database=true
testdb2.instance_number=2
testdb1.instance_number=1
testdb2.thread=2
testdb1.undo_tablespace=UNDOTBS1
testdb2.undo_tablespace=UNDOTBS2
testdb1.thread=1
[oracle@rac02 pfile]$
请问是什么问题呢??? |
|