Disable Intel CPU Hyper threading in Oracle RAC environment

Dear Expert,
Does disable CPU hyper threading will have direct impact or maybe unexpected behavior to Oracle RAC database?
Actually the background of this question is we have many received packet queuing on the network layer waiting to be processed. Investigation leads to the processor utilization which shows that many processor are still in idle state or not used when the other processors are busy processing incoming request.
I have visited some oracle note like
CPU Count Consideration for Oracle Parameter Setting When Using Hyper-Threading Technology (Doc ID 289870.1)
Oracle and Hyper-Threading (Doc ID 205089.1)
Using PROCESSOR_GROUP_NAME to bind a database instance to CPUs or NUMA nodes (Doc ID 1585184.1)
These document already give useful information but i wonder if there is any possibilities risk or another consideration of disabling cpu hyper threading.
Please let me know if any other information required.
Thanks.
Best Regards,
Jolly

As far as I know it is set as cpu architecture and mobile chips don't have the option. Not 100% as I've never needed to do it.
Better bet would be to check Intel ark and forums with them I expect.

Similar Messages

  • Intel HT (Hyper-Threading) BIOS 1.9?

    Sup People!  
     My Intel HT (Hyper-Threading) don't work right now, what to do?
     I was told that I need the new BIOS 1.9 for HT to work?
     I have: Intel P4c with HT
                Intel 875P with HT
                MS Windows XP Professional Version 2002 & SP 1
     There is no option button in the BIOS 1.8 for HT!
     What do I need to do? Please Help  
     TaZ   ...
     Also I have a new OVER CLOCK speed! MY 875P NEO @3420MHz/1140MHz FSB !!
     It's a old thread so look at post #7
     http://www.msi.com.tw/program/service/forum/index.php?sid=&postid=188033#post188033
      TaZ

    Sup & THX people for all the INFO!  
     Hay Schiers,
     "I can switch it on and off like I want. The option to allow/disallow it is about
    MP (advanced settings) and the version to support."
     I have a Intel SL6Z3 Pentium 4c 2.4GHz 800MHz FSB with HT. This new chip come's with the NEW MO core stepping. (Costa Rica) Now Im trying to over clock this Vcore 1.70v CPU to 275MHz FSB (3.3GHz/1.1GHz FSB) 5:4 ratio, Ram 2.70v DDR440 - 220MHz @CL2.0-3-3-7-8 with my PC3500, AND WITH HT (HYPER-THREADING)
     Right now my Vcore 1.60v CPU and 225MHz FSB @(2.7GHz/900MHz FSB) 1:1 ratio Ram 2.70v DDR450 - 225MHz @CL2.5-3-3-7-8 and NO HT (Hyper-Threading) On Intel STOCK Air.
    I have also tryed Vcore 1.6 CPU and 260MHz FSB @(3.12GHz/1.04GHz FSB) 5:4 ratio, RAM 2.60v DDR416 - 208MHz @CL2.0-3-3-6-8 and NO HT (Hyper-Threading) On Intel STOCK Air.
    http://www.msi.com.tw/program/service/forum/index.php?threadid=32697&sid=
     PLEASE HELP ME! GET HT (Hyper-Threading) WORKING!
     Please show how to do it step by step please
     I have BIOS 1.8  (Bugy) Need Bios 1.9 for new microcode update to get HT properly recognized with an option!
    OR IS THERE ANOTHER OPTION?  
      TaZ

  • How to create a wallet in oracle RAC environment

    How to create a wallet in oracle RAC environment.
    While running following command "alter system set encryption key identified by "thalesdata4";
    I am getting error message "cannot auto create wallet" or "failed to open wallet.
    Please suggest correct way to create a wallet in RAC environment.
    Thanks
    Sudhir

    hi,
    please refer for detailed explanation
    Master Note for SSL Configuration in Fusion Middleware 11g [ID 1218695.1]
    regards

  • Calculating total memory in oracle RAC environment

    I have to calculate total memry in RAC environment.
    For shared and buffer pool I execute show sga.
    For UGA and PGA I execute statement that have two different values.
    This is my two different methot for calculating total memory in oracle RAC environment.
    Why I have very different value in this 2 statements on pga values?
    first stat
    with vs as
    select 'PGA: ' pid
    ,iid
    ,session_pga_memory + session_uga_memory bytes
    from (select inst_id iid
    ,(select ss.value
    from gv$sesstat ss
    where ss.sid = s.sid
    and ss.inst_id = s.inst_id
    and ss.statistic# = 20) session_pga_memory
    ,(select ss.value
    from gv$sesstat ss
    where ss.sid = s.sid
    and ss.inst_id = s.inst_id
    and ss.statistic# = 15) session_uga_memory
    from gv$session s)
    union all
    select 'SGA: ' || name pid
    ,s.inst_id iid
    ,value bytes
    from gv$sga s
    select distinct iid, pid, sum(bytes) over (partition by iid, pid) bytes from vs
    IID PID BYTES
    1 PGA: 196764792 <=====
    1 SGA: Database Buffers 318767104
    1 SGA: Fixed Size 733688
    1 SGA: Redo Buffers 811008
    1 SGA: Variable Size 335544320
    2 PGA: 77159560 <=====
    2 SGA: Database Buffers 318767104
    2 SGA: Fixed Size 733688
    2 SGA: Redo Buffers 811008
    2 SGA: Variable Size 335544320
    second stat
    with vs as
    select 'PGA: ' pid
    ,p.inst_id iid
    ,p.pga_alloc_mem bytes
    from gv$session s
    ,gv$sesstat pcur
    ,gv$process p
    where pcur.statistic# in ( 20 -- = session pga memory
    ,15 -- = session uga memory
    and s.paddr = p.addr
    and pcur.sid = s.sid
    and pcur.INST_ID = s.INST_ID
    and pcur.INST_ID = p.INST_ID
    union all
    select 'SGA: ' || name pid
    ,s.inst_id iid
    ,value bytes
    from gv$sga s
    select distinct iid, pid, sum(bytes) over (partition by iid, pid) bytes from vs
    IID PID BYTES
    1 PGA: 342558636 <=====
    1 SGA: Database Buffers 318767104
    1 SGA: Fixed Size 733688
    1 SGA: Redo Buffers 811008
    1 SGA: Variable Size 335544320
    2 PGA: 186091416 <=====
    2 SGA: Database Buffers 318767104
    2 SGA: Fixed Size 733688
    2 SGA: Redo Buffers 811008
    2 SGA: Variable Size 335544320

    I'm sorry but it is not clear to me.
    - From v$session (1th stmt) I have
    nearly 196MB of PGA mem on instance 1
    and
    nearly 77MB of PGA mem on instance 2
    - From v$process (2th stmt) I have
    nearly 342MB of PGA mem on instance 1
    and
    nearly 186MB of PGA mem on instance 2
    then...
    342+186 - 196+77 = nearly 255MB of memory allocated by oracle processes but free?
    if I want calculate the total thing of the amount of the allocated memory from Oracle...It is more correct 2th statement that query v$process...it is true?

  • In Oracle RAC environment which is OLTP database? load balancing advantage.

    In Oracle RAC environment which is a OLTP database? List the options for load balancing along with their advantages.

    You can use a software load balancer.
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Software+AND+Load+AND+Balancer&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Installing and Configuring Web Cache 10g and Oracle E-Business Suite 12 [ID 380486.1]
    Thanks,
    Hussein

  • How locking take place in oracle rac environment?

    how locking take place in oracle rac environment?
    Suppose from one session, user is updating and from other session same rows are being selected then how this locking take place in Oracle RAC?

    user11936985 wrote:
    how locking take place in oracle rac environment?
    Suppose from one session, user is updating and from other session same rows are being selected then how this locking take place in Oracle RAC?In the case of one session updating and the other selecting, there is no locking issue, regardless of whether it's single instance or RAC.
    The update will take appropriate table (TM) and row-level (TX) locks, but the select will not take any locks (unless it's a select for update), so, there should be no problem.
    Oracle will use read consistency to guarantee that the selected results are self-consistent and consistent with the point in time of the start of the query.
    Hope that helps,
    -Mark

  • Intel Xeon Hyper Threading

    Hi there,
    Any experienxes with $SUBJECT and Solaris 10?
    How stable is hyper threading support, and how much does it degrade performance, if I switch it off?
    I've read about the security vulnerability with hyper threading, but I don't really care about it. I'm more interested in performance/stability.
    Thanks,
    Imre Csatlos

    CPU_COUNT is a parameter dinamically adusted by the Oracle instance. Oracle perfectly supports hyper threading and there is no need to change the value of this parameter.

  • Transaction Recovery within an Oracle RAC environment

    Good evening everyone.
    I need some help with Oracle 11gR1 RAC transaction-level recovery issues. Here's the scenario.
    We have a three(3) node RAC Cluster running Oracle 11g R1. The Web UI portion of the application connects through WLS 9.2.3 with connection pooling set. We also have a command-line/SQL*Developer component that uses a TNSNAMES file that allows for both failover and load balancing. Within either the UI or the command line portion of the application, a user can run a process by which invokes one or more PL/SQL Packages to be invoked. The exact location of the physical to the database is dependent on which server is chosen from either the connection pooling or the TNSNAMES.ORA Load Balancing option.
    In the normal world, the process executes and all is good. The status of the execution of this process is updated by the Packages once completed. The problem we are encountering is when an Oracle Instance fails. Here's where I need some help. For Application-level (Transaction Level) recovery, the database instances are first recovered by the database background proccesses and then Users must determine which processes were in flight and either re-execute them (if restart processing is part of the process) or remove any changes and restart from scratch. Given that the database instance does not record which processes are "in flight" it is the responsibility of the application to perform its own recovery processing. Is this still true?
    If an instance fails, are "in flight" transactions/connections moved to other instances in the Grid/RAC environment? I don't think this is possible but I don't remember if this was accomplished through a combination of Application and Database Server features that provide feedback between each other. How is the underlying application notified of the change if such an issue occurs? I remember something similar to this in older versions of Oracle but I cannot remember what it was callled.
    Any help or guidance would be great as our client is being extremely difficult in pressing this issue.
    Thanks in advance
    Stephen Karniotis
    Project Architect - Compuware
    [email protected]
    (248) 408-2918

    You have not indicated whether you are using TAF or FCF ... that would be the first place to start.
    My recommendation would be to let Oracle roll back the database changes and have the application resubmit the most recent work.
    If the application knows what it did since the last "COMMIT" then you should be fine with the possible exception of variables stored
    in packages. Depending on packages retaining values is an issue best solved with PRAGMA SERIALLY_REUSABLE ... in other words
    not using the retention feature.

  • Oracle RAC environment

    Hi,
    I have 4 virtual machines based on XEN. Each of them have Centos 5 OS, 1GB RAM, 10GB disk space. I download all necessary staff for install Oracle RAC, but I wondering what infrastructure I should implement? I want install RAC for test functionality like Cache Fusion, TAF and do some AWR statistic.
    What do you think, which choice will be the best:
    * raw devices or OCFS2?
    * use one xen machine for storage data or partition disk on each machine and use ASM?
    * other..
    If you have own experience please help me choose best configuration.
    Best,
    tutus

    Hi,
    i don't have experience with Xen in oracle RAC but i do use Vmware Fusion on my MAC machine.
    ** raw devices or OCFS2?*
    -- for manageability use OCFS2. raw device is difficult to manage unless you want to try it.
    ** use one xen machine for storage data or partition disk on each machine and use ASM?*
    -- 1. yes you can create a new Xen machine for your storage try considering using Openfiler
    -- 2. remember that the disk should be shared on both Linux machine and you cannot just create disk partition on each box.
    if you just want to test RAC, why not use vmware its very easy to configure even sharing the disk between nodes.
    regards,
    baidba

  • A sample server specification for Oracle RAC environment

    Hi,
        Our project has decided to change the single instance database to a RAC environment. Can any one provide a sample server specification to be analysed based on our project.
    For example minimum processor/RAM....
    Thanks

    This is the simplest installation you can get, but if you want to do a fast response file based installation, there it is.

  • Cannot get external procedural call in Oracle RAC Environment

    Cannot get external procedure call to work in our test RAC env.
    We are able to get it to work in our DEV env which is a single instance
    LISTENER.ORA:
    NODE1:
    # listener.ora Network Configuration File: /opt/oracle/app/oracle/product/10.2.0/db_1/network/admin/listener.ora
    # Generated by Oracle configuration tools.
    LISTENER_SBLBGT01 =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = sblbgt01-vip1)(PORT = 1521)(IP = FIRST))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 172.41.1.21)(PORT = 1521)(IP = FIRST))
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /opt/oracle/app/oracle/product/10.2.0/db_1)
    (PROGRAM = extproc)
    (ENVS="EXTPROC_DLLS=ANY")
    NODE2:
    # listener.ora.sblbgt02 Network Configuration File: /opt/oracle/app/oracle/product/10.2.0/db_1/network/admin/listener.ora.sblbgt02
    # Generated by Oracle configuration tools.
    LISTENER_SBLBGT02 =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = sblbgt02-vip2)(PORT = 1521)(IP = FIRST))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 172.41.1.22)(PORT = 1521)(IP = FIRST))
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /opt/oracle/app/oracle/product/10.2.0/db_1)
    (PROGRAM = extproc)
    (ENVS="EXTPROC_DLLS=ANY")
    2) ### If you are receiving errors, please list exact error messages and text: ###
    (cont 1.)
    tnsnames.ora (on both nodes):
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = extproc))
    (CONNECT_DATA = (SID = PLSExtProc) (PRESENTATION = RO)))
    [opt/oracle/app/oracle/product/10.2.0/db_1/network/admin]> tnsping EXTPROC_CONNECTION_DATA
    TNS Ping Utility for Solaris: Version 10.2.0.3.0 - Production on 11-APR-2011 10:52:49
    Copyright (c) 1997, 2006, Oracle. All rights reserved.
    Used parameter files:
    /opt/oracle/app/oracle/product/10.2.0/db_1/network/admin/sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = IPC)(KEY = extproc)) (CONNECT_DATA = (SID = PLSExtProc) (PRESENTATION = RO)))
    OK (0 msec)
    Calling External Procedure:
    SQL> execute ttran.shell('ls');
    BEGIN ttran.shell('ls'); END;
    ERROR at line 1:
    ORA-28575: unable to open RPC connection to external procedure agent
    ORA-06512: at "TTRAN.SHELL", line 1
    ORA-06512: at line 1

    Any Reply Please...
    would appreciate your help...

  • Add Dialog instance in Oracle RAC Environment

    Hi Gurus,
    Do we have to isntall Dialog Instance from sapinst if you want to add a dialog instance in the Cluster Environment?
    I want to add two dialog instance to run on node-2 and node-4 using SAPCTL.

    Yes, you should run sapinst to install DI.

  • Mixed cpu's i.e IA/AMD in Oracle RAC ?

    here is common oracle software binary for AMD64/IA64. My question can we have mixed cpu vendor in the oracle RAC cluster? I mean one node with intel cpu and another AMD cpu? Rest of the resource i.e os level, memory etc will be idenitical. Already we running 2 nodes cluster with intel cpu and planning to add 3rd node with AMD Cpu. Will be any issues. Please advise

    Using different CPU types in cluster nodes is acceptable as long as the two CPUs use the same instruction set (chipset). For example, the Intel Pentium and the AMD Athlon implement nearly identical versions of the x86 instruction set, but have radically different internal designs. In other words, you have to be able to install the Oracle software on each node from the same installation disks. If you have to use different media to install Oracle one or more nodes, then those nodes are not compatible.
    While what you are proposing might be possible, it is not recommended. There might be some slight differences in how the Oracle software runs on the AMD system vs. the IA system. This is probably the case, since Oracle certifies Itanium releases separately.

  • Oracle Upgrade from Oracle RAC 9.2.0.6 to Oracle 10.2.0.4

    Hi All,
    Currently, we are running 4 node Oracle RAC environment with below mentioned configuration.
    OS: Sun Solaris 5.9
    Hardware: Sun E2900
    Oracle Version: 9.2.0.6
    Veritas Cluster Server: 4.1
    We want to upgrade Oracle version to 10g, and currently analyzing the options to perform this. The current database size is 1TB appx and we want to spend minimum application shutdown time running on this database.
    As part of upgrade, we also need to upgrade Veritas Cluster Server from 4.1 to 5.1 to support Oracle 10g. It would be great help,, if someone can pass some guideline to perform this task.
    We are currently thinking about piecemeal approach, where we can upgrade each node individually and then put them back to cluster. There are some complexities involved, and its really high risk approach.
    Thanks a lot in advance for help
    Regards,
    Manoj

    Orcale 10g RAC requires you to install Oracle Clusterware. Oracle Supports running it along side a 3rd party clustering software. Not sure why you're so anxious to upgrade Veritas Clusterware when it will be trivial on the 10g db hosts.

  • Database Table Resource via Oracle RAC connection Manager

    Hello,
    Our current IDM 8.1 syncs off a HR Database Table using the Database Table connector.
    Our DBA's are moving the view into an Oracle RAC environment.
    Question: Is there a way for us to connect and sync off our DB table through an Oracle RAC connection manager.
    I understand that for the IDM repository, this is possible.
    jdbc:oracle:thin@(DESCRIPTION =
    (ADDRESS_LIST =
    (LOAD_BALANCE = ON)
    (FAILOVER = ON)
    (ADDRESS = (PROTOCOL = TCP)(HOST = server1.ser.com)(PORT = 1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = server2.ser.com)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = db.com)
    servers server1 and server2 are oracle connection managers
    Thank you for your input,
    -RC

    We moved the repository to Oracle RAC recently. The syntax to switch to the new databasecluster was something like this:
    lh setRepo -tOracle -ujdbc:oracle:thin:@//dbcluster1.domain:1521/service_idm.oradb.domain -Uwaveset -Pwachtwoord
    For the 'lh setRepo' command the old database had to be up, and we had to use the old ojdb5.jar. After that we switched to ojdb6.jar.
    One of our resources is a database table with HR data in the same database. The following Database Access Parameters work for us:
    Database Type:      Oracle
    JDBC Driver:      oracle.jdbc.driver.OracleDriver
    JDBC URL Template:      jdbc:oracle:thin:@//%h:%p/%d
    Host :     dbcluster1.domain
    Database: service_idm.oradb.domain
    Port: 1521
    Greetings,
    Marijke

Maybe you are looking for

  • Same Skype Account on Multiple Devices

    I hope I am posting this in the right place. So I have a Skype program running on my Macbook and had the app running on my iTouch. For both devices I was logged in with the same Skype account. I really didn't like how things were going for the Skype

  • Permissions/Strange things happening...

    I am having some strange issues with my Mac, and I'm fairly sure it's down to permissions but can't see why/how. My Mac has 2 accounts, 1 being an Admin account and then my account (which is also Admin). My account automatically logs in. When I try t

  • Idvd doens't find imovie project

    I've saved a project in imovie. I've saved it in the same manner I've saved all the other movies I've done. I saved it to the same folder as all the other movies I've done. I even tried saving it again with a different name. I've restarted the compue

  • Cannot uninstall Office 2013 Preview

    Firstly the standard route via Control Panel would not work – it just sat there for ages preparing to uninstall, but doing absolutely nothing as verified in Task Manager. So I looked at the recommended manual uninstall procedure (support.microsoft.co

  • Path to download the  SAP-INTDIR content

    Hi friends, Can anybody please tell the path to dowload Xi content, SAP-INTDIR from the service marketplace? Thanks.