Database Instance Installation Problem on Oracle 8.1.7

Dear gurus,
I'm having problem when installing Database Central Instance on Solaris 10 - Oracle 8.1.7 (32bit) - SAP 4.6c.
Here's the error log:
Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production
With the Partitioning option
JServer Release 8.1.7.0.0 - Production
Connected.
Echo                            ON
SVRMGR> SET TERMOUT ON;
Termout                         ON
SVRMGR> SHUTDOWN ABORT;
ORACLE instance shut down.
SVRMGR> STARTUP NOMOUNT PFILE=init.ora;
ORA-27123: unable to attach to shared memory segment
SVR4 Error: 22: Invalid argument
Additional information: 1
Additional information: 3
SVRMGR> CREATE DATABASE PRD
     2> CONTROLFILE REUSE
     3> MAXDATAFILES  254
     4> MAXLOGFILES   255
     5> MAXLOGHISTORY 1000
     6> MAXLOGMEMBERS 3
     7> MAXINSTANCES  50
     8> CHARACTER SET "WE8DEC"
     9> DATAFILE
    10> '/oracle/PRD/sapdata1/system_1/system.data1' SIZE 300M REUSE
    11> NOARCHIVELOG
Info: DBCREATEDB_IND_ORA SvrmgrDoDummy 2 349
    12> LOGFILE
    13> GROUP 11 (
    14> '/oracle/PRD/origlogA/log_g11m1.dbf',
    15> '/oracle/PRD/mirrlogA/log_g11m2.dbf'
    16> ) SIZE 20M REUSE
    17> ,GROUP 13 (
    18> '/oracle/PRD/origlogA/log_g13m1.dbf',
    19> '/oracle/PRD/mirrlogA/log_g13m2.dbf'
    20> ) SIZE 20M REUSE
    21> ,GROUP 12 (
    22> '/oracle/PRD/origlogB/log_g12m1.dbf',
    23> '/oracle/PRD/mirrlogB/log_g12m2.dbf'
    24> ) SIZE 20M REUSE
    25> ,GROUP 14 (
    26> '/oracle/PRD/origlogB/log_g14m1.dbf',
    27> '/oracle/PRD/mirrlogB/log_g14m2.dbf'
    28> ) SIZE 20M REUSE
    29> ;
CREATE DATABASE PRD
ORA-01034: ORACLE not available
SVRMGR> EXIT
Server Manager complete.
Error: DBCREATEDB_IND_ORA InternalInstallationDo 2 349
Create Database failed errorcode = 27123.
Error: DBCREATEDB_IND_ORA InstallationDo 2 349
Phase failed.
Error: Main {} 2 349
Installation aborted.
I have tweaked the shared memory max as suggested in Oracle Manual / SAP Installation Guide, to no avail.
The listener is up already.
When I logged in as user ORA<SID>, and go to svrmgrl > startup nomount pfile=init.ora, it can startup without hassle.
Although the Product is not supported in PAM, we have another machine running smoothly for years with this product combination, so it's not the product compatibility issues.
But when using R3SETUP -f DATABASE.R3S, the phase stopped with the log pasted above.
Any ideas, gurus?
Thanks for help.
Best Regards,

Mr. Markus, there's no file on saptrace/usertrace.
To be sure, here's what I've done:
1. Run oracle listener.
2. Check connection with svrmgrl > connect internal (connected).
3. Modify init.ora with my DB Name:
wef
# replace DEFAULT with your database name
*db_name=PRDDB*
db_files = 80                                                         # SMALL 
# db_files = 400                                                      # MEDIUM
# db_files = 1500                                                     # LARGE 
db_file_multiblock_read_count = 8                                     # SMALL 
# db_file_multiblock_read_count = 16                                  # MEDIUM
# db_file_multiblock_read_count = 32                                  # LARGE 
db_block_buffers = 100                                                 # SMALL 
# db_block_buffers = 550                                              # MEDIUM
# db_block_buffers = 3200                                             # LARGE 
shared_pool_size = 3500000                                            # SMALL
# shared_pool_size = 5000000                                          # MEDIUM
# shared_pool_size = 9000000                                          # LARGE
log_checkpoint_interval = 10000
processes = 50                                                        # SMALL 
# processes = 100                                                     # MEDIUM
# processes = 200                                                     # LARGE 
parallel_max_servers = 5                                              # SMALL
# parallel_max_servers = 4 x (number of CPUs)                         # MEDIUM
# parallel_max_servers = 4 x (number of CPUs)                         # LARGE
log_buffer = 32768                                                    # SMALL
# log_buffer = 32768                                                  # MEDIUM
# log_buffer = 163840                                                 # LARGE
# audit_trail = true            # if you want auditing
# timed_statistics = true       # if you want timed statistics
max_dump_file_size = 10240      # limit trace file size to 5 Meg each
# Uncommenting the line below will cause automatic archiving if archiving has
# been enabled using ALTER DATABASE ARCHIVELOG.
# log_archive_start = true     
# log_archive_dest = disk$rdbms:[oracle.archive]
# log_archive_format = "T%TS%S.ARC"
# If using private rollback segments, place lines of the following
# form in each of your instance-specific init.ora files:
# rollback_segments = (name1, name2)  
# If using public rollback segments, define how many
# rollback segments each instance will pick up, using the formula
#   # of rollback segments = transactions / transactions_per_rollback_segment
# In this example each instance will grab 40/5 = 8:
# transactions = 40
# transactions_per_rollback_segment = 5
# Global Naming -- enforce that a dblink has same name as the db it connects to
global_names = TRUE
# Edit and uncomment the following line to provide the suffix that will be
# appended to the db_name parameter (separated with a dot) and stored as the
# global database name when a database is created.  If your site uses
# Internet Domain names for e-mail, then the part of your e-mail address after
# the '@' is a good candidate for this parameter value.
# db_domain = us.acme.com       # global database name is db_name.db_domain
# FOR DEVELOPMENT ONLY, ALWAYS TRY TO USE SYSTEM BACKING STORE
# vms_sga_use_gblpagfil = TRUE
# FOR BETA RELEASE ONLY.  Enable debugging modes.  Note that these can
# adversely affect performance.  On some non-VMS ports the db_block_cache_*
# debugging modes have a severe effect on performance.
#_db_block_cache_protect = true                       # memory protect buffers
#event = "10210 trace name context forever, level 2" # data block checking
#event = "10211 trace name context forever, level 2" # index block checking
#event = "10235 trace name context forever, level 1" # memory heap checking
#event = "10049 trace name context forever, level 2" # memory protect cursors
# define parallel server (multi-instance) parameters
#ifile = ora_system:initps.ora
# define two control files by default
control_files = (ora_control1, ora_control2)
# Uncomment the following line if you wish to enable the Oracle Trace product
# to trace server activity.  This enables scheduling of server collections
# from the Oracle Enterprise Manager Console. 
# Also, if the oracle_trace_collection_name parameter is non-null,
# every session will write to the named collection, as well as enabling you
# to schedule future collections from the console.
# oracle_trace_enable = TRUE
# Uncomment the following line, if you want to use some of the new 8.1
# features. Please remember that using them may require some downgrade
# actions if you later decide to move back to 8.0.
#compatible = 8.1.0
3. set shared memory parameter as in sapnote 724713.
4. executing R3SETUP
and it tells me this error:
Info: DBCREATEROLLSEGSTART_IND_ORA SyGroupIDGet 2 354
Group id for group dba is 102.
Info: DBCREATEROLLSEGSTART_IND_ORA SyUserIDGet 2 354
User id for user oraprd is 100.
Info: DBCREATEROLLSEGSTART_IND_ORA SvrmgrDoDummy 2 354
Return from DB: 1034.
Info: DBCREATEROLLSEGSTART_IND_ORA SvrmgrDoDummy 2 354
Oracle Server Manager Release 3.1.7.0.0 - Production
Copyright (c) 1997, 1999, Oracle Corporation.  All Rights Reserved.
Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production
With the Partitioning option
JServer Release 8.1.7.0.0 - Production
ORA-01034: ORACLE not available
ORA-27101: shared memory realm does not exist
SVR4 Error: 2: No such file or directory
Server Manager complete.
Info: DBCREATEROLLSEGSTART_IND_ORA InternalInstallationDo 2 354
Startup Database.
Info: DBCREATEROLLSEGSTART_IND_ORA OracleCmd 2 354
Startup Database with PFILE: init.ora.
Info: DBCREATEROLLSEGSTART_IND_ORA SyCoprocessCreateAsUser 2 354
Creating coprocess /oracle/PRD/817_32/bin/svrmgrl [email protected]  as user oraprd and group dba ...
Info: DBCREATEROLLSEGSTART_IND_ORA SyGroupIDGet 2 354
Group id for group dba is 102.
Info: DBCREATEROLLSEGSTART_IND_ORA SyUserIDGet 2 354
User id for user oraprd is 100.
Info: DBCREATEROLLSEGSTART_IND_ORA SvrmgrDoDummy 2 354
Return from DB: 27123.
Info: DBCREATEROLLSEGSTART_IND_ORA SvrmgrDoDummy 2 354
Oracle Server Manager Release 3.1.7.0.0 - Production
Copyright (c) 1997, 1999, Oracle Corporation.  All Rights Reserved.
Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production
With the Partitioning option
JServer Release 8.1.7.0.0 - Production
Connected.
ORA-27123: unable to attach to shared memory segment
SVR4 Error: 22: Invalid argument
Additional information: 1
Additional information: 2
alter database noarchivelog
ORA-01034: ORACLE not available
alter database open
ORA-01034: ORACLE not available
Server Manager complete.
Error: DBCREATEROLLSEGSTART_IND_ORA InternalInstallationDo 2 354
Startup Database with error: 27123.
Error: DBCREATEROLLSEGSTART_IND_ORA InstallationDo 2 354
Phase failed.
Error: Main {} 2 354
Installation aborted.
It's driving me nuts for the last days.. can't figure out what happened here.

Similar Messages

  • 4.6C Database instance installation for Oracle 10.2.0.2 64 bit

    Trying to Install 4.6C Database instance with R3SETUP for Oracle 10g database.
    The Oracle binaries for Oracle 10.2.0.2 64 bit are already installed.
    When i run SETUP.BAT for installing Database instance i get the following error.
    *Error: DBCOMMONDBENV_NT_ORA InternalColdKeyCheck 2 648*
    *Please install Oracle before continuing the installation!*
    I fail to understand the error since Oracle is already install.
    Please help resolving the issue.

    As per the previous discussion we had regarding SAP note 932722, Upgrading 10g by copying datafiles from the 32 bit server to 64 bit x86_64 server.
    The Oracle upgrade has been completed sucessfully as below,
    a) Oracle 10g binaries were installaed
    b) Datafiles copied from 32 bit server
    c) 10g upgrade completed using the perl scripts attached with the note
    Trying to install the Database instance using R3SETUP tool.

  • URGENT- checksum error during database instance installation

    Hi Experts and Developers,
    I would be glad,if you can help me solve this.
    I did not have any problem during Central instance installation.But getting <b>2 checksum errors</b> during my database instance installation.
    The log file for 1st error says
    C:\usr\sap\SAA\SYS\exe\run/R3load.exe: START OF LOG: 20060917024333
    C:\usr\sap\SAA\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/640_REL/src/R3ld/R3load/R3ldmain.c#6 $ SAP
    C:\usr\sap\SAA\SYS\exe\run/R3load.exe: version R6.40/V1.4 [UNICODE]
    C:\usr\sap\SAA\SYS\exe\run/R3load.exe -ctf I E:/DVD1/EXPORTS/EXP1/DATA/SAPSSEXC.STR C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_ABAP_ORA_UC\DB/DDLORA.TPL C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_ABAP_ORA_UC\DB/SAPSSEXC.TSK ORA -l C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_ABAP_ORA_UC\DB/SAPSSEXC.log
    C:\usr\sap\SAA\SYS\exe\run/R3load.exe: job completed
    C:\usr\sap\SAA\SYS\exe\run/R3load.exe: END OF LOG: 20060917024333
    C:\usr\sap\SAA\SYS\exe\run/R3load.exe: START OF LOG: 20060917024703
    C:\usr\sap\SAA\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/640_REL/src/R3ld/R3load/R3ldmain.c#6 $ SAP
    C:\usr\sap\SAA\SYS\exe\run/R3load.exe: version R6.40/V1.4 [UNICODE]
    C:\usr\sap\SAA\SYS\exe\run/R3load.exe -dbcodepage 4103 -i C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_ABAP_ORA_UC\DB/SAPSSEXC.cmd -l C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_ABAP_ORA_UC\DB/SAPSSEXC.log -stop_on_error
    DbSl Trace: ORA-1403 when accessing table SAPUSER
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): UTF8
    Syslog: k xxx :                                                      rscpexcc 11
    (rscpsumg) Please look also into "C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_ABAP_ORA_UC\DB/SAPSSEXC001.xml".
    Syslog: k CQ3 : UMGSETTING&                                          rscpexcc 12
    (DB) INFO: BRATEXT created #20060917024719
    (IMP) INFO: import of BRATEXT completed (259725 rows) #20060917024803
    (DB) INFO: BRATEXT~0 created #20060917025001
    (DB) INFO: D010INC created #20060917025001
    (IMP) INFO: import of D010INC completed (338126 rows) #20060917025011
      (((((I did copy only the first and last few lines))))
    (DB) INFO: DM45T~0 created #20060917030515
    (DB) INFO: DM46S created #20060917030515
    (IMP) INFO: import of DM46S completed (99 rows) #20060917030516
    (DB) INFO: DM46S~0 created #20060917030516
    (DB) INFO: DM46S~A created #20060917030516
    (DB) INFO: DOKCLU created #20060917030516
    <b>(RFF) ERROR: invalid checksum in data file "E:/DVD1/EXPORTS/EXP1/DATA/SAPSSEXC.001"
                 current table was "DOKCLU"
    (DB) INFO: disconnected from DB</b>
    C:\usr\sap\SAA\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    C:\usr\sap\SAA\SYS\exe\run/R3load.exe: END OF LOG: 20060917030913
    The log file for second error says
    C:\usr\sap\SAA\SYS\exe\run/R3load.exe: START OF LOG: 20060917024334
    C:\usr\sap\SAA\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/640_REL/src/R3ld/R3load/R3ldmain.c#6 $ SAP
    C:\usr\sap\SAA\SYS\exe\run/R3load.exe: version R6.40/V1.4 [UNICODE]
    C:\usr\sap\SAA\SYS\exe\run/R3load.exe -ctf I E:/DVD1/EXPORTS/EXP2/DATA/SAPAPPL1.STR C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_ABAP_ORA_UC\DB/DDLORA.TPL C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_ABAP_ORA_UC\DB/SAPAPPL1.TSK ORA -l C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_ABAP_ORA_UC\DB/SAPAPPL1.log
    C:\usr\sap\SAA\SYS\exe\run/R3load.exe: job completed
    C:\usr\sap\SAA\SYS\exe\run/R3load.exe: END OF LOG: 20060917024335
    C:\usr\sap\SAA\SYS\exe\run/R3load.exe: START OF LOG: 20060917024703
    C:\usr\sap\SAA\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/640_REL/src/R3ld/R3load/R3ldmain.c#6 $ SAP
    C:\usr\sap\SAA\SYS\exe\run/R3load.exe: version R6.40/V1.4 [UNICODE]
    C:\usr\sap\SAA\SYS\exe\run/R3load.exe -dbcodepage 4103 -i C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_ABAP_ORA_UC\DB/SAPAPPL1.cmd -l C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_ABAP_ORA_UC\DB/SAPAPPL1.log -stop_on_error
    DbSl Trace: ORA-1403 when accessing table SAPUSER
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): UTF8
    Syslog: k xxx :                                                      rscpexcc 11
    (rscpsumg) Please look also into "C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_ABAP_ORA_UC\DB/SAPAPPL1001.xml".
    Syslog: k CQ3 : UMGSETTING&                                          rscpexcc 12
    (DB) INFO: /SAPDMC/LSOFIL created #20060917024728
    (IMP) INFO: import of /SAPDMC/LSOFIL completed (0 rows) #20060917024728
    (DB) INFO: /SAPDMC/LSOFIL~0 created #20060917024729
    (DB) INFO: /SAPDMC/LSOFIW created #20060917024729
    (IMP) INFO: import of /SAPDMC/LSOFIW completed (0 rows) #20060917024729
    (DB) INFO: /SAPDMC/LSOFIW~0 created #20060917024730
       (((( I did copy only first and last few lines of this log file ))))
    (DB) INFO: IDXRCVPOR created #20060917025240
    (IMP) INFO: import of IDXRCVPOR completed (0 rows) #20060917025240
    (DB) INFO: IDXRCVPOR~0 created #20060917025241
    (DB) INFO: IDXRCVPOR~TIM created #20060917025241
    (DB) INFO: INDX created #20060917025241
    <b>(RFF) ERROR: invalid checksum in data file "E:/DVD1/EXPORTS/EXP2/DATA/SAPAPPL1.001"
                 current table was "INDX"
    (DB) INFO: disconnected from DB</b>
    C:\usr\sap\SAA\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    C:\usr\sap\SAA\SYS\exe\run/R3load.exe: END OF LOG: 20060917025244
    For your understanding ,
    Here are the steps that i followed,
    (1)I am Installing SAP XI on Windows 2003 server standard edition with oracle 9i as database.
    (2)I copied the DVDs to HARD DRIVE
    (3)I created the Microsoft Loopback adapter,assigned an ip.
    (4) Then installed j2sdk 1.4.2 for windows
    (5) installed central instance with SAPinst

    Hi Carsten,
    Thank you for taking a look at my problem.
    I am using NW_2004_SR1 (Netweaver 2004 SR1).
    Just for your information, the size for those two files on my Hard drive are
    SAPSSEXC.001 is 650,240 Kb
    SAPAPPL1.001 is 126,608 Kb
    and my label.asc in Exports directory is
    SAP:NETWEAVER:04SR1:DVD_EXPORT:NETWeaver 04 SR 1 EXPORT DVD:D51030721
    label.asc in EXP1 directory is
    SAP:NETWEAVER:04SR1:EXPORT(1/3):NetWeaver 04 SR 1 Export CD 1/3:CDxxxxxxxx
    label.asc in EXP2 is
    SAP:NETWEAVER:04SR1:EXPORT(2/3):NetWeaver 04 SR 1 Export CD 2/3:CDxxxxxxxx
    label.asc in EXP3 directory is
    SAP:NETWEAVER:04SR1:EXPORT(3/3):NetWeaver 04 SR 1 Export CD 3/3:CDxxxxxxxx
    Thank you,

  • Prerequisite check of database instance installation failed on Solaris

    Dear All,
    Please provide your valuable suggestions in resolving the below issue
    We are installing the SAP NW 7.4 EP as distributed installation
    Application server on RHEL 6 and Oracle database on Solaris 11(SPARC).
    We have installed the SCS instance on RHEL  with out any issues.
    While running prerequisite check of database installation on solaris we are getting below errors.
    "Atleast 500MB of free disk space are required for an diagnostic agent installation"
                     and
    "could not evaluate condition obsolete kernel parameters"
    In the sapinstdev_log file we are getting below lines.
    TRACE     
    Found 0 MB of free space on /dev
    TRACE     
    Prerequisite Checker performing checks: Condition hardware::disk_space from package ::j2ee_smd_inst evaluated to PRCCondEvalResult.FALSE. Message: 'At least 500 MB of free disk space are required for an Diagnostics Agent installation. Found 0 GB.'.
    We have tried to increase space for /dev which is not possible in Solaris (As per the OS team).please find the below reference link.
    /dev and the /devices Namespace (System Administration Guide: Oracle Solaris Containers-Resource Management and Oracle S…
    The/dev file system is loopback-mounted into the zone using a read-only mount.
    Please find the file system created for database instance installation.
    Filesystem             Size   Used  Available Capacity  Mounted on
    rpool/ROOT/solaris      29G   973M        28G     4%    /
    /dev                     0K     0K         0K     0%    /dev
    rpool/ROOT/solaris/var
                            29G    49M        28G     1%    /var
    proc                     0K     0K         0K     0%    /proc
    ctfs                     0K     0K         0K     0%    /system/contract
    mnttab                   0K     0K         0K     0%    /etc/mnttab
    objfs                    0K     0K         0K     0%    /system/object
    swap                    30G   1.5G        29G     5%    /system/volatile
    sharefs                  0K     0K         0K     0%    /etc/dfs/sharetab
    fd                       0K     0K         0K     0%    /dev/fd
    swap                    30G   1.5G        29G     5%    /tmp
    rpool/VARSHARE          29G    40K        28G     1%    /var/share
    h2hpool1/Dump           40G   9.2G        31G    23%    /Dump
    rpool/export            29G    32K        28G     1%    /export
    rpool/export/home       29G    32K        28G     1%    /export/home
    rpool/export/home/admin
                            29G    34K        28G     1%    /export/home/admin
    h2hpool1               244G    31K       235G     1%    /h2hpool1
    h2hpool1/oracle        180G    36K       180G     1%    /oracle
    h2hpool1/oracle/EPD    180G    44K       180G     1%    /oracle/EPD
    h2hpool1/oracle/EPD/112_64
                            10G    31K        10G     1%    /oracle/EPD/112_64
    h2hpool1/oracle/EPD/mirrlogA
                           1.0G    31K       1.0G     1%    /oracle/EPD/mirrlogA
    h2hpool1/oracle/EPD/mirrlogB
                           1.0G    31K       1.0G     1%    /oracle/EPD/mirrlogB
    h2hpool1/oracle/EPD/oraarch
                            20G    31K        20G     1%    /oracle/EPD/oraarch
    h2hpool1/oracle/EPD/origlogA
                           1.0G    31K       1.0G     1%    /oracle/EPD/origlogA
    h2hpool1/oracle/EPD/origlogB
                           1.0G    31K       1.0G     1%    /oracle/EPD/origlogB
    h2hpool1/oracle/EPD/sapdata1
                            30G    31K        30G     1%    /oracle/EPD/sapdata1
    h2hpool1/oracle/EPD/sapdata2
                            30G    31K        30G     1%    /oracle/EPD/sapdata2
    h2hpool1/oracle/EPD/sapdata3
                            30G    31K        30G     1%    /oracle/EPD/sapdata3
    h2hpool1/oracle/EPD/sapdata4
                            30G    31K        30G     1%    /oracle/EPD/sapdata4
    h2hpool1/oracle/EPD/sapreorg
                           2.0G    31K       2.0G     1%    /oracle/EPD/sapreorg
    h2hpool1/oracle/client
                           1.0G    31K       1.0G     1%    /oracle/client
    h2hpool1/oracle/stage
                           5.0G    31K       5.0G     1%    /oracle/stage/112_64
    rpool                   29G    31K        28G     1%    /rpool
    h2hpool1/sapmnt         20G    31K        20G     1%    /sapmnt
    h2hpool1/usr            20G    31K        20G     1%    /usr/sap

    Hi Praveen,
    It looks to be more permission issue rather than space issue. Ensure the file system where you copied the DVD has full permission.
    Check the installation logs for more details on which other file system needs full permission and work accordingly.
    Regards,
    Deepak Kori

  • Error during Database Instance Installation

    Hi,
    We are installing SAP CRM 4.0.Central Instance Installation is over without problem.However during Database Instance Installation we are getting an Error which says :
    "The node E:\sap\DATA does not exist".
    I created this folder manually.Then is gave another error saying
    "Node C:\Program Files\sapinst_instdir\CRM_40SR1_ABAP_UC\DB\CRM\DATA does not exist."
    I created this again.Then it gave another Error saying :
    "Node C:\Program Files\sapinst_instdir\CRM_40SR1_ABAP_UC\DB\4.0\DATA does not exist."
    Why is this error coming up again and again and any solution to this problem?
    Thanks,
    Suparna

    This is happening because installation program is checking the existence of DB Export directories which you specified to the installation program. It has to do with the installation screen where you specify the location of your DB Export CD/DVD during installation of Database instance. Usually what helps is if you copy the DB Export CD's to a directory in your hard disk and specify that as the target for copy. Just check what you are specifying DB Export parameter screen.
    Cheers,
    Sanjeev

  • Database Instance Installation error- DIM:00011

    Hi,
         I got the following error during installation of ECC 5.0 Ides version.  It was Oracle Database(10.2.0.2) on Windows 2003 server(SP 2)
    DIM-00011. The service does not exist. Cause: You have tried to edit a service which does not exist, or there is an error trying to access the registry
    I couldn't find Oracle services in the Services directory at all.  Previously I installed Oracle 10.2( software only) and then applied Patch set 10.2.0.2 using OUI.  I was unable to connect to Database using SQL* plus session. 
    However I was able to install Central Instance.  The error occured during Database Instance Installation.

    I have created instance N04 and service OracleServiceN04 using ORADIM.  Now I have total 3 oracle services in Services directory.
    1)OracleJobscheduler 2) OracleOraDb10g_home1TNSListener3)OracleserviceN04
    However, I am still unable to connect through SQL*plus. I get following errors:
    Ora-1034 & Ora-27101
    I wish to continue with installation...what do you suggest?

  • Problem with database instance installation

    Hi@all,
    I'm dealing with the installation of the sap solution manager 3.2 SR1.
    The platform is a win 2000 server, I use Oracle as the database.
    Oracle was installed successfully and the installation of the central instance terminated without errors.
    Now I try to install the next step, the database instance.
    I always choosed the standard parameters, except for I choosed no domain installation and unchecked using SLD.
    Nevertheless, the installation procedure stops at step 16 with the following error log entry (partially translated from german to english):
    System call failed. Error 1332 (Allocations of account names and safety identifications were not accomplished.
    ) in execution of system call 'LookupAccountName' with parameter (NULL, Administrators, ...), line (305) in file (synxcaccmg.cpp).
    I've attached the full logfille here.
    Looks like sapinst cannot get the system user parameters?
    How could I solve this? Any idea?

    This was the clue
    I read through the whole planning and preparation tutorial and through the preinstallation and installation tutorial.
    There's no recommondation to have the english os version installed.
    But better such an easy problem instead of a difficult one
    Thanks a lot!

  • Connect to Gateway Failed during database instance installation

    Hi All,
    I install Netweaver 2004 (6.4) ABAP stack.
    I've finished the installation of oracle 10.2 and central instance. During the installation of database instance, an error happens when "starting RFC jobs".
    In the logviewer:
    ERROR 2007-07-02 18:37:14
    FRF-00007  Unable to open RFC connection.
    ERROR 2007-07-02 18:37:14
    FRF-00063  RFC logon failed with message: Failed: SAP_CMINIT3 : rc=20 > Connect to SAP gateway failedConnect_PM  GWHOST=MYHOSTNAME, GWSERV=sapgw00, SYSNR=00
    In \program files\sapinst_instdir\<SID>\SYSTEM\ABAP\ORA\UC\DB\dev_rfc.trc:
    ERROR file opened at 20070702 183713 China Standard, SAP-REL 700,0,102 RFC-VER 3 896205 MT-SL
    T:744 Error in program 'sapinst': ======> SAP_CMINIT3 : rc=20 > Connect to SAP gateway failed
    Connect_PM  GWHOST=<b>MYHOSTNAME(>8 characters)</b>, GWSERV=sapgw00, SYSNR=00
    LOCATION    CPIC (TCP/IP) on local host
    ERROR       partner '10.10.10.10:3300' not reached
    TIME        Mon Jul 02 18:37:13 2007
    RELEASE     700
    COMPONENT   NI (network interface)
    VERSION     38
    RC          -10
    MODULE      nixxi.cpp
    LINE        2770
    DETAIL      NiPConnect2
    SYSTEM CALL connect
    ERRNO       10061
    ERRNO TEXT  WSAECONNREFUSED: Connection refused
    COUNTER     1
    >TS> Mon Jul 02 18:37:14 2007
    T:744 Error in program 'sapinst': ======> SAP_CMINIT3 : rc=20 > Connect to SAP gateway failed
    Connect_PM  GWHOST=MYHOSTNAME GWSERV=sapgw00, SYSNR=00
    LOCATION    CPIC (TCP/IP) on local host
    ERROR       partner '10.10.10.10:3300' not reached
    TIME        Mon Jul 02 18:37:14 2007
    RELEASE     700
    COMPONENT   NI (network interface)
    VERSION     38
    RC          -10
    MODULE      nixxi.cpp
    LINE        2770
    DETAIL      NiPConnect2
    SYSTEM CALL connect
    ERRNO       10061
    ERRNO TEXT  WSAECONNREFUSED: Connection refused
    COUNTER     2
    In \usr\sap\<SID>\DVEBMGS00\work\dev_rfc.trc:
    errors like this:
    >TS> Mon Jul 02 18:38:05 2007
    T:2284 Error in program 'igsmux': ======> Connect to SAP gateway failed
    Connect_PM  TPNAME=IGS.NW4, GWHOST=MYHOSTNAME, GWSERV=3300
    ERROR       partner '10.10.10.10:3300' not reached
    TIME        Mon Jul 02 18:38:05 2007
    RELEASE     700
    COMPONENT   NI (network interface)
    VERSION     38
    RC          -10
    MODULE      nixxi.cpp
    LINE        2770
    DETAIL      NiPConnect2
    SYSTEM CALL connect
    ERRNO       10061
    ERRNO TEXT  WSAECONNREFUSED: Connection refused
    COUNTER     52
    About my installation environment:
    Windows XP
    I've enlarged the page file size before installation.
    I've looked up the info from Internet, so I've checked the following:
    Under \system32\driver\etc\hosts
    10.10.10.10  <domainname> <hostname> is configued as a loopback address (I was prompted to use loopback adapter when installing Oracle, because my network adapter uses DHCP)
    Under \system32\driver\etc\services
    sapgw00     3300/tcp     # SAP System Gateway Central Instance Port
    sapgw00s     4800/tcp     # SAP System Gateway Security Port
    I can ping 10.10.10.10 (get response)
    (Any possibility that the installation user can not access 10.10.10.10:3300 ??, I don't know.)
    However, I can't logged on the system, because in the MMC, "disp+work.exe" turns yellow(Dialog Queue standstill) and then becomes gray.
    Some experts in some forums have commented that a long hostname (>8 characters) might be the problem. Is it true?
    (I've not installed the standalone gateway instance yet. ) When do I need to install the gateway instance? Now, I installed as follows: DB software->Central Instance->DB instance.
    Thanks in advance.
    Dennis

    Hi,
    I had a similar error, when installing SAP BW 3.1. on windows 2000 advanced server, oracle 9.2.0.6.
    FRF-00007 Unable to open RFC connection.
    ERROR 2006-12-04 07:03:21
    FRF-00063 RFC logon failed with message: Failed……………………………………
    However this holds good for NW 2004 also.
    To resolve this error you will need to upgrade your SAP kernel level.
    1)     Download the kernel.  i.e.  sapdbexe.sar and sapexe.sar.
    2)     uncar the files sapdbexe.sar and sapexe.sar using the sapcar.exe
    On dos prompt go to the particular directory where u have downloaded the above sar files using "cd" command.
    3)     To Uncar the files use this command on dos prompt
    SAPCAR -xvf <your-SAR-file> to uncar the files.
    4)     shut down sap using the MMC.
    then in  windows services.msc stop saposcol ,stop oracle service sapserviceSID and  and the sapSID_##
    5)     Now just copy the new kernel files you have uncared above into the /usr/sap/SID/exe/run/ directory of your system
    6)     Start the services you stopped and start SAP using the MMC.
    Now you should be able to logon. Sometimes the MMC shows the yellow status due to missing workprocess status. However the system should work fine.
    Manmath Manjunath

  • CALL TO SYSLIB FAILED ERROR WHILE SAP 4.7 DATABASE INSTANCE INSTALLATION

    I am trying to install SAP 4.7 with Oracle 9.2.0.1 on W2k SP3. I have installed central instance successfully. While installing Database instance, almost at the end of installation, i am facing problem with error message call to system library failed. i am attaching the log. Please help
    PHASE 2007-06-25 00:53:53
    SAP R/3 Enterprise 4.70 for Oracle
    PHASE 2007-06-25 00:53:53
    SAP Web Application Server
    PHASE 2007-06-25 00:53:53
    Request common parameters of SAP System
    PHASE 2007-06-25 00:53:54
    Create operating system accounts
    PHASE 2007-06-25 00:53:55
    Request operating system user information
    PHASE 2007-06-25 00:53:55
    Request operating system user information
    PHASE 2007-06-25 00:53:55
    Request operating system user information
    PHASE 2007-06-25 00:53:55
    Request operating system user information
    PHASE 2007-06-25 00:53:55
    Request operating system user information
    PHASE 2007-06-25 00:53:55
    Request operating system user information
    PHASE 2007-06-25 00:53:56
    Request operating system user information
    PHASE 2007-06-25 00:53:56
    Request operating system user information
    PHASE 2007-06-25 00:53:56
    Request operating system user information
    PHASE 2007-06-25 00:53:56
    Request operating system user information
    PHASE 2007-06-25 00:53:56
    Request operating system user information
    PHASE 2007-06-25 00:53:56
    Request operating system user information
    PHASE 2007-06-25 00:53:56
    Request operating system user information
    PHASE 2007-06-25 00:53:57
    Request operating system user information
    PHASE 2007-06-25 00:53:57
    Request operating system user information
    PHASE 2007-06-25 00:53:57
    Request operating system user information
    PHASE 2007-06-25 00:53:57
    Request operating system user information
    PHASE 2007-06-25 00:53:57
    Request operating system user information
    PHASE 2007-06-25 00:54:00
    Adapt filesystem
    PHASE 2007-06-25 00:54:00
    Prepare check/adapt SAP instance filesystem
    PHASE 2007-06-25 00:54:00
    Extract archives
    PHASE 2007-06-25 00:54:01
    Extract SAP System kernel archives
    PHASE 2007-06-25 00:54:02
    Create service ports
    PHASE 2007-06-25 00:54:02
    Generate instance profiles
    PHASE 2007-06-25 00:54:02
    Versionize default profile, instance profile and start profile
    INFO 2007-06-25 00:54:07
    Copying file E:/SAPinst ORACLE KERNEL/keydb.xml to: E:/SAPinst ORACLE KERNEL/keydb.3.xml.
    INFO 2007-06-25 00:54:07
    Creating file E:\SAPinst ORACLE KERNEL\keydb.3.xml.
    WARNING 2007-06-25 00:54:11
    Error 1314 (A required privilege is not held by the client.
    ) in execution of a 'CreateProcess' function, line (276), with parameter (E:\oracle\ora92/bin/sqlplus.exe /NOLOG @ora_scr_tmp.sql).
    ERROR 2007-06-25 00:54:11
    MDB-06029  Caught exception while trying to start script executing application: [E:\oracle\ora92/bin/sqlplus.exe].
    ERROR 2007-06-25 00:54:11
    MDB-06030  A call to the system library failed. System error message: [Unknown error].
    ERROR 2007-06-25 00:54:11
    MUT-02011  Internal error: A call to syslib failed. System error message: Unknown error.
    ERROR 2007-06-25 00:54:11
    FJS-00012  Error when executing script.

    What do mean with administrative priviledges? there is no administrativ priviledge on Windows. We only have a local group administrators.
    in 4.7 sapinst will put erpadm and sapserviceerp to the local administrators group. There is no need to do it manually.
    But this will not help in this case, because local Administrators did not have the rights
    - replace process level token
    - act as part of the operating system
    if you don't believe me have a look at gpedit.msc Local Computer Policy - Computer Configartion - Windows Settings - Security Settings - Local Policy - User Rights Assignemt.
    But as I already told you, log on and log off will fix this rights problem.
    2. regarding memory: RAM is physical Memory
    did I read right you are trying to install 4.7 on a 256 MB box?
    forget that!  256 MB is often too less for office application. Enterprise Style applications and database will need at least ten times 256 MB (and even that is too small).
    By the way Pagefile needs to be at least 4-8 GB.
    Peter
    Peter

  • Database Instance Installation

    Hi,
    I am installing Database Instance on a Solaris(5.8) Box.
    The Database we are using is Oracle 9i , which is a fresh installation.This installation have been done  by following the steps directed in the guide SAP WAS Application Server 6.40 on UNIX:Oracle and was done only when prompted by the Installation GUI for Database Instance.The Oracle Installation was successful
    However I received following error during the installation of database instance:-
    Assertion failed: Component OraDbServerConfig: Context parameter dbHome must be a valid  ORACLE_HOME directory.
    The fact is this Server already had another installation of Oracle which is Oracle 8i.
    Although I have already defined the correct Oracle Home directory for the new Oracle Installation .I even have modified oraInst.loc file .
    Even then it is not fixed.
    Can any one provide me some help.
    Regards
    Bipin Chandra Joshi

    Hi,
    I have the same problem on Windows 2003 with Oracle. The environment variable ORA_HOME is set for user <sid>adm. The correct dbhome is set in the registry.
    I don't know how I get forward.
    Thanks for help.
    Volker

  • Sap Solman 3.2 database instance installation

    Hi,
    We are installing SAP Solution Manager 3.2. The system is AIX 5.3.3 with Oracle database 9.2.0.6
    In database instance, Database Load step, the following error appear:
    ERROR      2005-10-05 17:54:17 [iaxxbdbld.cpp:1001]
               CR3ldStep::startR3ldProcesses lib=iamodload module=CR3ldStep
    MSC-01015  Process finished with error(s), check log file /tmp/sapinst_instdir/SOLMAN32/WEBAS_ABAP_ORA_NUC/DB
    /SAPAPPL0.log
    It fails with all process like this, with the same error.
    When I check SAPAPPL0.log, it show this error:
    /sapmnt/SSM/exe/R3load: sccsid @(#) $Id: //bas/640_REL/src/R3ld/R3load/R3ldmain.c#6 $ SAP
    /sapmnt/SSM/exe/R3load: version R6.40/V1.4
    /sapmnt/SSM/exe/R3load -dbcodepage 1100 -i /tmp/sapinst_instdir/SOLMAN32/WEBAS_ABAP_ORA_NUC/DB/SAPAPPL0.cmd -l /tmp/sapinst_instdir/SOLMAN32/WEBAS_ABAP_ORA_NUC/DB/SAPAPPL0.log -stop_on_error
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 12705
    DbSl Trace: CONNECT failed with sql error '12705'
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 12705
    DbSl Trace: CONNECT failed with sql error '12705'
    (DB) ERROR: db_connect rc = 256
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 12705
    DbSl Trace: CONNECT failed with sql error '12705'
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 12705
    DbSl Trace: CONNECT failed with sql error '12705'
    (DB) ERROR: DbSlErrorMsg rc = 99
    /sapmnt/SSM/exe/R3load: job finished with 1 error(s)
    /sapmnt/SSM/exe/R3load: END OF LOG: 20051005175348
    I have checked all the points in note 592657 without result
    Where sapinst reads environment variables ? I have changed all for user root (installer), orassm and ssmadm
    I need to resolve it ASAP
    Thank you,
    Ezequiel

    Hi,
    I am having the same with my installation on SolMan3.2 Oracle 9.2.0.7 patch.  The error is exactly the same as the one is showing here on all of the log for each task type. How to correct this error is greatly appreciate it. I have checked both notes mentioned in the post, and all environment checked. 
    However, when I ran the select statement:
    SELECT VALUE FROM V$NLS_PARAMETERS WHERE PARAMETER='NLS_CHARACTERSET';
    my result> WE8DEC
    my environment is set correctly for parameter: ORA_NLS33=AMERICAN_AMERICA.WE8DEC
    I am very appreciate any help due to the urgency of this post.
    Thanks,
    Steve Thai

  • Error during Database instance installation of NW04s Portal installation

    Hello All,
         This is our system environment:
       Portal - NW04s SR1 (SCS instance on one host) -- finished successfully
       Database - MS SQL Server 2005 on a separate host
    We are doing a domain installation. The database was installed successfully, but when trying to install the database instance during the NW04s installation, I am getting the following errors:
    <b>ERROR      2007-01-03 11:30:10 [syxxsyshlp.cpp:78]
               syslib::printOSError(const iastring &, int, DWORD, const iastring &, CMessage::eLogMessage) FSL-00001  System call failed. Error 5 (Access is denied.
    ) in execution of system call 'CopyFile' with parameter (
    DCASAPHR05\sapmnt\EPD\SYS\profile\DEFAULT.PFL,
    DCASAPHR05\sapmnt\EPD\SYS\profile\DEFAULT.1.PFL, FALSE), line (478) in file (synxcfile.cpp).
    ERROR      2007-01-03 11:30:10 [syxxcnode.cpp:402]
               CSyNodeImpl::move(const CSyPath &
    DCASAPHR05/sapmnt/EPD/SYS/profile/DEFAULT.1.PFL, ISyNode::CopyMoveMode_t 0x3) FSL-02039  Unable to move or rename node
    DCASAPHR05/sapmnt/EPD/SYS/profile/DEFAULT.PFL with type file/directory to
    DCASAPHR05/sapmnt/EPD/SYS/profile/DEFAULT.1.PFL: Overlapped I/O operation is in progress.
    ERROR      2007-01-03 11:30:10
               CJSlibModule::writeError_impl() MUT-03025  Caught ESyException in Modulecall: ESAPinstException: error text undefined.
    ERROR      2007-01-03 11:30:10 [iaxxgenimp.cpp:736]
               showDialog() FCO-00011  The step createDefaultProfile with step key |NW_Java_DB|ind|ind|ind|ind|0|0|NW_System|ind|ind|ind|ind|6|0|createDefaultProfile was executed with status ERROR .</b>
    Could anybody please help me through this process?
    Thanks much in advance,
    Sunitha

    Hi,
    I would try adding epdadm and SAPServiceEPD accounts to Administrators group and give Administrators full access to sapmnt shared area. Also double check SAP_EPD_GlobalAdmin domain admin authority and SAP_LocalAdmin and SAP_EPD_LocalAdmin accounts.
    Open
    DCASAPHR05\sapmnt\EPD\SYS\profile folder using explorer and created file and see if there is any authorzation issues with domail\sapinst account.
    good luck
    Kondala Rao

  • Database Instance installation in Distributed System?

    Hi gurus,
    When you install a distributed system(SQL Server, AS ABAP), after install the central service instance(SCS), you will perform the database instance installaiton. For this step, can you still run the installation on the SCS host for installing it or you must change to DB host and start the installation at DB host?  My memory is i can do it(install DB instance from the SCS host)  a long time ago, but with new new SR3, i cannot do it. Any body has any idea on it, thanks.
    Peter

    so why dont you take central system option.. if you want put both DB and center server on one system...
    If I am not replying in the line what your expecting.. please explain detailedly how you want install your system...

  • SAP NetWeaver Sneak Preview: Database Instance Installation

    ERROR 2005-09-04 12:54:31
    FSL-02015  Node C:/Documents/DATA does not exist.
    I get this error while installing SAP NetWeaver Sneak Preview.
    Could anybody help me.
    Thanks
    Ravi K

    Welcome to SDN
    check out the following thread, hopefully it answers your problem
    Cannot install database instance for ABAP version
    Regards
    Raja

  • Database instance installation failed

    Hi to All,
    I am using Solution Manager 3.2 to install database instance (MaxDB). Central instance has been installed successfuly. Durring installation I got the error:
    CJS-00030 Assertion failed:
    Connection failed to node sapserver:dbmsrv not found
    Please any help on it.
    Aleksandar

    Hi Alexander,
    Check whether dbmsrv instance exists in Max DB or it may be down as well.
    Regards,
    Mike

Maybe you are looking for