ISSUES WITH L.STANDBY  DB 10g Enterprise Edition R.10.2.0.4.0 -64bi

Hello,
tnanks in advance for your replies.
I have a logical standby 10.4 Oracle Db in Hp server with 6 cpu's.
It is not 100% a question,but better a discussion.
As far as from the documentation,i try to issue the whole scenario in 3 steps.
1.configure the parameters for log miner,...
apply server,prepare server,sga,eagger,max transaction cout,max servers.Which is the best approach.I have to mention that the problem is if i have a heavy load in primary one and stays 3-4 hours back.Any advice,considerations.
2.Take statistics every day.
3.Make indexes for updates-inserts,cause of the particular way of work tha log miner works.Any suggestion.
Is there something that i have missed??
Thnanks one more time..
http://greekoraclebi.blogspot.com/
*************************

**I am not willing or even trying to like you say "cover" someone in the OTN threads.
Sorry.
**If you want to decrease the gap sequence, simply increase the bandwidth between two sites. When the system is powerful enough to send the archivelogs faster than the Oracle will be fast enough to support huge number of archivelogs generated. Please also bear in mind that there is only one MRP process which applies the transferred archivelogs to the standby system and dealing with those fancy stuff written in the documentation will only help you a little bit but the important part is the line bandwidth.
The Oracle documentation does not calculate the bandwidth needed and it only says "increase it to an higher and higher value".
I have check this from the
SELECT FILE_NAME, SEQUENCE# AS SEQ#, FIRST_CHANGE# AS FCHANGE#,
NEXT_CHANGE# AS NCHANGE#, TIMESTAMP,
DICT_BEGIN AS BEG, DICT_END AS END,
THREAD# AS THR#,applied FROM DBA_LOGSTDBY_LOG
ORDER BY applied,SEQUENCE#;
In heavy loads , i always have 4-5 which in column applied = current and 4-5 which are in 'no',so i have enough logs.
**The next step is the power of the applying process (MRP).To conclude what i am trying to anticipate here, the Oracle documentation parameters are the in lieu of resources on the system. You need to have a lot of CPUs in order to increase that parameter. Also you need to have a lot of CPUs in order to run parallel processing SQLs and other gimmicks.
I can increase it up to 40 servers.Oracle suggest to put 3* cpu's,so in my situation,18.Which 16 are the appliers and 3 the preparers.I have set them and to 40 but the gap was larging.I beleive that it must be a balance.
**From
select min(pct_applied) pct_applied_min
, max(pct_applied) pct_applied_max
, avg(pct_applied) pct_applied_avg
, count(server_id) number_of_appliers
from ( select server_id
, (greatest(nvl(s.total_assigned,0),0.00000001) /
greatest(nvl(c.total_assigned,1),1)) * 100 pct_applied
from v$streams_apply_server s
, v$streams_apply_coordinator c)
**From select name,(least(max_sga,bytes)/max_sga) * 100 pct_utilization
from ( select *
from v$sgastat
where name = 'Logminer LCR c'
, (select value*(1024*1024) max_sga
from dba_logstdby_parameters
where name = 'MAX_SGA'
The percent is 2-3%,so i am ok.
**I have no bytes paged out
**I have no archives gap...
SELECT THREAD#, SEQUENCE#, FILE_NAME FROM DBA_LOGSTDBY_LOG L
WHERE NEXT_CHANGE# NOT IN
(SELECT FIRST_CHANGE# FROM DBA_LOGSTDBY_LOG WHERE L.THREAD# = THREAD#)
ORDER BY THREAD#,SEQUENCE#;
**From this query
select operation, options, object_name, cost,CPU_COST,IO_COST
from v$sql_plan, v$session, v$logstdby
where v$sql_plan.hash_value = v$session.sql_hash_value
and v$session.serial# = v$logstdby.serial#
and v$logstdby.status_code=16113;
i check in real time if i have full table scans.
Here the results are dissapointed.I see many full tables scan(almost 200 in some cases),for updates or delete....
That's why i asked you,if the only solution is the code.
put rely on tables on production,and if possible to put indexes in standby.
I have found some parameter,
EAGERSIZE,what's it purpose .after of test,i concluded that the appropriate value for me is about 1000-1500.
I need PRESERVE_COMMIT_ORDER ,for my data.The data are really sensitive.
Any suggestions?
http://greekoraclebi.blogspot.com/
*************************

Similar Messages

  • Ora-03113 with Java Procedure On 10g Enterprise Edition Release 10.1.0.3.1

    Hi All,
    I am getting Ora-03113 (End-of-Communication) while executing Java Stored procedure. Java Stored Procedure executes Sqlldr on server. Server OS is Linux 86x.
    Database is -- Oracle with Infrastructure.
    Oracle Database 10g Enterprise Edition Release 10.1.0.3.1 - Prod
    PL/SQL Release 10.1.0.3.1 - Production
    CORE 10.1.0.3.0 Production
    TNS for Linux: Version 10.1.0.3.0 - Production
    NLSRTL Version 10.1.0.3.0 - Production
    Same java procedure was working properly when database was 10.1.0.2.1. Any suggestion
    SKM

    Check in Ur programs -Application Tool bar, Whether your have two oracle or not.
    You can unintall the OLD version from your PC using the Oracle Unistaller

  • Issues with rman in oracle 10g

    Hi,
    [oracle@proddb12]$ rman
    it does not shows anything.. what can be done to solve this. is anything else should be provided to oracle user? It is urgent, thanks in advance, please help me out.
    Oracle: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bi
    OS: Red Hat Enterprise Linux AS release 4 (Nahant Update 7)
    and how do i know rman version in my db?
    /MR
    Edited by: user612078 on Sep 17, 2008 2:28 AM

    Hi!
    Try the following
    find / -name rman
    This command looks for a file called rman. These file should normaly be located in $ORACLE_HOME/bin. If it is not then it may be deleted or something. Try to reinstall it (copy all the files of the bin directory from another oracle installation).
    Hope this helps!

  • Solaris x86 with Oracle RAC 10g Enterprise Edition Release 10.2.0.3.0

    Hello,
    Maybe you can help me (new on RMAN backup) in doing this.
    I have configured a single Oracle 10g database to have backup with RMAN with following steps:
    1. $ mkdir $ORACLE_BASE/rman_scripts
    2. $ mkdir $ORACLE_BASE/logs
    3. $ mkdir $ORACLE_BASE/tracking
    4. $ mkdir $ORACLE_BASE/c_backup
    5. $ sqlplus sys/<password> as sysdba
    6. SQL> alter system set db_recovery_file_dest_size = 50G scope=both;
    7. SQL> alter system set db_recovery_file_dest='${ ORACLE_BASE}/flash_recovery_ area' scope=both;
    8. SQL> alter system set log_archive_dest_10='location= use_db_recovery_file_dest';
    9. SQL> shutdown immediate
    10. SQL> startup nomount
    11. SQL> alter database archivelog;
    12. SQL> alter database open;
    13. SQL> alter database enable block change tracking using file '${ORACLE_BASE}/tracking/rman_ change_track.f';
    14. $ rman target /
    15. RMAN> CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK
    TO '/var/opt/oracle/flash_ recovery_area/ORCL/c_backup/% F';
    16. RMAN> CONFIGURE CONTROLFILE AUTOBACKUP ON;
    17. RMAN> CONFIGURE BACKUP OPTIMIZATION ON;
    18. RMAN> CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 7 DAYS;
    19. RMAN> exit
    I need to configure incremental backup with RMAN on a two node Solaris x86 with Oracle RAC 10g Enterprise Edition Release 10.2.0.3.0 installation.
    We also use ASM to store database files, and have Oracle software installed on separate file systems (two Oracle roots for Node1 and Node2).
    I have following questions:
    1) where to put Flash Recovery Area (FRA)?
    I saw recommendations to put FRA on the ASM, is this the best way to do it?
    2) Can I put FRA on another file system (not on the ASM) which is available only from Node1? This way I can save space on the ASM.
    3) Is it possible/recommended to run RMAN from Node1 only?
    Below is the script used to run RMAN on the normal Oracle database (without RAC) which I need to change :
    =============================================================================================
    2.0 Oracle backup script: /opt/app/oracle/rman_scripts/backup.sh
    Use this for daily backups, possiblly as a cron job.
    Once a week run this: /opt/app/oracle/rman_scripts/backup.sh FULL
    All other days of the week: /opt/app/oracle/rman_scripts/backup.sh INCREMENTAL
    Note: You may have to change ORACLE_SID, ORACLE_BASE below to match your database.
    =============================================================================================
    #!/usr/bin/ksh
    ORACLE_SID=orcl
    ORACLE_BASE=/opt/app/oracle
    ORACLE_HOME=${ORACLE_BASE}/product/10.2.0/db_1
    PATH=${ORACLE_HOME}/bin:/usr/bin
    LOGDIR=${ORACLE_BASE}/logs
    LOGFILE=${LOGDIR}/rman.log
    if [[ $# < 1 ]]
    then
    echo "usage: backup.sh FULL|INCREMENTAL"
    exit;
    fi
    BACKUPTYPE=${1}
    full='FULL'
    incremental='INCREMENTAL'
    if [[ $BACKUPTYPE == $full ]]
    then
    $ORACLE_HOME/bin/rman target / nocatalog log ${LOGFILE} append << eof
    run {
    backup database;
    SQL 'alter system archive log current';
    backup archivelog all;
    delete noprompt obsolete;
    exit;
    eof
    echo ''
    fi
    if [[ $BACKUPTYPE == $incremental ]]
    then
    $ORACLE_HOME/bin/rman target / nocatalog log ${LOGFILE} append << eof
    run {
    backup database;
    backup incremental level 1 database;
    SQL 'alter system archive log current';
    backup archivelog all;
    delete noprompt obsolete;
    exit;
    eof
    echo ''
    fi

    Hi [email protected],
    Q1) where to put Flash Recovery Area (FRA)?
    A1) With RAC: on the shared storage
    I saw recommendations to put FRA on the ASM, is this the best way to do it?
    If you want your backups to be available for both nodes you have to use shared storage or tape using an mml library.
    So if you want to use the FRA for rman backups and the database is on ASM just make ASM the standard for the FRA as well.
    Q2) Can I put FRA on another file system (not on the ASM) which is available only from Node1? This way I can save space on the ASM.
    A2) Than you cannot recover in case Node1 is down. Best would be to send your storage admin to a training course so he can manage the clustered raw devices needed for ASM.
    Q3) Is it possible/recommended to run RMAN from Node1 only?
    A3) No see A2.
    Regards,
    Tycho

  • "In-Memory Database Cache" option for Oracle 10g Enterprise Edition

    Hi,
    In one of our applications, we are using TimesTen 5.1.24 and Oracle 9i
    databases (platform - Solaris 9i).
    TimesTen holds application information which needs to be accessed quickly
    and Oracle 9i is a master application database.
    Now we are looking at an option of migrating from Oracle 9i to Oracle 10g
    database. While exploring about Oracle 10g features, came to know about
    "In-Memory Database Cache" option for Oracle Enterprise Edition. This made
    me to think about using Oracle 10g Enterprise Edition with "In-Memory
    Database Cache" option for our application.
    Following are the advantages that I could visualize by adopting the
    above-mentioned approach:
    1. Data reconciliation between Oracle and TimesTen is not required (i.e.
    data can be maintained only in Oracle tables and for caching "In-Memory
    Database Cache" can be used)
    2. Data maintenance is easy and gives one view access to data
    I have following queries regarding the above-mentioned solution:
    1. What is the difference between "TimesTen In-Memory Database" and
    "In-Memory Database Cache" in terms of features and licensing model?
    2. Is "In-Memory Database Cache" option integrated with Oracle 10g
    installable or a separate installable (i.e. TimesTen installable with only
    cache feature)?
    3. Is "In-Memory Database Cache" option same as that of "TimesTen Cache
    Connect to Oracle" option in TimesTen In-Memory Database?
    4. After integrating "In-Memory Database Cache" option with Oracle 10g, data
    access will happen only through Oracle sqlplus or OCI calls. Am I right here
    in making this statement?
    5. Is it possible to cache the result set of a join query in "In-Memory
    Database Cache"?
    In "Options and Packs" chapter in Oracle documentation
    (http://download.oracle.com/docs/cd/B19306_01/license.102/b14199/options.htm
    #CIHJJBGA), I encountered the following statement:
    "For the purposes of licensing Oracle In-Memory Database Cache, only the
    processors on which the TimesTen In-Memory Database component of the
    In-Memory Database Cache software is installed and/or running are counted
    for the purpose of determining the number of licenses required."
    We have servers with the following configuration. Is there a way to get the
    count of processors on which the Cache software could be installed and/or
    running? Please assist.
    Production box with 12 core 2 duo processors (24 cores)
    Pre-production box with 8 core 2 duo processors (16 cores)
    Development and test box with 2 single chip processors
    Development and test box with 4 single chip processors
    Development and test box with 6 single chip processors
    Thanks & Regards,
    Vijay

    Hi Vijay,
    regarding your questions:
    1. What is the difference between "TimesTen In-Memory Database" and
    "In-Memory Database Cache" in terms of features and licensing model?
    ==> Product has just been renamed and integrated better with the Oracle database - Times-Ten == In-Memory-Cache-Database
    2. Is "In-Memory Database Cache" option integrated with Oracle 10g
    installable or a separate installable (i.e. TimesTen installable with only
    cache feature)?
    ==> Seperate Installation
    3. Is "In-Memory Database Cache" option same as that of "TimesTen Cache
    Connect to Oracle" option in TimesTen In-Memory Database?
    ==> Please have a look here: http://www.oracle.com/technology/products/timesten/quickstart/cc_qs_index.html
    This explains the differences.
    4. After integrating "In-Memory Database Cache" option with Oracle 10g, data
    access will happen only through Oracle sqlplus or OCI calls. Am I right here
    in making this statement?
    ==> Please see above mentioned papers
    5. Is it possible to cache the result set of a join query in "In-Memory
    Database Cache"?
    ==> Again ... ;-)
    Kind regards
    Mike

  • SQL slow after upgrading to Oracle Database 10g Enterprise Edition Release

    Hi all:
    We have recently upgraded our database from Oracle9i Enterprise Edition Release 9.2.0.6.0 to Oracle Database 10g Enterprise Edition Release 10.2.0.1.0
    After that we found that our some sql getting very slow
    for example query with 9i showing result in 4 seconds while in 10g showing result in 28 seconds.
    Following is the execution plan of my query in Oracle9i
    Operation     Object     PARTITION_START     PARTITION_STOP     COST
    SELECT STATEMENT ()                    9458
    NESTED LOOPS ()                    9458
      SORT (UNIQUE)                    
       INDEX (RANGE SCAN)     BL_EQ_PK_N               2
      VIEW ()     CONTAINER_INFO               2
       UNION-ALL (PARTITION)                    
        TABLE ACCESS (BY INDEX ROW     SERVICE_EVENTS               1
         NESTED LOOPS ()                    11
          NESTED LOOPS ()                    10
           NESTED LOOPS (OUTER)                    9
            NESTED LOOPS ()                    8
             NESTED LOOPS ()                    7
              NESTED LOOPS ()                    6
               NESTED LOOPS ()                    5
                NESTED LOOPS ()                    4
                 NESTED LOOPS (OUT                    3
                  TABLE ACCESS (BY     EQUIPMENT_USES               2
                   INDEX (UNIQUE S     EQUSE_PK               1
                  TABLE ACCESS (BY     SHIPPING_LINES               1
                   INDEX (UNIQUE S     LINE_PK               
                 INDEX (UNIQUE SCA     EQHT_PK               
                TABLE ACCESS (BY I     EQUIPMENT_TYPES               1
                 INDEX (UNIQUE SCA     EQTP_PK               
               TABLE ACCESS (BY IN     EQUIPMENT_SIZES               1
                INDEX (UNIQUE SCAN     EQSZ_PK               
              TABLE ACCESS (BY IND     SHIP_VISITS               2
               INDEX (RANGE SCAN)     SVISIT_UK               1
             TABLE ACCESS (BY INDE     SHIPS               1
              INDEX (UNIQUE SCAN)     SHIP_PK               
            TABLE ACCESS (BY INDEX     CARE_VIR_MAP               1
             INDEX (UNIQUE SCAN)     VIR_VESVOY               
           TABLE ACCESS (BY INDEX      EQUIPMENT               1
            INDEX (RANGE SCAN)     EQ_EQUSE_FK               
          INDEX (RANGE SCAN)     SEVENTS_EQUSE_FK_N               
        NESTED LOOPS ()                    7
         NESTED LOOPS ()                    6
          NESTED LOOPS ()                    5
           NESTED LOOPS ()                    4
            NESTED LOOPS (OUTER)                    3
             TABLE ACCESS (BY INDE     EQUIPMENT_USES               2
              INDEX (UNIQUE SCAN)     EQUSE_PK               1
             TABLE ACCESS (BY INDE     SHIPPING_LINES               1
              INDEX (UNIQUE SCAN)     LINE_PK               
            INDEX (UNIQUE SCAN)     EQHT_PK               
           TABLE ACCESS (BY INDEX      EQUIPMENT_TYPES               1
            INDEX (UNIQUE SCAN)     EQTP_PK               
          TABLE ACCESS (BY INDEX R     EQUIPMENT_SIZES               1
           INDEX (UNIQUE SCAN)     EQSZ_PK               
         TABLE ACCESS (BY INDEX RO     EQUIPMENT               1
          INDEX (RANGE SCAN)     EQ_EQUSE_FK               and following is my query plan in Oracle 10g
    Operation     Object     PARTITION_START     PARTITION_STOP     COST
    SELECT STATEMENT ()                    2881202
    NESTED LOOPS ()                    2881202
      SORT (UNIQUE)                    2
       INDEX (RANGE SCAN)     BL_EQ_PK_N               2
      VIEW ()     CONTAINER_INFO               2881199
       UNION-ALL ()                    
        NESTED LOOPS (OUTER)                    2763680
         NESTED LOOPS ()                    2718271
          NESTED LOOPS ()                    2694552
           NESTED LOOPS ()                    2623398
            NESTED LOOPS (OUTER)                    2623380
             NESTED LOOPS ()                    2393965
              NESTED LOOPS ()                    2393949
               NESTED LOOPS ()                    2164536
                NESTED LOOPS ()                    1706647
                 NESTED LOOPS ()                    854120
                  TABLE ACCESS (FU     BL_EQUIPMENT               1515
                  TABLE ACCESS (BY     EQUIPMENT_USES               1
                   INDEX (UNIQUE S     EQUSE_PK               1
                 TABLE ACCESS (BY      EQUIPMENT               1
                  INDEX (RANGE SCA     EQ_EQUSE_FK               1
                TABLE ACCESS (BY I     EQUIPMENT_TYPES               1
                 INDEX (UNIQUE SCA     EQTP_PK               1
               TABLE ACCESS (BY IN     EQUIPMENT_SIZES               1
                INDEX (UNIQUE SCAN     EQSZ_PK               1
              INDEX (UNIQUE SCAN)     EQHT_PK               1
             TABLE ACCESS (BY INDE     SHIPPING_LINES               1
              INDEX (UNIQUE SCAN)     LINE_PK               1
            INDEX (RANGE SCAN)     SEVENTS_TSERV_FK_N               1
           TABLE ACCESS (BY INDEX      SHIP_VISITS               2
            INDEX (RANGE SCAN)     SVISIT_UK               2
          TABLE ACCESS (BY INDEX R     SHIPS               1
           INDEX (UNIQUE SCAN)     SHIP_PK               1
         TABLE ACCESS (BY INDEX RO     CARE_VIR_MAP               2
          INDEX (UNIQUE SCAN)     VIR_VESVOY               1
        NESTED LOOPS (OUTER)                    117519
         NESTED LOOPS ()                    98158
          NESTED LOOPS ()                    78798
           NESTED LOOPS ()                    78795
            NESTED LOOPS ()                    59432
             TABLE ACCESS (FULL)     EQUIPMENT_USES               20788
             TABLE ACCESS (BY INDE     EQUIPMENT_TYPES               1
              INDEX (UNIQUE SCAN)     EQTP_PK               1
            TABLE ACCESS (BY INDEX     EQUIPMENT               1
             INDEX (RANGE SCAN)     EQ_EQUSE_FK               1
           INDEX (UNIQUE SCAN)     EQHT_PK               1
          TABLE ACCESS (BY INDEX R     EQUIPMENT_SIZES               1
           INDEX (UNIQUE SCAN)     EQSZ_PK               1
         TABLE ACCESS (BY INDEX RO     SHIPPING_LINES               1
          INDEX (UNIQUE SCAN)     LINE_PK               1can somebody help me regarding this?
    Thanks
    Hassan

    I would say ..gather stats on 9i/10gfor the required table and indexes , then post the expalin plan.
    --Girish                                                                                                                                                                                                                               

  • Installing Discoverer with Database Version Oracle 10g Express Edition

    Hello,
    Is it possilbe to install Discoverer with database version Oracle 10g Express Edition? I have Oracle Fusion Middleware 11.1.1.1.0 on my Windows XP machine as well. If so, can someone please provide me a link to the Discoverer download.
    Regards,
    Kelly

    Note that the Personal Edition of the database is 'the most powerful' version, in that it contains all features and options of the Enterprise Edition (expect RAC and Enterprise Manager packs)
    As such, the Personal Edition, at a mere USD$400-500 is one of the most cost effective for-fee products that Oracle has in it's inventory. It is targeted at the developer. And it comes with the complete set of Sample Data, whereas XE has a very limited subset (since it does not support all functionality).
    Express Edition is indeed free, but it is not supported, and can not be patched. OTOH it does have a lighter footprint.
    Again, I am not sure whether Disco 11g is compatible with Express Edition. (It's on my schedule for December ...)

  • Oracle Application Server 10g Enterprise Edition

    Hi,
    I would like to integrate Oracle E-Business Suite Release 12.1.1 with Oracle Portal.
    Idid some research in metalink and found that Note: 376811.1.
    What I understood from the doc is,
    1. install Oracle Application Server 10g Enterprise Edition.
    2. Integrate with EBiz 12.1.1.
    Please let me know where can I get the link to download, Oracle Application Server 10g (10.1.4) Enterprise Edition.
    Is it required to install OID and SSO before oracle portal installation?
    A step by step solution/documentation to integrate 12.1.1 with portal will highly be appreciated.
    Thanks and Regards,
    DIP

    Idid some research in metalink and found that Note: 376811.1.
    What I understood from the doc is,
    1. install Oracle Application Server 10g Enterprise Edition.
    2. Integrate with EBiz 12.1.1.
    Please let me know where can I get the link to download, Oracle Application Server 10g (10.1.4) Enterprise Edition.
    - download and install OAS 10.1.2.0.2
    --> Go to this link: http://www.oracle.com/technology/software/products/middleware/index.html
    --> download Application Server 10gR2 (10.1.2.0.2) from the right side portlet of Previous Releases
    - then upgrade its portal to 10.1.4:
    --> go to metalink/MOS: search for 'oracle portal upgrade master note' and follow the note that matches best
    Is it required to install OID and SSO before oracle portal installation?- Yes it is. It will be included in the OAS 10.1.2.0.2 installation
    >
    A step by step solution/documentation to integrate 12.1.1 with portal will highly be appreciated.
    Go to MOS/metalink: search for 'Installing Oracle Application Server 10g with Oracle E-Business Suite' and follow the note
    that should be all you need.
    hope that helps!
    AMN

  • Apex upgrade from 3.2 to 4.0 in Oracle 10g Enterprise Edition

    Hi Friends,
    I am currenly using Apex version 3.2.1. My oracle version is "Oracle Database 10g Enterprise Edition Release 10.2.0.4.0".
    I am planning to upgrade my apex version to 4.0. Can i do this with the same oracle DB version. Is there any specific
    licence needed for such an upgrade?
    Regards,
    Nav

    Can i do this with the same oracle DB version.Yes. 10.2.0.4.0 meets the documented requirements.
    Is there any specific licence needed for such an upgrade?No, not if the database is licensed. (Additional licenses may be required for some web server configurations.)

  • Oracle 10g enterprise edition in ubuntu

    how to install oracle 10g enterprise edition in ubuntu 11.04 (32bit). i have downloaded from http://www.oracle.com/technetwork/database/10201linuxsoft-097986.html .
    thanks in advance.

    rakeshor wrote:
    i unzip it and run installer but nothing happn.it worked for me
    bcm@bcm-laptop:~$ sqlplus
    SQL*Plus: Release 11.2.0.1.0 Production on Sun Oct 9 22:57:04 2011
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    Enter user-name: / as sysdba
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> !uname -a
    Linux bcm-laptop 2.6.32-34-generic #77-Ubuntu SMP Tue Sep 13 19:39:17 UTC 2011 x86_64 GNU/Linux
    SQL>

  • Running Oracle 10g Enterprise Edition: Multicore or MultiProcessor

    I have the option of running Oracle 10g Enterprise Edition on a SunFire v480 (4 x 1.2 GHz UltraSPARC III) or a Sunfire T-2000 with a 1Ghz 8-core processor. Assume both machines will be running Solaris 10 as the operating system and have comparable amounts of RAM.
    What would be the best choice for performance, and why? Does Oracle 10g have any optimizations that enhance it's ability to run on a multi-core or multi-processor system, or is that mostly dependent on the OS itself?
    Message was edited by:
    nholst

    Each (dedicated) oracle connection has its own process, plus all of the background processes. This means they will benefit from multiple cpu/core architectures. Assuming that the multi-core solution appears to the OS as multiple processors, it will be the best solution since you have the most CPU power. Be sure to check the licensing rules for multi-core processors, there are some special rules about them.

  • Uninstalling oracle 10g enterprise edition from windows vista

    HI There,
    I want to uninstall oracle 10g enterprise edition from windows vista home premium edition. I have uninstalled it using oracle universal installer and then deleted folder from program files. But I am unable to delete the main folder i.e. D>Oracle..
    It is displaying error message 'access denied' Please suggest me on this issue.. How can I delete that one so that I can instal it again. I would be really grateful.
    kind regards

    Can someone help me on this issue.. That would be great...

  • Oracle 10g Enterprise Edition restrictions

    Hi,
    Kindly anyone help me to detail what are the Oracle 10g Enterprise Edition restrictions?
    Any help will be needful for me
    Thanks and Regards

    user598986 wrote:
    Kindly anyone help me to detail what are the Oracle 10g Enterprise Edition restrictions?To add to the other post - the answers are in the following specific doc
    1) Legal restrictions are in the license document you agree when you get the software
    2) General discussion about what is included with the edition, and what is in Options, is found in Licensing manual
    3) General software limits are described in the Limits chapter of the Reference manual
    4) Operating system specific limits are in the Platform or Admini guide for the operating system

  • Oracle 10g Enterprise Edition

    Hi,
    I would like to know can I download oracle 10g enterprise edition?
    If yes can I use it to build over test and dev. environments without any licensing issues.
    Thanks and Best regards
    Hitesh Nouni

    Hi,
    LICENSE RIGHTS
    We grant you a nonexclusive, nontransferable limited license to use the programs only for the purpose of developing a single prototype of your application, and not for any other purpose. If you use the application you develop under this license for any internal data processing or for any commercial or production purposes, or you want to use the programs for any purpose other than as permitted under this agreement, you must contact us, or an Oracle reseller, to obtain the appropriate license.
    For more information, you can take a look on this link below:
    http://www.oracle.com/database/product_editions.html
    Cheers

  • 10g Enterprise Edition Licence

    Gurus,
    Will enterprise manager comes with 10g Enterprise edition software which is downloaded for Windows and Solaris Sun Sparc ?
    Or Will EM only come with the 10g Enterprise Media pack which we buy from Oracle for Windows and Solaris Sun Sparc?
    Please clear this doubt.
    Thanks,
    Balu.

    Maran.Viswarayar wrote:
    There are 2 things related to EM
    1.Enterprise manager DBConsole which is free
    2.Enterprise Manager GRID CONTROL---Needs additional costBS. Please cite your sources so we can correct them.
    Grid Control is a framework for displaying monitor and metric information.
    Grid Control is an infrastructure that is included free of charge with Standard and Enterprise Edition licenses of the database and the application server. It is a separate download, but so is Database Client or Database Clusterware. This is discussed in the Licensing manual for database and app server. (See http://tahiti.oracle.com)
    One of the displays Grid Control can show is the set of Database monitor and metrics, which are included free with the database The DBA may choose to display the database on the standalone EM, called the DB Control, or the centralized EM called the Grid Control.
    The database also supports a number of additional metrics and monitors, called Database Enterprise Manager Packs. These packs happen to be included with the database download. However, the DB stores some usage information, and an additional fee is charged if they are used. This is discussed in the Metrics manuals for the EM in the EM doc set.
    Either (or both) DB Control or Grid Control may be used to display the info from the additional packs. However, you pay for the usage of the additional packs, regardless of where displayed, either up front or after an audit.

Maybe you are looking for

  • My iphone wont let me on facebook :((

    I have been given an Iphone 3g from my friend. He had the phone unlocked for me as we are on different networks. The phone works ok but I can not get onto facebook. Everytime I try to login I get this message "login error, please try later." This has

  • Dunning Split Text Elements

    Hi all, hope sb can help me. I'm creating a dunning form with sapscript. So I use the text elements for the dunning levels. Is it possible to use a certain text per dunning level before and after the line items? Like This: Dear Customer, Dunning text

  • Check MyBestBuy Eligibility status

    Hello, I am trying to find where you can check online your current eligibility status for being an elite or elite plus member for the upcoming year.  It used to be really easy to find, being on almost every page you looked at, and now it doesn't seem

  • My computer is crashing since I downloaded Download Helper

    I was able to successfully download Download Helper from this address - https://addons.mozilla.org/en-US/firefox/addon/video-downloadhelper/; but when I tried downloading a video from You Tube it started the download but my computer crashed halfway t

  • Deleting old JS2 Update files

    I have JS2 Runtime Environment Updates, 3, 6 & 7 in addition to SE v1.4.2 using up a lot of space on my hard drive. Can I delete one or more of them without experiencing some unforeseen problem?