Database vs instance

Can anyone tell me the difference between a database and an instance?
I have heard the terms being used interchangably without knowing the actual meaning of the two.
Thanks.

It's a really messy situation, the way people make use of it. The context of the discussion is usually the only way to know what someone is actually referring to.
I've seen an Oracle instance defined as a set of certain processes running on a system. I think this includes such things as the database writer (DBWR), log writer (LGWR), and recovery processes (SMON and PMON). The OCP exam preparation book for the DBA exams has this definition in detail.
I've always considered a database to be a collection of tables that make up a specific system or serve a particular purpose, but the Oracle definition refers to a database as certain files that it controls.
The two terms are frequently used as though they are synonymous. When an instance is started, the background processes I mentioned above start running on the sytem. Then, when a database is opened, the control files associated with a particular database are opened and the datafiles associated with it are verified.
At the time a database is created with the CREATE DATABASE statement, certain datafiles and control files are defined and created. Then these files always make up the database that you've defined.
As an example, I could have a hardware system named SUPERCPU. When I start the instance named SUPERDB, some processes start running on SUPERCPU. There are a few files associated with this instance, which we generally don't deal with, except for the intialization parameters. Then when I open a database named PAYROLL, the files that were created with the CREATE DATABASE PAYROLL statement are opened and accessed by the processes running for the instance SUPERDB.
On most hardware platforms it is possible to have multiple instances running simultaneously. Each instance gets its own set of processes. It is possible to issue multiple CREATE DATABASE statements for a single instance, so you could have multiple databases running on a single instance. Most frequently, though I've seen just one database associated with one instance; if there's a need for another database, people will start another instance. Then, finally, of course, you could create a set of tables for your payroll application and call that your payroll database. You could also create a set of tables for your accounts receivable application and call that your AR database. These two sets of tables could reside in the same Oracle database.
The only way I've been able to keep these things straight as I move from installation to installation is to take them in context. Using the above example, if someone refers to SUPERDB, then they probably mean the instance running on SUPERCPU. If someone refers to the payroll database, they probably mean either a specific Oracle database or certain tables within some Oracle database.
As you can see, this whole issue is confusing. Take a look at some of the Oracle DBA books for the real definitions, then apply what you know to the context of the discussion.
null

Similar Messages

  • Want to upgrade RAC 10.2.0.2 database (2 instances) to 10.2.0.5. DB size is 4 TB. Contains mostly .pdf files, reports. I do not have test/upgrade environment. How much time I can expect it will take?

    Want to upgrade RAC 10.2.0.2 database (2 instances) to 10.2.0.5. DB size is 4 TB. Contains mostly .pdf files, reports. I do not have test/upgrade environment. How much time I can expect it will take?
    How much the upgrade process depends of database size, in this case?
    I have fast boxes  IBM AIX 5.3 , 64 b.

    Appreciate your comments ...
    Yes, sound stupid, regarding test environment, but in reality, is not that much:
    -I do have "preprod" environment, (2 instances RAC) same releases of OS, OCW,RAC ... but DB size is 40 GB!!!  It has all the objects as production, but (again but) it does not have physical standby, as production has. This is not that unusual, knowing that production DB grows very fast, and very large, and business do not want to keep preprod, dev, test databases same HUGE size as production is. Savings ...
    -My DB upgrade depends if application  running on top of it is certified for higher RDBMS release ... looks like they have some problems.
    -Very encouraging sounds comment that DB upgrade does not depend that much of the DB size ...
    - i do not recall from where this info came, but I have heard that R 11.* treats PDF files in different way that R10 did it ... and because of that, process of upgrading big databases which have many items of that type (pdf) can take very long. Any idea about this?
    -Brian, thx ... I'm trying hard to provide DB simmilar size in UPG environment and face all possible pitfalls before I go in production...thx for youe advice. I'm relly interested in how upgrade to 11.* from 10.* traets my pdf-s ... All my TBs comming from pdfs. Everi advice will be wellcome ...

  • Automatic shutdown of an database's instance

    For some unknown reasons, an instance of our database was shutdown automatically almost every night. I have to run Oracle Enterprice Manager to re-open the instance.
    I checked Windows Event Viewer but I could not find any info to determine which cause our database's instance shutting down. Our Oracle version: 9.2
    Anyone know what would have caused an automatic shutdown of an database instance in Oracle?
    Please help
    Thanks

    Thanks for all responses to my question.
    I found the cause of automatic terminating database instance.
    I looked into the Oracle trace log and I found the error 340: IO file lock by other process. Then I googled this error and found a related article. One of the oracle files was locked by Veritas File Backup Exec process to perform nightly backup.
    Thanks
    Norm

  • Need help to create a login for maintenance of a single database in a multiple databases, single instance environment

    Hi,
    We are in the process of consolidating several databases on a single instance of SQL Server 2012.
    Databases are developed by outside vendors; they have to be able to install and support their databases but they shouldn't be able to do any thing with the other databases.
    When I tried to migrate the first database, the vendor told me that on the former server he used the sa account in some batch.
    On a previous thread
    https://social.technet.microsoft.com/Forums/sqlserver/en-US/dc1f802f-d8de-4e2b-87e5-ccb289593fb7/security-for-multiple-applications-on-a-single-sql-server-2012-instance?forum=sqlsecurity
    it was suggested to me that I create a login for each vendor and that this login should map a user in their respective databases.
    To test, I simulated the process in a test database:
    1 - I create the login and I scripted the command:
    USE [master]
    GO
    /* For security reasons the login is created disabled and with a random password. */
    /****** Object:  Login [M02_Test]    Script Date: 2014-12-02 16:23:58 ******/
    CREATE LOGIN [M02_Test] WITH PASSWORD=N'ÈS^y¡¶=Å€"+y¤j|úªhÖféÎЕœEu
    c', DEFAULT_DATABASE=[M02], DEFAULT_LANGUAGE=[us_english], CHECK_EXPIRATION=OFF, CHECK_POLICY=OFF
    GO
    ALTER LOGIN [M02_Test] DISABLE
    GO
    2 - I create the user and scripted it
    USE [M02]
    GO
    /****** Object:  User [M02_Test]    Script Date: 2014-12-02 16:29:41 ******/
    CREATE USER [M02_Test] FOR LOGIN [M02_Test] WITH DEFAULT_SCHEMA=[dbo]
    GO
    Questions:
    What should we do with te scrambled password: is it saved as it was entered and should it be kept somewhere in a safe place?
    Would that do the job for the vendor who used sa before?
    Thanks for your advice

    I'm not sure why you would save the script. Why not create the login, in one way or another give the vendor the password. Keep the login disabled until needed.
    I don't recall exactly what we said last time, but it occurs to me that the application setup things on server level. Jobs is the prime thing that comes to mind, but there could be other things.
    Now, here is an important observation. As long as the vendor's application was alone on the server, that was OK, and it was OK to give the vendor sysadmin rights. In this situation this is less OK, and as we said, you should only give the vendor db_owner
    in the database.
    But the vendor will need to tell you what they do on server-level. They should know this - unless they sell their app as a "alone-on-a-server application". (And there are indeed such applications out there, even from Microsoft.) But there is a
    risk that they will bill you extra if you make their installation more difficult.
    Maybe you will have to give some vendors sysadmin for the installation, but in such case, you should ask them why they need it. If they don't, give them db_owner, and they will have to find out their hard way. (And you don't pay them for learning
    their own application.)
    Erland Sommarskog, SQL Server MVP, [email protected]

  • How to add new database server instance in Sharepoint 2010?

    I have installed SQL server 2012 BI edition and I have been trying to add new SQL Server reporting services in Sharepoint 2010 central admin .But When I click "ok "after giving the new SQL server name in the SQL Server reporting service creating
    process, I get an error stating "This user does not have permission on the SQL server".Though ,I have given this user dbcreator role on that particular database instance.Could you please help me out?

    Does the initial installation account used to set-up the farm have these permissions on the database?
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • How to backup Oracle Database Single Instance using RMAN

    Folks,
    Hello. I am using Oracle Database Server 11gR1 with Operating System Oracle Linux 5.10.
    I understand how to backup database instance in SQL Server with Windows. But don't really understand how to backup database instance in Oracle with Linux.
    I have done Cold backup and Hot backup for the database instance HRCS90 but both get the same error message.
    Cold backup is below:
    SQL> startup
    ORACLE instance started.
    Total System Global Area  538677248 bytes
    Fixed Size                  2146024 bytes
    Variable Size             528482584 bytes
    Database Buffers            4194304 bytes
    Redo Buffers                3854336 bytes
    Database mounted.
    Database opened.
    SQL> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    RMAN> backup database;
    Starting backup at 25-NOV-13
    using target database control file instead of recovery catalog
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of backup command at 11/25/2013 14:26:52
    RMAN-06171: not connected to target database
    RMAN> backup HRCS90
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00558: error encountered while parsing input commands
    RMAN-01009: syntax error: found "identifier": expecting one of: "archivelog, auxiliary, as, backup, backupset, blocks, channel, check, copy, copies, controlfilecopy, cumulative, current, database, datafile, datafilecopy, device, diskratio, db_recovery_file_dest, db_file_name_convert, duration, filesperset, for, format, from, full, force, file, incremental, keep, (, maxsetsize, nochecksum, noexclude, nokeep, not, proxy, pool, reuse, recovery, section, skip, spfile, skip readonly, setsize, tablespace, tag, to, validate"
    RMAN-01008: the bad identifier was: HRCS90
    RMAN-01007: at line 1 column 8 file: standard input
    RMAN> backup database HRCS90
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00558: error encountered while parsing input commands
    RMAN-01009: syntax error: found "identifier": expecting one of: "archivelog, auxiliary, backup, backupset, channel, copy, controlfilecopy, current, database, datafile, datafilecopy, delete, diskratio, db_recovery_file_dest, filesperset, format, from, force, file, include, keep, (, maxsetsize, noexclude, nokeep, not, pool, plus, reuse, recovery, section, ;, skip, spfile, skip readonly, setsize, tablespace, tag, to"
    RMAN-01008: the bad identifier was: HRCS90
    RMAN-01007: at line 1 column 17 file: standard input
    While the database instance HRCS90 is startup, I do hot backup using the same commands and get the same error message with above cold backup.
    My question is:
    Can any folk tell me the specific steps (command by command) to backup a single database instance in Oracle using RMAN ?
    Thanks.

    Folks,
    Hello. Thanks a lot for replying. My database instance named HRCS90 is going to be backed up. My backup directory is /backup_Database_Instance_HRCS90.
    If database in open state, we must back up in archive log. If database in mount state but not open, we can back up in noarchive log.
    I have tried to back up HRCS90 in archive and noarchive log when database in mount state but not open as below:
    SQL>startup mount;
    SQL>exit
    [user@linux bin]$./rman
    RMAN>connect target;
    RMAN> CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT '/backup_Database_Instance_HRCS90/full_%u_%s_%p';
    new RMAN configuration parameters:
    CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT   '/backup_Database_Instance_HRCS90/full_%u_%s_%p';
    new RMAN configuration parameters are successfully stored
    released channel: ORA_DISK_1
    RMAN> CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 360 DAYS;
    new RMAN configuration parameters:
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 360 DAYS;
    new RMAN configuration parameters are successfully stored
    RMAN> backup as backupset database plus archivelog;
    Starting backup at 01-DEC-13
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=44 device type=DISK
    specification does not match any archived log in the recovery catalog
    backup cancelled because all files were skipped
    Finished backup at 01-DEC-13
    Starting backup at 01-DEC-13
    using channel ORA_DISK_1
    channel ORA_DISK_1: starting full datafile backup set
    channel ORA_DISK_1: specifying datafile(s) in backup set
    input datafile file number=00001 name=/u01/oradata/HRCS90/system01.dbf
    input datafile file number=00090 name=/u01/oradata/HRCS90/psimage.dbf
    input datafile file number=00060 name=/u01/oradata/HRCS90/gpapp.dbf
    input datafile file number=00119 name=/u01/oradata/HRCS90/tlwork.dbf
    input datafile file number=00102 name=/u01/oradata/HRCS90/pttlrg.dbf
    input datafile file number=00054 name=/u01/oradata/HRCS90/faapp.dbf
    input datafile file number=00110 name=/u01/oradata/HRCS90/saapp.dbf
    input datafile file number=00101 name=/u01/oradata/HRCS90/pttbl.dbf
    input datafile file number=00002 name=/u01/oradata/HRCS90/sysaux01.dbf
    input datafile file number=00106 name=/u01/oradata/HRCS90/py0lrg.dbf
    input datafile file number=00004 name=/u01/oradata/HRCS90/psdefault.dbf
    input datafile file number=00117 name=/u01/oradata/HRCS90/tlapp.dbf
    input datafile file number=00007 name=/u01/oradata/HRCS90/adapp.dbf
    input datafile file number=00082 name=/u01/oradata/HRCS90/paapp.dbf
    input datafile file number=00074 name=/u01/oradata/HRCS90/hrsapp.dbf
    input datafile file number=00092 name=/u01/oradata/HRCS90/ptamsg.dbf
    input datafile file number=00056 name=/u01/oradata/HRCS90/fgapp.dbf
    input datafile file number=00114 name=/u01/oradata/HRCS90/stapp.dbf
    input datafile file number=00005 name=/u01/oradata/HRCS90/aaapp.dbf
    input datafile file number=00118 name=/u01/oradata/HRCS90/tllarge.dbf
    input datafile file number=00009 name=/u01/oradata/HRCS90/avapp.dbf
    input datafile file number=00065 name=/u01/oradata/HRCS90/hrapp2.dbf
    input datafile file number=00078 name=/u01/oradata/HRCS90/hrwork.dbf
    input datafile file number=00116 name=/u01/oradata/HRCS90/stwork.dbf
    input datafile file number=00077 name=/u01/oradata/HRCS90/hrswork.dbf
    input datafile file number=00115 name=/u01/oradata/HRCS90/stlarge.dbf
    input datafile file number=00049 name=/u01/oradata/HRCS90/epapp.dbf
    input datafile file number=00098 name=/u01/oradata/HRCS90/ptprc.dbf
    input datafile file number=00037 name=/u01/oradata/HRCS90/eoewapp.dbf
    input datafile file number=00032 name=/u01/oradata/HRCS90/eoecapp.dbf
    input datafile file number=00086 name=/u01/oradata/HRCS90/piapp.dbf
    input datafile file number=00099 name=/u01/oradata/HRCS90/ptprjwk.dbf
    input datafile file number=00019 name=/u01/oradata/HRCS90/cularge.dbf
    input datafile file number=00035 name=/u01/oradata/HRCS90/eoeiapp.dbf
    input datafile file number=00045 name=/u01/oradata/HRCS90/eoppapp.dbf
    input datafile file number=00076 name=/u01/oradata/HRCS90/hrslarge.dbf
    input datafile file number=00044 name=/u01/oradata/HRCS90/eoltapp.dbf
    input datafile file number=00094 name=/u01/oradata/HRCS90/ptappe.dbf
    input datafile file number=00050 name=/u01/oradata/HRCS90/eplarge.dbf
    input datafile file number=00084 name=/u01/oradata/HRCS90/pcapp.dbf
    input datafile file number=00111 name=/u01/oradata/HRCS90/sacapp.dbf
    input datafile file number=00100 name=/u01/oradata/HRCS90/ptrpts.dbf
    input datafile file number=00023 name=/u01/oradata/HRCS90/eobfapp.dbf
    input datafile file number=00096 name=/u01/oradata/HRCS90/ptcmstar.dbf
    input datafile file number=00108 name=/u01/oradata/HRCS90/pylarge.dbf
    input datafile file number=00016 name=/u01/oradata/HRCS90/cularg1.dbf
    input datafile file number=00018 name=/u01/oradata/HRCS90/cularg3.dbf
    input datafile file number=00025 name=/u01/oradata/HRCS90/eocmapp.dbf
    input datafile file number=00027 name=/u01/oradata/HRCS90/eocmwrk.dbf
    input datafile file number=00029 name=/u01/oradata/HRCS90/eoculrg.dbf
    input datafile file number=00033 name=/u01/oradata/HRCS90/eoeclrg.dbf
    input datafile file number=00036 name=/u01/oradata/HRCS90/eoeilrg.dbf
    input datafile file number=00039 name=/u01/oradata/HRCS90/eoewwrk.dbf
    input datafile file number=00041 name=/u01/oradata/HRCS90/eoiulrg.dbf
    input datafile file number=00046 name=/u01/oradata/HRCS90/eopplrg.dbf
    input datafile file number=00048 name=/u01/oradata/HRCS90/eotplrg.dbf
    input datafile file number=00053 name=/u01/oradata/HRCS90/erwork.dbf
    input datafile file number=00061 name=/u01/oradata/HRCS90/gpdeapp.dbf
    input datafile file number=00072 name=/u01/oradata/HRCS90/hrlarg1.dbf
    input datafile file number=00079 name=/u01/oradata/HRCS90/htapp.dbf
    input datafile file number=00087 name=/u01/oradata/HRCS90/pilarge.dbf
    input datafile file number=00120 name=/u01/oradata/HRCS90/waapp.dbf
    channel ORA_DISK_1: starting piece 1 at 01-DEC-13
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of backup plus archivelog command at 12/01/2013 17:52:45
    ORA-19504: failed to create file "/backup_Database_Instance_HRCS90/full_0boqei2c_11_1"
    ORA-27040: file create error, unable to create file
    Linux-x86_64 Error: 13: Permission denied
    RMAN>
    RMAN>
    RMAN>
    RMAN>
    RMAN> backup as backupset database;
    Starting backup at 01-DEC-13
    using channel ORA_DISK_1
    channel ORA_DISK_1: starting full datafile backup set
    channel ORA_DISK_1: specifying datafile(s) in backup set
    input datafile file number=00001 name=/u01/oradata/HRCS90/system01.dbf
    input datafile file number=00090 name=/u01/oradata/HRCS90/psimage.dbf
    input datafile file number=00060 name=/u01/oradata/HRCS90/gpapp.dbf
    input datafile file number=00119 name=/u01/oradata/HRCS90/tlwork.dbf
    input datafile file number=00102 name=/u01/oradata/HRCS90/pttlrg.dbf
    input datafile file number=00054 name=/u01/oradata/HRCS90/faapp.dbf
    input datafile file number=00110 name=/u01/oradata/HRCS90/saapp.dbf
    input datafile file number=00101 name=/u01/oradata/HRCS90/pttbl.dbf
    input datafile file number=00002 name=/u01/oradata/HRCS90/sysaux01.dbf
    input datafile file number=00106 name=/u01/oradata/HRCS90/py0lrg.dbf
    input datafile file number=00004 name=/u01/oradata/HRCS90/psdefault.dbf
    input datafile file number=00117 name=/u01/oradata/HRCS90/tlapp.dbf
    input datafile file number=00007 name=/u01/oradata/HRCS90/adapp.dbf
    input datafile file number=00082 name=/u01/oradata/HRCS90/paapp.dbf
    input datafile file number=00074 name=/u01/oradata/HRCS90/hrsapp.dbf
    input datafile file number=00092 name=/u01/oradata/HRCS90/ptamsg.dbf
    input datafile file number=00056 name=/u01/oradata/HRCS90/fgapp.dbf
    input datafile file number=00114 name=/u01/oradata/HRCS90/stapp.dbf
    input datafile file number=00005 name=/u01/oradata/HRCS90/aaapp.dbf
    input datafile file number=00118 name=/u01/oradata/HRCS90/tllarge.dbf
    input datafile file number=00009 name=/u01/oradata/HRCS90/avapp.dbf
    input datafile file number=00065 name=/u01/oradata/HRCS90/hrapp2.dbf
    input datafile file number=00078 name=/u01/oradata/HRCS90/hrwork.dbf
    input datafile file number=00116 name=/u01/oradata/HRCS90/stwork.dbf
    input datafile file number=00077 name=/u01/oradata/HRCS90/hrswork.dbf
    input datafile file number=00115 name=/u01/oradata/HRCS90/stlarge.dbf
    input datafile file number=00049 name=/u01/oradata/HRCS90/epapp.dbf
    input datafile file number=00098 name=/u01/oradata/HRCS90/ptprc.dbf
    input datafile file number=00037 name=/u01/oradata/HRCS90/eoewapp.dbf
    input datafile file number=00032 name=/u01/oradata/HRCS90/eoecapp.dbf
    input datafile file number=00086 name=/u01/oradata/HRCS90/piapp.dbf
    input datafile file number=00099 name=/u01/oradata/HRCS90/ptprjwk.dbf
    input datafile file number=00019 name=/u01/oradata/HRCS90/cularge.dbf
    input datafile file number=00035 name=/u01/oradata/HRCS90/eoeiapp.dbf
    input datafile file number=00045 name=/u01/oradata/HRCS90/eoppapp.dbf
    input datafile file number=00076 name=/u01/oradata/HRCS90/hrslarge.dbf
    input datafile file number=00044 name=/u01/oradata/HRCS90/eoltapp.dbf
    input datafile file number=00094 name=/u01/oradata/HRCS90/ptappe.dbf
    input datafile file number=00050 name=/u01/oradata/HRCS90/eplarge.dbf
    input datafile file number=00084 name=/u01/oradata/HRCS90/pcapp.dbf
    input datafile file number=00111 name=/u01/oradata/HRCS90/sacapp.dbf
    input datafile file number=00100 name=/u01/oradata/HRCS90/ptrpts.dbf
    input datafile file number=00023 name=/u01/oradata/HRCS90/eobfapp.dbf
    input datafile file number=00096 name=/u01/oradata/HRCS90/ptcmstar.dbf
    input datafile file number=00108 name=/u01/oradata/HRCS90/pylarge.dbf
    input datafile file number=00016 name=/u01/oradata/HRCS90/cularg1.dbf
    input datafile file number=00018 name=/u01/oradata/HRCS90/cularg3.dbf
    input datafile file number=00025 name=/u01/oradata/HRCS90/eocmapp.dbf
    input datafile file number=00027 name=/u01/oradata/HRCS90/eocmwrk.dbf
    input datafile file number=00029 name=/u01/oradata/HRCS90/eoculrg.dbf
    input datafile file number=00033 name=/u01/oradata/HRCS90/eoeclrg.dbf
    input datafile file number=00036 name=/u01/oradata/HRCS90/eoeilrg.dbf
    input datafile file number=00039 name=/u01/oradata/HRCS90/eoewwrk.dbf
    input datafile file number=00041 name=/u01/oradata/HRCS90/eoiulrg.dbf
    input datafile file number=00046 name=/u01/oradata/HRCS90/eopplrg.dbf
    input datafile file number=00048 name=/u01/oradata/HRCS90/eotplrg.dbf
    input datafile file number=00053 name=/u01/oradata/HRCS90/erwork.dbf
    input datafile file number=00061 name=/u01/oradata/HRCS90/gpdeapp.dbf
    input datafile file number=00072 name=/u01/oradata/HRCS90/hrlarg1.dbf
    input datafile file number=00079 name=/u01/oradata/HRCS90/htapp.dbf
    input datafile file number=00087 name=/u01/oradata/HRCS90/pilarge.dbf
    input datafile file number=00120 name=/u01/oradata/HRCS90/waapp.dbf
    channel ORA_DISK_1: starting piece 1 at 01-DEC-13
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 12/01/2013 17:56:51
    ORA-19504: failed to create file "/backup_Database_Instance_HRCS90/full_0coqeia5_12_1"
    ORA-27040: file create error, unable to create file
    Linux-x86_64 Error: 13: Permission denied
    As we see the above last 2 commands, either archive or noarchive, I get the same error:
    Archive: ORA-19504: "failed to create file /backup_Database_Instance_HRCS90/full_0boqei2c_11_1"
    Noarchive: ORA-19504: "failed to create file /backup_Database_Instance_HRCS90/full_0coqeia5_12_1" 
    My question is:
    What is the file "full_0boqei2c_11_1" or "full_0coqeia5_12_1" ?  How to solve the above error ?
    Thanks.

  • Multiple Databases One Instance

    Hello,
    Is it possible to have multiple MaxDB databases installed within one MaxDB instance?  Everything I've read about MCOD leads me to avoid this if possible; however, budget limitations leave our hardware lacking the ability to host multiple DB instances.
    It will be a NetWeaver WebAS ABAP and a NetWeaver WebAS J2EE instance being installed (ECC and EP).  I've worked with MCOD systems before, and system copies were cumbersome.  More or less I did a DB specific migration for the ABAP, and then did a R3Load for the J2EE.  If that is the only option, then that is the only option.  I would just like to be able to document this ahead of time.
    Thank you,
    Zach

    Mark,
    Thank you for the reply.  I'm going through this presentation; however, it looks very familiar.  MCOD does allow
    for different SAP components to be independently installed into 1 MaxDB instance, but is it possible to do system
    refreshes of these servers easily?  If I remember correctly, I was able to use the SAP provided tools for the first
    component.  But every other component had to be done independently using R3Load because the SAP Tool
    using database specific copies required initialization (formatting) of the database.
    I've been reading a current post in this forum regarding features of MaxDB 7.8.  I suppose the question is now:
    what is the lesser evil?  MCOD (NetWeaver WebAS ABAP & NetWeaver WebAS J2EE) or each component in
    its own MaxDB instance on the same host.
    Thanks,
    Zach

  • Lync Monitoring Database, Named Instance, Always On

    I have a SQL Server 2012 named instance (LYNC_MONITOR) on a specified port which is Always On enabled for deploying LYNC 2012 Monitoring and Reporting. I had moved the databases from another DB server into a Always On AG, which works fine, and set
    up Listener on the defined port. My issue comes in when changing the topology. In the topology builder, the requested information is server name and instance (default or named). Well an AG Listener on a specified port is neither of those. If the instance was
    actually default, then it would be no problem (but the default instance is SharePoint). So I need to be able to provide the Listener/port combo as the server name without specifying the instance.  Currently it's just pointed to the primary node (server/instance).
    Does anybody know of a way to get around this?   Thanks much.
    Tim Hacker

    Currently SQL Always On is not supported for Lync 2013. That being said have you looked at setting up a SQL Alias (cliconfg.exe) on the Front Ends? I've used this when the SQL port is not the standard one: http://blogs.technet.com/b/nexthop/archive/2011/04/12/using-lync-server-2010-with-a-custom-sql-server-network-configuration.aspx
    Please mark posts as answers/helpful if it answers your question.
    Blog
    Lync Validator - Used to assist in the validation and documentation of Lync Server 2013.

  • JumpStartKit install hangs at 87% complete during database creation / instance configuration

    Hello folks, I'm wanting to evaluate Oracle WebCenter Portal 11.1.1.8 (huge improvement over 11.1.1.7, which I have already gave a quick try in the VDI provided by Oracle).
    So I found out about this Jump Start Kit, which installs each required piece once you've got a properly configured Linux environment. I had some fun with the prereqs but now that's all completed and I got SO EXCITED to make it past "STEP 4".
    So now I'm encountering the same issue during installation -- in STEP 6 of 22 Configuration of Database Instance (Completing Database Creation) it gets to 87% complete and then nothing seems to happen, it never gets beyond that point even if I wait 10 more hours:
    NOTE: I suspect my issue is not specific to the "Jump Start Kit", but rather it is something others have encountered during the Database creation/configuration step of the Oracle Universal Installer in general. And hopefully others have solved it.
    "/opt/oracle/portal" is my INSTALL_DIR ; I had launched the JSK installer with this command:
    ./runme INSTANCE_PASSWORD=apwd ROOT_PASSWORD=rpwd DOWNLOAD_DIR=/media/sf_Downloads/JSKfiles INSTALL_DIR=/opt/oracle/portal
    - The installer makes it this far, before it seems to get "stuck" -- even after many hours there is no change, HD is not doing anything, CPU stays at <5% usage:
    rtkit.main.JSKStarter - launchScript:172 - Tue Jun 10 15:41:38 MDT 2014: BEGIN STEP 6 of 22: Configuration of Database Instance. Estimated time is around 5 minutes. Please wait..
    10/06/2014 15:41:38.545 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 -
    10/06/2014 15:41:48.222 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - Copying database files
    10/06/2014 15:41:48.413 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 1% complete
    10/06/2014 15:41:52.894 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 3% complete
    10/06/2014 15:41:52.915 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 11% complete
    10/06/2014 15:42:02.917 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 18% complete
    10/06/2014 15:42:32.920 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 26% complete
    10/06/2014 15:42:42.638 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 37% complete
    10/06/2014 15:42:42.640 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - Creating and starting Oracle instance
    10/06/2014 15:42:48.568 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 40% complete
    10/06/2014 15:42:56.827 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 45% complete
    10/06/2014 15:42:57.357 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 46% complete
    10/06/2014 15:42:57.526 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 47% complete
    10/06/2014 15:42:57.627 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 48% complete
    10/06/2014 15:42:57.834 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 49% complete
    10/06/2014 15:44:42.915 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 54% complete
    10/06/2014 15:44:42.963 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 59% complete
    10/06/2014 15:44:43.036 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 60% complete
    10/06/2014 15:44:43.452 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 61% complete
    10/06/2014 15:44:43.452 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 64% complete
    10/06/2014 15:44:43.453 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - Completing Database Creation
    10/06/2014 15:44:43.493 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 68% complete
    10/06/2014 15:44:43.510 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 72% complete
    10/06/2014 15:44:43.571 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 76% complete
    10/06/2014 15:45:01.516 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 87% complete
    I am using VirtualBox on Windows 7, I have tried it multiple times, first with the guest OS as Oracle Linux 6, and then Oracle Linux 5 (fun learning about updating the version of Java!).
    It always gets to the same point and then it just seems to do nothing -- no progress, but no error message on-screen (see log files below). But it seems to be using less than 5% CPU usage... and waiting 10 hours makes no difference.
    Based on what I found in tons of Google searching, I tried increasing my swap file, adding more memory and HD space (12GB RAM and 10GB sap and 20GB free hard drive space) but still nothing changed.
    In post #2 of this thread I will separately provide the logging details, which I hope will be helpful.
    Thanks in advance!
    Darren.
    PS: moderator, I attempted to create this thread in other Spaces because I did not know about this "Portal JSK" specific one -- was that why my thread was rejected? NO REASON WAS GIVEN. If that WAS the reason, I have to say that it will be nearly impossible for anyone who is able to help me to actually FIND this thread here because as I said I do not think it specific to ONLY the Portal JSK. (But I will post it only here just in case that's the reason for the previous rejections)

    First off, thank you very much for not just deleting the other 2 threads -- I intentionally created them in the other 2 spaces that MIGHT find a set of eyes that can help -- but in both I linked to THIS thread because this is the specific product. So this is the only place replies will be found therefore no "duplication" to worry about... but as I said this is likely not specific to PortalJSK since others on the internet have described a similar problem during the Oracle database installation.
    Second of all. here we go, the log contents...
    ...So in the hope that I could troubleshoot based on some error logging, I had a look inside "/opt/oracle/portal/db/OraInventory/logs/"...
    - "/opt/oracle/portal/db/OraInventory/logs/oraInstall2014-06-10_03-27-37PM.err" is empty (0 bytes),
    - "/opt/oracle/portal/db/OraInventory/logs/installActions2014-06-10_03-27-37PM.log" * (2.3MB) ends with...
    INFO: Terminating all background operations
    INFO: Terminated all background operations
    INFO: Successfully executed the flow in SILENT mode
    INFO: Finding the most appropriate exit status for the current application
    INFO: Exit Status is 0
    INFO: Shutdown Oracle Database 11g Release 2 Installer
    INFO: Unloading Setup Driver
    [eof]
    I am not sure of the value of the additional log files inside "/opt/oracle/run/logs/", here is what they contain...
    - all of the "/opt/oracle/run/logs/xyz_NofN.zip.unzip.out" files are empty (0 bytes).
    - "/opt/oracle/run/logs/install_commands.log" is tiny, it just has this:
    /media/sf_Downloads/JSKfiles/DB/database/runInstaller -invPtrLoc /opt/oracle/run/linux64/dborainst.loc  -ignoreSysPrereqs  -ignorePrereq -force -silent -waitforcompletion -responseFile /opt/oracle/run/linux64/db_generated.rsp
    /opt/oracle/portal/db/ohome/bin/netca /orahome /opt/oracle/portal/db/ohome /orahnam orcl /instype typical /inscomp client,oraclenet,javavm,server,ano /insprtcl tcp /cfg local /authadp NO_VALUE /responseFile /opt/oracle/run/linux64/netca.rsp /silent
    /opt/oracle/portal/db/ohome/bin/dbca -silent -responseFile /opt/oracle/run/linux64/dbca.rsp  -sampleSchema true -oratabLocation ORATAB
    - "webtier_prereqs.log" and "ecm_prereqs.log" and "wcprereqs.log" all say that all tests passed.
    (Tests for HD and RAM space and swap size and # of processes etc. are all SUCCESS; and all required packages are installed and high enough version, etc.)
    - "/opt/oracle/run/logs/dbprereqs_log.txt" says this:
    Starting Oracle Universal Installer...
    Checking Temp space: must be greater than 120 MB.   Actual 8855 MB    Passed
    Checking swap space: must be greater than 150 MB.   Actual 4031 MB    Passed
    Preparing to launch Oracle Universal Installer from /opt/oracle/portal/tmpdir/OraInstall2014-06-10_03-26-23PM. Please wait ...[WARNING] [INS-13014] Target environment do not meet some optional requirements.
       CAUSE: Some of the optional prerequisites are not met. See logs for details. /opt/oracle/portal/db/OraInventory/logs/installActions2014-06-10_03-26-23PM.log
       ACTION: Identify the list of failed prerequisite checks from the log: /opt/oracle/portal/db/OraInventory/logs/installActions2014-06-10_03-26-23PM.log. Then either from the log file or from installation manual find the appropriate configuration to meet the prerequisites and fix it manually.
    - "/opt/oracle/run/logs/wls-install.log" is the most confusing, maybe this is the reason for getting "stuck"?
    2014-06-10 15:24:38,139 WARN  [home] com.bea.cie.gpr.internal.model.JvmTargetManagerImpl - Property value for linux32_jdk160_29b11.zip not found..
    2014-06-10 15:24:38,143 WARN  [home] com.bea.cie.gpr.internal.model.JvmTargetManagerImpl - Property value for linux_ia32_jrockit_160_29_D1.2.0-10_jdk.zip not found..
    2014-06-10 15:24:38,206 WARN  [home] com.bea.cie.gpr.internal.model.JvmTargetManagerImpl - Property value for linux32_jdk160_29b11.zip not found..
    2014-06-10 15:24:38,209 WARN  [home] com.bea.cie.gpr.internal.model.JvmTargetManagerImpl - Property value for linux_ia32_jrockit_160_29_D1.2.0-10_jdk.zip not found..
    2014-06-10 15:24:38,225 WARN  [home] com.bea.plateng.wizard.installer.silent.tasks.SilentBEAHomeTask - /opt/oracle/portal/fmw directory is not empty. Proceed with installation?
    2014-06-10 15:24:39,223 WARN  [ocmCredVerify] com.bea.plateng.wizard.installer.helpers.OCMInstallHelper - Failed test connection
    java.lang.reflect.InvocationTargetException
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at com.bea.plateng.wizard.installer.helpers.OCMInstallHelper.testConnection(OCMInstallHelper.java:92)
      at com.bea.plateng.wizard.installer.silent.tasks.OCMCredVerifySilentTask.execute(OCMCredVerifySilentTask.java:35)
      at com.bea.plateng.wizard.silent.tasks.AbstractSilentTask.run(AbstractSilentTask.java:28)
      at java.lang.Thread.run(Thread.java:662)
    Caused by: com.bea.plateng.wizard.installer.helpers.OCMException: Connection failed in SSL peer verificaition.
      at com.bea.plateng.wizard.installer.helpers.OCMHelper.testSimpleConnection(OCMHelper.java:54)
      at com.bea.plateng.wizard.installer.helpers.OCMHelper.testConnection(OCMHelper.java:145)
      ... 8 more
    2014-06-10 15:24:39,228 WARN  [ocmCredVerify] com.bea.plateng.wizard.installer.silent.tasks.OCMCredVerifySilentTask - OCMInstallException:
    com.bea.plateng.wizard.installer.helpers.OCMInstallException
      at com.bea.plateng.wizard.installer.helpers.OCMInstallHelper.testConnection(OCMInstallHelper.java:96)
      at com.bea.plateng.wizard.installer.silent.tasks.OCMCredVerifySilentTask.execute(OCMCredVerifySilentTask.java:35)
      at com.bea.plateng.wizard.silent.tasks.AbstractSilentTask.run(AbstractSilentTask.java:28)
      at java.lang.Thread.run(Thread.java:662)
    2014-06-10 15:25:49,347 INFO  [Thread-13] com.oracle.cie.domain.TemplateImporter - Domain Extension Successful!
    2014-06-10 15:25:49,350 INFO  [runScript] com.oracle.cie.domain.script.ScriptExecutor - close template
    2014-06-10 15:25:49,351 INFO  [runScript] com.oracle.cie.domain.script.ScriptExecutor - succeed: close template
    2014-06-10 15:25:49,351 INFO  [runScript] com.oracle.cie.domain.script.ScriptExecutor - read domain from "/opt/oracle/portal/fmw/wlserver_10.3/samples/domains/medrec-spring"
    2014-06-10 15:25:49,405 INFO  [runScript] com.oracle.cie.domain.script.ScriptExecutor - succeed: read domain from "/opt/oracle/portal/fmw/wlserver_10.3/samples/domains/medrec-spring"
    2014-06-10 15:25:49,405 INFO  [runScript] com.oracle.cie.domain.script.ScriptExecutor - succeed: update domain
    2014-06-10 15:25:49,406 INFO  [runScript] com.oracle.cie.domain.script.ScriptExecutor - close template
    2014-06-10 15:25:49,406 INFO  [runScript] com.oracle.cie.domain.script.ScriptExecutor - succeed: close template
    2014-06-10 15:25:49,743 INFO  [WizardController] com.bea.plateng.wizard.silent.tasks.LogTask - The installation was successfull!
    ^ ^ ^ BUT IT SEEMS TO END AS A "SUCCESS"!?
    - "install_setup.log" ends with the following -- and so does "JSKDownloader.log" (the "master log"? it contains basically what shows up on-screen)
    rtkit.main.JSKStarter - launchScript:172 - Tue Jun 10 15:41:38 MDT 2014: BEGIN STEP 6 of 22: Configuration of Database Instance. Estimated time is around 5 minutes. Please wait..
    10/06/2014 15:41:38.545 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 -
    10/06/2014 15:41:48.222 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - Copying database files
    10/06/2014 15:41:48.413 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 1% complete
    10/06/2014 15:41:52.894 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 3% complete
    10/06/2014 15:41:52.915 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 11% complete
    10/06/2014 15:42:02.917 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 18% complete
    10/06/2014 15:42:32.920 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 26% complete
    10/06/2014 15:42:42.638 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 37% complete
    10/06/2014 15:42:42.640 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - Creating and starting Oracle instance
    10/06/2014 15:42:48.568 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 40% complete
    10/06/2014 15:42:56.827 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 45% complete
    10/06/2014 15:42:57.357 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 46% complete
    10/06/2014 15:42:57.526 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 47% complete
    10/06/2014 15:42:57.627 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 48% complete
    10/06/2014 15:42:57.834 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 49% complete
    10/06/2014 15:44:42.915 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 54% complete
    10/06/2014 15:44:42.963 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 59% complete
    10/06/2014 15:44:43.036 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 60% complete
    10/06/2014 15:44:43.452 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 61% complete
    10/06/2014 15:44:43.452 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 64% complete
    10/06/2014 15:44:43.453 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - Completing Database Creation
    10/06/2014 15:44:43.493 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 68% complete
    10/06/2014 15:44:43.510 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 72% complete
    10/06/2014 15:44:43.571 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 76% complete
    10/06/2014 15:45:01.516 -(3)- JSK Starter Thread - oracle.webcenter.jumpstartkit.main.JSKStarter - launchScript:172 - 87% complete
    * Here are the final 261 lines of "/opt/oracle/portal/db/OraInventory/logs/installActions2014-06-10_03-27-37PM.log"...
    INFO: Start output from spawned process:
    INFO: ----------------------------------
    INFO:
    INFO: SaveInvWCCE JRE files in Scratch
    INFO: oracle.installer.mandatorySetup property is set to false, so skipping the execution of additional tools
    INFO: oracle.installer.installUpdates property is set to false, so skipping the checking of updates
    INFO: Config Initialize JRE files in Scratch
    INFO: stage loc: /opt/oracle/portal/tmpdir/OraInstall2014-06-10_03-27-37PM/
    INFO: Copying Aggr XML for: Oracle Configuration Manager
    INFO: stage loc: /opt/oracle/portal/tmpdir/OraInstall2014-06-10_03-27-37PM/
    INFO: Copying Aggr XML for: HAS Common Files
    INFO: stage loc: /opt/oracle/portal/tmpdir/OraInstall2014-06-10_03-27-37PM/
    INFO: Copying Aggr XML for: Oracle Netca Client
    INFO: stage loc: /opt/oracle/portal/tmpdir/OraInstall2014-06-10_03-27-37PM/
    INFO: Copying Aggr XML for: Database Configuration and Upgrade Assistants
    INFO: stage loc: /opt/oracle/portal/tmpdir/OraInstall2014-06-10_03-27-37PM/
    INFO: Copying Aggr XML for: Oracle Enterprise Manager Console DB
    INFO: stage loc: /opt/oracle/portal/tmpdir/OraInstall2014-06-10_03-27-37PM/
    INFO: Copying Aggr XML for: Oracle Database 11g
    INFO: The Top level Aggreage File = /opt/oracle/portal/db/ohome/inventory/ContentsXML/ConfigXML/oracle.server.11_2_0_1_0.xml
    INFO: OUI_CAPlugIn is not found in XML
    INFO: no. of tools to supress: 0 for comp: Oracle Enterprise Manager Console DB
    INFO: cf session will be created for OH: /opt/oracle/portal/db/ohome/ TLAggr: oracle.server instancePath: inventory/ContentsXML/ConfigXML/
    INFO: cf session for OH: /opt/oracle/portal/db/ohome/ TL Aggr: [oracle.server] instancePath: inventory/ContentsXML/ConfigXML/
    INFO: aggr ref length : 6
    INFO: cf session hashcode: 620301082
    INFO: cf session saved with key: OraDb11g_home1 oracle.server
    INFO: cf session is ok
    INFO: created and saved cf session for oh: OraDb11g_home1
    INFO: passing params to cf
    INFO: Handling the storing of variables for aggr name  oracle.sysman.ccr
    INFO: This variable s_OPSNodeInfoString is not added to the global context map
    INFO: This variable b_isUNIX is not added to the global context map
    INFO: This variable b_createResponseFile is not added to the global context map
    INFO: This variable s_ps is not added to the global context map
    INFO: This variable s_oraName is not added to the global context map
    INFO: This variable s_ccrJarDestination is not added to the global context map
    INFO: This variable b_localInstall is not added to the global context map
    INFO: This variable b_doConfigCCR is not added to the global context map
    INFO: This variable b_ccrUpgrade is not added to the global context map
    INFO: This variable s_rspFilePath is not added to the global context map
    INFO: This variable PROD_HOME is not added to the global context map
    INFO: for oracle.has.common no aggregate found by cf: no configuration
    INFO: Handling the storing of variables for aggr name  oracle.assistants.netca.client
    INFO: This variable s_swingallName is not added to the global context map
    INFO: This variable s_shareName is not added to the global context map
    INFO: This variable s_runtimeLib is not added to the global context map
    INFO: This variable s_runTimeJar is not added to the global context map
    INFO: This variable s_responseFileName is not added to the global context map
    INFO: This variable s_operatingSystem is not added to the global context map
    INFO: This variable s_netcfgName is not added to the global context map
    INFO: This variable s_netcahelpName is not added to the global context map
    INFO: This variable s_netcaUpgradeFlag is not added to the global context map
    INFO: This variable s_netcaClass is not added to the global context map
    INFO: This variable s_netCA_Args is not added to the global context map
    INFO: This variable s_netCAInstalledProtocols is not added to the global context map
    INFO: This variable s_netAPIName is not added to the global context map
    INFO: This variable s_ldapclnt9 is not added to the global context map
    INFO: This variable s_ldapclnt11 is not added to the global context map
    INFO: This variable s_ldapclnt10 is not added to the global context map
    INFO: This variable s_jreLocation is not added to the global context map
    INFO: This variable s_jreJarFile is not added to the global context map
    INFO: This variable s_jreJar is not added to the global context map
    INFO: This variable s_jewtName is not added to the global context map
    INFO: This variable s_installTypeForLaunchNETCA is not added to the global context map
    INFO: This variable s_icebrowserName is not added to the global context map
    INFO: This variable s_helpName is not added to the global context map
    INFO: This variable s_ewtcompatName is not added to the global context map
    INFO: This variable s_ewtName is not added to the global context map
    INFO: This variable s_ewtFile is not added to the global context map
    INFO: This variable s_ewtCompat is not added to the global context map
    INFO: This variable s_cfgMethod is not added to the global context map
    INFO: This variable s_caHelpZhTwJar is not added to the global context map
    INFO: This variable s_caHelpZhCnJar is not added to the global context map
    INFO: This variable s_caHelpPtBRJar is not added to the global context map
    INFO: This variable s_caHelpKoJar is not added to the global context map
    INFO: This variable s_caHelpJar is not added to the global context map
    INFO: This variable s_caHelpJaJar is not added to the global context map
    INFO: This variable s_caHelpItJar is not added to the global context map
    INFO: This variable s_caHelpFrJar is not added to the global context map
    INFO: This variable s_caHelpEsJar is not added to the global context map
    INFO: This variable s_caHelpDeJar is not added to the global context map
    INFO: This variable s_authAdaptors is not added to the global context map
    INFO: This variable ps_netCA_Args_OverRide is not added to the global context map
    INFO: This variable b_net8ServerInstalling is not added to the global context map
    INFO: This variable b_javavmIsInstalling is not added to the global context map
    INFO: This variable b_isWindows is not added to the global context map
    INFO: This variable b_isUNIX is not added to the global context map
    INFO: This variable b_cmanIsInstalling is not added to the global context map
    INFO: This variable b_anoIsInstalling is not added to the global context map
    INFO: This variable s_xmlparservLoc is not added to the global context map
    INFO: This variable s_ouiJlibDir is not added to the global context map
    INFO: This variable s_opsmJlib is not added to the global context map
    INFO: This variable s_ntwkTools is not added to the global context map
    INFO: This variable s_netjlibDir is not added to the global context map
    INFO: This variable s_netcahelpLocation is not added to the global context map
    INFO: This variable s_netcaJlibDir is not added to the global context map
    INFO: This variable s_netcaDocDir is not added to the global context map
    INFO: This variable s_netPropertiesFile is not added to the global context map
    INFO: This variable s_netCA is not added to the global context map
    INFO: This variable s_net8caFileToInstantiate is not added to the global context map
    INFO: This variable s_jre15Location is not added to the global context map
    INFO: This variable s_jlibDir is not added to the global context map
    INFO: This variable s_inventoryPrereqOui is not added to the global context map
    INFO: This variable s_emdwLibDir is not added to the global context map
    INFO: This variable s_caHelpDir is not added to the global context map
    INFO: This variable s_assistantJlibDir is not added to the global context map
    INFO: This variable s_JavaFlag is not added to the global context map
    INFO: This variable b_isOPS is not added to the global context map
    INFO: This variable s_windowsCommandLine is not added to the global context map
    INFO: This variable s_net8caExecutable is not added to the global context map
    INFO: This variable s_netcaUserDirArg is not added to the global context map
    INFO: This variable s_installTypeForNetCA is not added to the global context map
    INFO: This variable s_netcaSilentFlag is not added to the global context map
    INFO: This variable s_netCAInstalledProducts is not added to the global context map
    INFO: This variable s_netcaClasspath is not added to the global context map
    INFO: This variable PROD_HOME is not added to the global context map
    INFO: ORACLE_HOME is not settable, hence not setting the value
    INFO: Handling the storing of variables for aggr name  oracle.assistants.server
    INFO: This variable s_operatingSystem is not added to the global context map
    INFO: This variable s_jreLocation is not added to the global context map
    INFO: This variable pn_dboffset is not added to the global context map
    INFO: This variable cs_swingName is not added to the global context map
    INFO: This variable cs_komodoName is not added to the global context map
    INFO: This variable cs_kodiakName is not added to the global context map
    INFO: This variable cs_jewtName is not added to the global context map
    INFO: This variable cs_iceBrowserName is not added to the global context map
    INFO: This variable cs_ewtcompatName is not added to the global context map
    INFO: This variable cs_ewtName is not added to the global context map
    INFO: This variable cs_baliShareName is not added to the global context map
    INFO: This variable b_orabaseContainsOrahome is not added to the global context map
    INFO: This variable b_isWINDOWS is not added to the global context map
    INFO: This variable b_isUNIX is not added to the global context map
    INFO: This variable sl_dbmaParameterListForIcon is not added to the global context map
    INFO: This variable sl_dbcaParameterListForIcon is not added to the global context map
    INFO: This variable s_xmlparservLoc is not added to the global context map
    INFO: This variable s_ouiJlibLocation is not added to the global context map
    INFO: This variable s_oratabLocation is not added to the global context map
    INFO: This variable s_opsmLocation is not added to the global context map
    INFO: This variable s_dbuaLocation is not added to the global context map
    INFO: This variable s_dbcaLocation is not added to the global context map
    INFO: This variable s_OracleBinLocation is not added to the global context map
    INFO: This variable s_dbcaInstLaunchFile is not added to the global context map
    INFO: This variable s_dbcaLaunchFile is not added to the global context map
    INFO: This variable s_dbmaLaunchFile is not added to the global context map
    INFO: This variable s_dbmaInstLaunchFile is not added to the global context map
    INFO: This variable PROD_HOME is not added to the global context map
    INFO: ORACLE_HOME is not settable, hence not setting the value
    INFO: Handling the storing of variables for aggr name  oracle.sysman.console.db
    INFO: This variable s_sid is not added to the global context map
    INFO: This variable s_serverInstallType is not added to the global context map
    INFO: This variable s_platform is not added to the global context map
    INFO: HashMap added with the key oracle.sysman.console.db and an empty variable Vector
    INFO: Adding the variable s_obfOc4jAdmPasswd to the aggregate oracle.sysman.console.db
    INFO: Adding the variable s_obfOc4jAdmPasswd to the global context map for the aggregate oracle.sysman.console.db
    INFO: Adding the variable s_obfJtaAdmPasswd to the aggregate oracle.sysman.console.db
    INFO: Adding the variable s_obfJtaAdmPasswd to the global context map for the aggregate oracle.sysman.console.db
    INFO: This variable s_nlsLang is not added to the global context map
    INFO: This variable s_emailServer is not added to the global context map
    INFO: This variable s_emailAddress is not added to the global context map
    INFO: This variable s_cfgtyperet is not added to the global context map
    INFO: Adding the variable s_JtaAdmPasswd to the aggregate oracle.sysman.console.db
    INFO: Adding the variable s_JtaAdmPasswd to the global context map for the aggregate oracle.sysman.console.db
    INFO: This variable n_uploadInterval is not added to the global context map
    INFO: This variable localhost is not added to the global context map
    INFO: This variable b_launchTools is not added to the global context map
    INFO: This variable b_launchBrowser is not added to the global context map
    INFO: This variable b_isUNIX is not added to the global context map
    INFO: This variable b_centralConsole is not added to the global context map
    INFO: This variable USE_HTTP_PROXY is not added to the global context map
    INFO: This variable USE_DB_CONSOLE is not added to the global context map
    INFO: This variable SET_CONSOLE_MODE is not added to the global context map
    INFO: This variable SA_SETUP is not added to the global context map
    INFO: This variable OC4JLOC is not added to the global context map
    INFO: This variable NO_PC_MODE is not added to the global context map
    INFO: This variable LOGGING_LEVEL is not added to the global context map
    INFO: This variable JRE_HOME is not added to the global context map
    INFO: This variable ISQLPLUS_PROTOCOL is not added to the global context map
    INFO: This variable ISQLPLUS_PORT is not added to the global context map
    INFO: This variable HOST_SID_OFFSET_ENABLED is not added to the global context map
    INFO: This variable HOSTNAME is not added to the global context map
    INFO: This variable EM_UPLOAD_DISABLE is not added to the global context map
    INFO: This variable EM_UIX_DEBUG_FLAG is not added to the global context map
    INFO: This variable EMPRODVER is not added to the global context map
    INFO: This variable CONSOLE_MODE is not added to the global context map
    INFO: This variable CONSOLE_CFG is not added to the global context map
    INFO: This variable sl_oraclehomes is not added to the global context map
    INFO: This variable s_oc4jDir is not added to the global context map
    INFO: This variable s_oc4jAppsDir is not added to the global context map
    INFO: This variable s_jreHome is not added to the global context map
    INFO: This variable s_configcommand is not added to the global context map
    INFO: This variable b_isRAC is not added to the global context map
    INFO: This variable b_UNIX is not added to the global context map
    INFO: This variable OJSP_JAR_LOC is not added to the global context map
    INFO: This variable OJSPUTIL_JAR_LOC is not added to the global context map
    INFO: This variable LDAP_JAR_LOC is not added to the global context map
    INFO: This variable JAVA_HOME is not added to the global context map
    INFO: This variable ISQLPLUS_HOST is not added to the global context map
    INFO: This variable EM_UIX_LOCATION is not added to the global context map
    INFO: This variable EM_REPOS_HOST is not added to the global context map
    INFO: This variable EM_PING_COMMAND is not added to the global context map
    INFO: This variable EM_OC4J_HOME is not added to the global context map
    INFO: This variable EM_EAR_LOC is not added to the global context map
    INFO: This variable EMDROOT is not added to the global context map
    INFO: Adding the variable s_oc4jAdmPasswd to the aggregate oracle.sysman.console.db
    INFO: Adding the variable s_oc4jAdmPasswd to the global context map for the aggregate oracle.sysman.console.db
    INFO: This variable s_launchBrowserClasspath is not added to the global context map
    INFO: This variable s_javapOracleHome is not added to the global context map
    INFO: This variable PROD_HOME is not added to the global context map
    INFO: {Parameter:TOPLEVEL_COMPONENT in {Aggregate:OuiConfigVariables:1.0.0.0.0:common}}: Parameter data type is not compatible with the provided String Array.
    INFO: passing params to cf done
    INFO: done saving info by cf
    INFO: This is a shared oracle home or remote nodes are null. No copy required.
    INFO: Checkpoint:Failed Checkpoint found returning it for getAllFailedCheckPoints.
    INFO: Checkpoint:Failed Checkpoint found returning null for getLastFailedCheckPoint.
    INFO: Checkpoint:Index file written and updated
    INFO: Checkpoint:Transfer of file done from remote node
    INFO: Adding iterator oracle.sysman.oii.oiif.oiifw.OiifwRootShWCDE
    INFO: Updating the global context
    INFO: Path To 'globalcontext.xml' = /opt/oracle/portal/db/ohome/install/chainedInstall/globalcontext
    INFO: Since operation was successful, move the current OiicAPISessionDetails to installed list
    INFO: Number of root scripts to be executed = 1
    INFO: isSuccessfullInstallation: true
    INFO: isSuccessfullRemoteInstallation: true
    INFO: Adding ExitStatus SUCCESS to the exit status set
    INFO: Completed setting up InstallDB
    INFO: Number of root scripts to be executed = 1
    INFO: Shutting down OUISetupDriver.JobExecutorThread
    INFO: Cleaning up, please wait...
    INFO: Dispose the install area control object
    INFO: Update the state machine to STATE_CLEAN
    INFO: All forked task are completed at state setup
    INFO: Completed background operations
    INFO: Moved to state <setup>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating state <setup>
    WARNING: Validation disabled for the state setup
    INFO: Completed validating state <setup>
    INFO: Verifying route success
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state finish
    INFO: FinishAction Actions.execute called
    INFO: Completed executing action at state <finish>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <finish>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating state <finish>
    WARNING: Validation disabled for the state finish
    INFO: Completed validating state <finish>
    INFO: Terminating all background operations
    INFO: Terminated all background operations
    INFO: Successfully executed the flow in SILENT mode
    INFO: Finding the most appropriate exit status for the current application
    INFO: Exit Status is 0
    INFO: Shutdown Oracle Database 11g Release 2 Installer
    INFO: Unloading Setup Driver
    ----------that is all----------
    re. PROCESSES/TASKS at the ending:
    Also I had a look in System Monitor and noticed there a TON of processes ("Sleeping") that show up in System Monitor at this time of "freezing" or "hanging" or whatever you want to call it (where nothing is visibly happening anymore).
    -The most recent shell script is "install_db_instance.sh" (not surprising) with Waiting Channel "do_wait".
    #!/bin/bash
    export JSK_DIR=${PWD}
    . $JSK_DIR/setup_env.sh
    export ORACLE_HOME=$DB_ORACLE_HOME
    export ORACLE_BASE=$DB_ORACLE_BASE
    echo ""
    #$DB_ORACLE_HOME/bin/dbca -createDatabase -templateName $JSK_DIR/General_Purpose.dbc -gdbName orcl -sid orcl -sysPassword $SCHEMA_PASSWORD -systemPassword $SCHEMA_PASSWORD -emConfiguration LOCAL -dbsnmpPassword $SCHEMA_PASSWORD -sysmanPassword $SCHEMA_PASSWORD -datafileJarLocation $DB_ORACLE_HOME/assistants/dbca/templates/ -storageType FS -datafileDestination $DB_ORACLE_DATA -responseFile NO_VALUE -characterset AL32UTF8 -obfuscatedPasswords false -sampleSchema true -oratabLocation ORATAB -recoveryAreaDestination NO_VALUE -silent
    echo "$ORACLE_HOME/bin/dbca -silent -responseFile $JSK_DIR/dbca.rsp  -sampleSchema true -oratabLocation ORATAB" >> $LOGS_DIR/install_commands.log
    $ORACLE_HOME/bin/dbca -silent -responseFile $JSK_DIR/dbca.rsp  -sampleSchema true -oratabLocation ORATAB
    cat $JSK_DIR/dbca.rsp | grep -v -i PASSWORD > $JSK_DIR/dbca_saved_no_passwords.rsp
    rm -f $JSK_DIR/dbca.rsp
    echo ""
    -Immediately after that is "java" with this Command Line:
    /opt/oracle/portal/db/ohome/jdk/jre/bin/java -DORACLE_HOME=/opt/oracle/portal/db/ohome [parameters] -DJDBC_PROTOCOL=thin -mx128m -classpath /opt/oracle/portal/db/ohome/assistants/dbca/jlib/dbca.jar:[otherJarFiles]:/opt/oracle/portal/db/ohome/dv/jlib/dvca.jar oracle.sysman.assistants.dbca.Dbca -silent -responseFile /opt/oracle/run/linux64/dbca.rsp -sampleSchema true -oratabLocation ORATAB
    -There are 7 named "oracleorcl" where the Command Line is simply "oracleorcl (LOCAL=NO)" or "oracleorcl (DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))" -- Waiting Channel is "sk_wait_data".
    -There are 52 named "oracle" with various similar-looking Command Lines. The Waiting Channel for these varies: "poll_schedule_timeout", or "hrtimer_nanosleep", or "sys_semtimedop" (the 2 highest ProcessIDs -- aka most recent -- have this, with Command Line "ora_w000_orcl" and "xe_w000_XE").
    -There are 3 named "sqlplus", their Command Lines are "/opt/oracle/portal/db/ohome/bin/sqlplus -S -N" (the oldest 2), or "/opt/oracle/portal/db/ohome/bin/sqlplus" (the most recent) -- Waiting Channel is "pipe_wait".
    Message was edited by: DarrenAg (added PROCESSES/TASKS info)

  • MaxDB on W2k3 R2 64-bit - No Connection to Database - No Instance found

    Hello,
    I´ve installed a SolMan 4.0 SP 9 on W2K3 R2 64-bit host. The installed DB is a MaxDB 7.6, and its running.
    While trying to backup my database I recognized that I cannot connect to my database via DB-Manager. The appearing popup says:
    -4 server rejected connection
    I tried the default Port Option as well as 3306, 3900 and 3901.
    I think there a two instances of maxDB running, and the ports 3900 and 3901 must work.
    I have no idea what went wrong. (firewall isn´t blocking, db and system are running ..)
    Has anybody a helpful idea?
    thanx

    Hello Natalia,
    <b>-> What is the DBMGUI version?</b>
    the DBMGUI Version is 7.6.0.25
    <b>-> Do you have the DBMGUI installed on Windows 64-bit server?</b>
    Yes
    <b>< See the SAP note 889251 ></b>
    ??? - I dont really understand if I have to install a new (remote like) db or if I have to give zhe install user the permission to log on as batch job
    Or is it possible to manage the db remote from a 32-bit system?
    some knldiag - Info:
    19600 VERSION  'Kernel    7.6.00   Build 035-123-139-084'
    <b>19600 VERSION  'W64/AMD64 7.6.00   Build 035-123-139-084'</b>
    Starting SERVERDB:      'SMD'
    SERVERNODE:    'server.domain.local'
    Process ID:    3512
    Date:          2007-04-11
    Owner:         'SYSTEM'
    Product suite: 'Terminal Server'
    Machine:       'AMD64 level f revision 604'
    Processors:    2 ( logical: 8 )
    Fiber:         'YES'
    Max virtual memory:        8388607 MB
    Total physical memory:     6142 MB
    Available physical memory: 5115 MB
    Memory allocation not limited
    System page cache usage enabled
    3306 is default MySQL
    3900 and 3901 where in use by the system but not listed in services!
    the 7210 is in it - so my info with the default port was wrong !

  • CloudControl 12c: when adding cluster-database single instances are missing

    Hello ,
    I'e have installed the agent 12c on every single host of our RAC. When adding a database to CloudControl 12c just the RAC-instance gets discovered - but not the single database instances on each host.
    Due to this when clicking targets -> databases I just see the cluster-database - but not every single instance of the database.
    Compared to another RAC database this is totally different behaviour.
    Any help will be appreciated
    Rgds
    JH

    Hello ,
    maybe I should try to explain the issue a little bit clearer...
    We have one RAC database called PROD02. When clicking "targets -> databases" I see the following:
    PROD02 of type Cluster Database
    PROD021 of type Database Instance
    PROD022 of type Database Instance
    That's the way it shoudl be - that's the way I expected it...
    For the newly cofgured RAC database, called PREP02, it looks different when clicking "targets -> databases"
    PREP02 of type Cluster Database
    The single instances don't show up. Of course I see the single instances when clicking on "PREP02" under the item "Instances".
    Now I wonder why these two RAC databases are differently displayed when clicking "targets -> databases". When trying to add the single instances (clicking "Add" under "targets -> databases") and selecting then either "only on the host <hostname>" or "on all hosts in the cluster" no single instances are found or displayed...
    Rgds
    Jan

  • 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.

  • MS SQL 2005 clustered database instance.

    Short Text 
    MS SQL cluster database instance - ONLY! 
    Long Text 
    Hi,
    If possible could you please confirm that our planned landscape
    migration is supported by SAP.
    At present our PRD SAP system is a standalone instance that consists of
    the database & central instance running on the same "HOST".
    <u>Current SAP PRD version:</u>
    ERP 2004 ECC 5.0 32 bit
    MS SQL 2000 32 bit
    both running on same host with OS Windows 2003 32 bit
    We plan to upgrade/migrate our PRD SAP system to new 64 bit hardware
    AND to move to a "Distributed" landscape installation i.e. database
    instance & central instance installed on different HOSTS. Also, the
    database instance WILL be clustered but the central instance will NOT
    be clustered. There are also multiple NON-SAP MS SQL databases that
    will run in the same cluster as the PRD SAP database instance.
    <u>SAP PRD version after migration:</u>
    SAP ERP 2004 ECC 5.0 64bit (running on X86_64 AMD64 hardware) on HOST'X'
    MS SQL 2005 64 bit (running on IA64 hardware) on clustered HOST'Y'
    Both running on Windows 2003 64 bit
    <u>My questions are:</u>
    1) Does SAP support a clustered MS SQL 2005 database instance that is
    running on a clustered HOST along with NON-SAP MS SQL databases?
    2)During the migration our PRD SAP MS SQL database will be upgraded
    from MS SQL 2000 32 bit to MS SQL 2005 64 bit IA64, is this also
    supported in a clustered istallation (database instance ONLY)?
    3) The central PRD SAP instance will be running on x86_64 AMD64
    hardware & the database instance will be running on 64 bit IA64
    hardware. Is this configuration supported?
    Thanking you inadvance.

    Hi Greg,
    Have you figured out the answer? We are trying do the exactly the same thing -- Move our SAP WAS 6.40 clustered central instance to a 64-bit hardware/SQL 2005/Clustered system. And this system has several non-SAP database on there. The biggest concern we have is whether SAP support this architecture. I posted a message here last year and several experts like Clas Hortien, N. P. C, in this form suggest NOT go to this architecture because SAP will not support it. One example, is that SAP/SQL requires server collation setting to SQL_Latin1_General_CP850_BIN2 and other databases may work on different collations.
    Migrate SAP SQL Server database to co-exist with others
    Anyway, if you or anyone in this form have some more information please share here.
    Thanks,
    Yujun Ran

  • Database/Instance VS Schema

    Want to use Oracle DB as the database for virtue hosting for mutiple web applications.
    Option One: Create one database (or Instance) with multiple shema(s), with each Schema for a web application to access.
    Option Two: Each web application has its own database (or Instance)
    The Database will be located in the same machine. In general which option is more feasible in terms of maintenance and speed?
    Thanks.
    Scott
    It appears to me the second option is better, but the memory may become an issue, for so many database instance will be loaded to the RAM. The first option may save some memory. But each shema will be hit by many users (such as hundreds). I wonder if use of the schema is feasible.

    In case of downtime of database all your web application are having downtime and each application are on different database in that case only respective application would be down. so, it would be better to keep each webapplication on different database as per the maintenance perspective.
    If you are expecting hit from "hundreds" users then better invest more memory. at least 500 mb to 1GB SGA per DB.

  • Diagnosing an ASM space issue for a primary and a standby database instance with external redundancy.

    I've received an alert from Enterprise manager saying "Disk Group DATA_SID requires rebalance because at least one disk
    is low on space". My colleague who I would go to with this question is unavailable, so this is a learning opportunity
    for me. So far google and Oracle documentation have provided lots of information, but nothing that answers my questions.
    I've run the following query on both the primary and standby databases ASM instances:
    select name, disk_number, sector_size,os_mb, total_mb, free_mb, redundancy from v$asm_disk;
    On the primary I get 4810M Free space and 18431M Total Space
    on the standby I get 1248M Free space and 18431M Total Space -- this is the one that complained via OEM
    When I run the following query in the database instance:
    select sum(bytes)/1024/1024 MB from dba_segments;
    I get 3736.75M as a result.
    My questions are:
    1. Will OEM's suggestion to rebalance the disk actually help in this situation since the instance is set up with external redundancy?
    2. If I've got 18G of space and only 3.7G of data, why is OEM complaining?
    3. How can I reclaim what I presume is allocated but unused space in my problem disk group?
    4. How can I determine what extra data the standby has that the primary doesn't since both have the same total space allocation, but different amounts of free space?

    Thank you for the reply. That link is very good.
    We are an 11.1 version of our database. Linus is OEL 5.6.
    So, looking at the portion of the link that refers to 'Add Standby database and Instances to the OCR' - If we use SRVCTL to give the STANDBY the role of ‘physical_standby’ and the start option of ‘mount’, what effect will that have if the STANDBY becomes our PRIMARY?
    Would these database settings need to be modified manually with SRVCTL each time?
    We understand why the instance is not starting when the node is rebooted, we are looking for a best practice of how this is implemented.
    Thank you.

Maybe you are looking for

  • Safari 6.0 will not display pdf's

    When I upgraded to OS X mountain lion and did all of the updates that were required, I found that the new version of safari (6.0) would not display pdf documents in the browser..... here's how i resolved it. Completely quit safari Back up data In Fin

  • Java.lang.NullPointerException in sun code with latest JRE (1.6.0_02)

    We upgraded to the latest JRE and when we go to our website which has an unsigned applet and I answer Yes to trust it, the applet never runs. I turned on debugging in the java console and see this after the certificate negotiation stuff is sent bck a

  • White Screen when trying to setup Wifi on TX

    Hi - I can't get to the wifi setup screen on my TX.  As soon as I click enable radio, I get a white screen.  I have tried a hard reset, and have also checked the router settings.  I am able to connect wirelessly with other devices.  I am not sure of

  • 3 year old Mac will not start up, help?

    My 3year old Mac will not start up, just sits there and spins.  Any suggestions on corrective steps?

  • [Oracle SQL Developer] Vs [Eclipse + Toad plugin]

    Hello, Have anybody tried to develop PL/SQL code in both of them? What is better? How do you find Eclipse? Best Regards slkLinuxUser