DB_WRITER_PROCESSES in Oracle 10.2.0.4 HP UX

Hi all

I noticed that the asynchronous i/o is not used with the regular file system on HP UX (only raw devices).
As far as I know what I can do is to configure multiple writers db with the DB_WRITER_PROCESSES parameter.

DB a CPU_COUNT in 16, but 2 engravers of db (default value = CPU_COUNT / 8).

Should I have any advantage by increasing DB_WRITER_PROCESSES?
Or if there is a bottleneck in writing of Sales pads?

Thank you

Diego wrote:
Hi all

I noticed that the asynchronous i/o is not used with the regular file system on HP UX (only raw devices).
As far as I know what I can do is to configure multiple writers db with the DB_WRITER_PROCESSES parameter.

DB a CPU_COUNT in 16, but 2 engravers of db (default value = CPU_COUNT / 8).

Should I have any advantage by increasing DB_WRITER_PROCESSES?

None

Or if there is a bottleneck in writing of Sales pads?

If the bottleneck exists, it would be the end of the disc & not the end of the CPU.
Server process are at least 1000 times faster than mechanical drives.
a single DB_WRITER could occupy 10 disk controllers & not be a bottleneck.

Tags: Database

Similar Questions

  • Test the Oracle Instance on the smaller box (RAM problems)

    I got the task of taking an existing database of production and creation of a database of test on a much smaller box. The production box has 48 GB of RAM and eight CPUS (Itanium running HP - UX 11.23). The test box has four gigabytes of RAM and a processor. We had a process in place in the past to do this for Oracle 9i. All the data files, redo logs and Oracle 10g binaries are hosted on an HP EVA SAN, so we use snapshot or mirror of the cloning technology during the production on the test server instance.

    On Oracle 9i, we used to copy the data, delete the control files, then run a script to create new files of control for the test instance. I don't know if the old 9i writing work and have not yet tested this part. Mainly because I have problems to get the test instance to start reliably in the first place. When I copied all the data on, I changed the tnsnames.ora to reflect the host name of the new machine. I made a few adjustments in the file init.ora for production DB as well. At the beginning, I was able to start the database and everything seemed fine. But when I tried to stop him, he gave me the following error message:

    [07:32] [oracle@OracleC:~]$sqlplus "/ as sysdba"]

    SQL * more: Release 10.2.0.1.0 - Production Wed Jul 22 07:32:11 2009

    Copyright (c) 1982, 2005, Oracle. All rights reserved.

    Connect to an instance is idle.

    SQL > startup nomount;
    ORA-03113: end of file on communication channel


    This error is broad enough that I am certain that what he means is a bad server configuration of database for me probably a problem in the init.ora or SPFILE with a parameter that is calibrated for 48 GB box, not the box of 4 GB.

    Here's what I have in my init.ora file:

    ===========================================================================

    ###########################################
    IO and cache memory #.
    ###########################################
    DB_BLOCK_SIZE = 8192

    ###########################################
    # The library Cache and sliders
    ###########################################
    open_cursors = 300

    ###########################################
    # Diagnostic and statistical
    ###########################################
    background_dump_dest = / oracle10g/admin/prod/bdump
    core_dump_dest = / oracle10g/admin/prod/cdump
    TIMED_STATISTICS = TRUE
    user_dump_dest = / oracle10g/admin/prod/udump

    ###########################################
    # Distributed replication and snapshot
    ###########################################
    db_domain =""
    Remote_login_passwordfile = EXCLUSIVE lock

    ###########################################
    # Configuration file
    ###########################################
    control_files = ("/ oradata10g/prod/control02.ctl",)
    "/ oradata10g/prod/control03.ctl"
    "" / oradata10g/prod/control04.ctl ")"

    ###########################################
    # MTS
    ###########################################
    # Uncomment the following line when your listener is configured for SSL
    # (listener.ora and sqlnet.ora)
    dispatchers # = "(PROTOCOL = CST)(SER=MODOSE) ', ' (PROTOCOL = CST)(PRE=oracle.aurora.server.GiopServer) ', ' (PROTOCOL =)(PRE=oracle.aurora.server.SGiopServer) CST.
    "Dispatchers ="(Protocol=TCP) (SER = MODOSE) "," (PROTOCOL = TCP)(PRE=oracle.aurora.server.GiopServer) ","(PROTOCOL=TCP) (PRE = oracle.aurora.server.SGiopServer) "

    ###########################################
    # Various
    ###########################################
    compatible = 10.2.0
    db_name = prod

    ###########################################
    # Network registration
    ###########################################
    instance_name = prod

    ###########################################
    # Pools
    ###########################################
    JAVA_POOL_SIZE = 24 M
    #shared_pool_size = 1610612736
    # is moved to 128M by George Lenzer to the TEST instance on 06/07/2009
    shared_pool_size = 134217728

    ###########################################
    # Process and Sessions
    ###########################################
    process = 500

    ###########################################
    Recovery and # redo Log
    ###########################################
    fast_start_mttr_target = 300

    ###########################################
    # Sort, hash joins, index Bitmap
    ###########################################
    #sort_area_size = 5242880

    ###########################################
    # System managed Undo and Rollback Segments
    ###########################################
    #undo_retention = 7200
    UNDO_RETENTION = 14400
    UNDO_MANAGEMENT = AUTO
    undo_tablespace = UNDOTBS

    UTL_FILE_DIR = *.

    DB_FILES = 256

    # The value db_cache_size 128M for the TEST by G instance. Lenzer 07-02-2009

    db_cache_size = 128 M
    db_file_multiblock_read_count = 8

    #log_archive_dest = / ora_archlog
    #log_archive_format='arch_%r_%t_%s.arc'

    # the recommendation is 1 per UC

    db_writer_processes = 1

    sort_area_size = 10485760

    ===========================================================================

    There is also a little info. When I try to start the DB and it's just sitting there, my only way out is to kill the process only oracle executes:

    Oracle 4370 4365 247 09:27:18? 09:59 oracleprod (DESCRIPTION =(LOCAL=YES) (ADDRESS = (PROTOCOL = DOB)))

    Then I run "ipcrm". But if I run "swapinfo", it always indicates that most of the system's RAM is eaten up:

    [09:38] [root@OracleC:~]$swapinfo
    Ko Ko Ko START PCT / Kb
    TYPE AVAIL USED FREE USED LIMIT RESERVE PRI NAME
    dev 4194304 0 4194304 0% 0-1/dev/vg00/lvol2
    dev 4194304 0 4194304 0% 0-2/dev/vg00/lvol10
    reserve - 8388608-8388608
    memory 4182760 4070604 112156 97%

    I can't to free up RAM (which is usually about 20% used) after the start of Oracle attempt. The kernel parameters are defined for Oracle9i recommendations, so that they should not be too far from what is recommended for Oracle 10 g.

    I worked on it for about two or three weeks and I am almost of ideas. So any suggestions are welcome.

    Published by: deckard2 on July 22, 2009 07:05

    Here's a quick explanation: http://download.oracle.com/docs/cd/B19306_01/install.102/b14316/ofa.htm#sthref872
    (this is for Windows, but also OK for Unix)

    You can put your SPFILE or INIT files in the directory admin/pfile but Oracle looking at this place unless you create a Unix link in $ORACLE_HOME/dbs /.

  • dbwr_io_slaves or db_writer_processes

    Im having a little trouble to understand the situations in which the dbwr_io_slaves use would be better db_writer_processes, it would be good if someone could explain it clearly or point me to documentation that explains it cleary.

    I have a secondary course related to im, which is the issue, one of the databases that I deal with has a large number of dirty buffers (ie: > 600 000) at the moment the only way I know to clear it and reduce the number is to restart the database from time to time (this is not something I want to do and need a better solution).

    Some basic information:

    The database gets loaded information in batch on a daily basis, the server on the database works has two dual core cpu popular with 8 GB of ram, there are also a few other databases running on these systems, as well.

    have I not my process dbwr configured OK?
    db_writer_processes = 1
    dbwr_io_slaves = 2

    There is no "golden rule" nor a formula for 'golden '. Configure the DBWR settings only if you really have a problem with DBWR write. Even then, first you would look at the (SAN or NAS or DASD) storage, i/o channels and OS settings and exhaust all other options before we look at these.

    If you use "dbwr_io_slaves" then you ask Oracle to simulate asynchronous IO, on the assumption that the operating system doesn't implement asynchronous IO or not doing well.
    Note that 'dbwr_io_slaves' and 'db_writer_processes' should not be set up together.

    See the MetaLink Notes 62172.1 and 97291.1

    Your first step is to determine if you really have a problem of performance DBWR.
    There is no evidence of what you have presented so far.

    The number of "Dirty buffers" is more a function of the way and the number of transactions is performed - IE the load, rather than the flow.

  • DB_WRITER_PROCESSES

    Hi guys,.

    The [Oracle reference | http://www.acs.ilstu.edu/docs/oracle/server.101/b10755/initparams055.htm] says to DB_WRITER_PROCESSES

    Integer parameter type
    By default the value 1 or CPU_COUNT / 8, if it is greater
    Not editable
    Range of values from 1 to 20
    Basic No.

    Why are told that it is not editable? I thought that we could change this setting to specify the number of DBW we want began at the start of the instance.

    Thank you

    Don't forget that:

    Database writer (DBWR) process.

    1 performs all writing of buffers of data files.
    2 is responsible for the management of the buffer cache.

    Management of the buffer Cache.

    1. when a buffer in the buffer cache is modified, it is marked "dirty".
    2 DBWR maintains the 'clean' buffer cache by writing Sales buffers to disk.
    3. as the buffers are filled and dirtied by the user process, the number of free buffers decreases. If the number of free buffer drops too low, process user who should read disk blocks in the cache is not able to find free tampons. DBWR manages the buffer cache so that the user process can always find free tampons.
    4. an LRU (least recently used) algorithm keeps the most recently used data in memory blocks

    The process DBWR writes dirty buffer on the drive under these conditions:

    * When a server process moves a buffer to the dirty list and discovers that the dirty list has reached a length threshold, the server signals DBWR to write process.
    * When a process server research a threshold buffer LRU list without finding a buffer without, it stops searching and signals DBWR to write (because that not free enough buffers are available and DBWR must make room for more).
    * When a timeout occurs (three seconds), DBWR reports itself.
    * In the case of a checkpoint, the Log Writer (LGWR) signals DBWR process.

    Reference: Concepts Oracle http://tahiti.oracle.com

    See you soon,.

    Francisco Munoz Alvarez
    http://oraclenz.WordPress.com

    Published by: F.Munoz Alvarez on November 30, 2012 11:05

  • Java plugin for Oracle hangs after the last update

    As part of the requirement of the Oracle, we run JRE 1.7.60
    To update firefox this morning and now the plugin is constantly crashing.

    Hello

    Thanks for your reply, but I doubt that flash player is related to do with Java.

    And the Java applet crashing in my browser, I guess, should not be linked to my graphics driver, especially since the only update that took place was an update of firefox.

    In any case, Firefox for some reason any launches 2 additional tabs when executing the Java Applet (IE does not work). In the past, I'm used to close the first tab, since it contains nothing except an Oracle logo.
    However, it seems that after the last update of firefox, if this tab is closed, it cause Java to crash.

    Therefore, do not close the additional tabs by the Java Applet. However, this has never happened before, do not know what has changed in the latest version of Firefox to make it happen now?

    Thank you

  • Installed firefox 31 and now I can't seem to our oracle enterprise manager URL 12 c

    Hello

    Monday, I've upgraded to Firefox 31 and now I can not connect to our site Web of Oracle Enterprise Manager Cloud Control. I get the following error message:

    The secure connection failed

    An error occurred during a connection to lmoemxs101q.atl2.dc.sita.aero:7799. The issuer certificate is not valid. (Error code: sec_error_ca_cert_invalid)

       The page you are trying to view cannot be shown because the authenticity of the received data could not be verified.
       Please contact the website owners to inform them of this problem. Alternatively, use the command found in the help menu to report this broken site.
    

    I don't know what to do to get rid of this message. I need to use OEM to monitor our Oracle databases, and I am no longer able to do this.

    Help, please.

    Thank you
    Roya

    Maybe you can remove or distrust 'problematic' certificates are part of the authorities and add it again. Please refer to this post.

  • So I can update my Oracle Java Applet plugin Development Kit 7, update 65, can you link me to the correct page of download of Oracle from your update of the Plugin page?

    When I accessed to periodically your Plugin Check and updates the web page in the past, I really appreciated that you connect to the right webpage updates of the Plugin of the seller when I clicked on the button update now red. "" This time, however, your Applet Java plug-in 'Update Now' button link I Oracle Java "Release Notes for updates to 7u65 ' rather than the usual download page. It seems rather unexpected for me, or any other user conscientious, to search for the appropriate file "JDK 7U65" download on the Oracle website.

    Thank you

    I usually use this page: http://www.java.com/en/download/testjava.jsp

    I hope that someone will fix the plugin check site.

  • When I use Firefox to display Oracle WebLogic EM, Firefox will not display the scroll bar on some pages. But Google Chrome.

    It is a problem specific to Oracle Web Logic EM.

    In our society, we use the logical Web as a basis for the application server.

    In the EM logic web server, users can use a Web Logic EM (EM is a portal to view processes on Web Logic application) to verify the data.

    I found when I use EM to check online XML, sometimes the page does not appear the scroll bar.

    If I use Google Chrome or Opera, and do the same thing, the page will display scroll bar.

    But I need Firefox because it is my main browser.

    How to overcome this issues?
    And how to prove?

    Hello, cor - el

    Please, please read this thread first:
    https://support.Mozilla.org/en-us/questions/976345

    I found there is that some people have the same problems.

    I check the data of the source code viewer, the data displayed are "pure XML.

    So my question is "pop-up windows display XML data in Firefox.

    I searched the KB and found an expert suggests a whole 'dom.disable_window_open_feature.scrollbars', 'true '.

    This solution not solve my problem.

    And thank you once again, cor - el.

    I can give up google chrome forever.

  • How will I know if Java is installed/enabled in the Firefox browser on my Linux system? I went to the Oracle/Java test page and it does not have Java installed.

    I see that Javascript is enabled. Is javascript and java, the same thing?

    To avoid confusion:

    Note that you need the Web-IcedTea Plugin installed and it is a different implementation of Java as the Oracle's Java plugin (formerly Sun), while the Oracle does not detect this plugin.

  • I have a macbook pro 10.11.2, I would use netbeans/eclipse/oracle/mysql, which I can't... so is an alternative to my problem or advice on what he should do.

    I have a macbook pro(10.11.2/2.7GHz/8GB(RAM)/256GB), I would use netbeans/eclipse/oracle/mysql, which I can't... so is an alternative to my problem or advice on what he should do.

    I installed netbeans three times, but everytime I open the app I can't find the java section that comes with the installation package.

    You should consult with manufacturers of these applications of tierce partie for help on the installation and execution of their products.

  • incompatibility of Oracle with the latest version. How can I download patch # 12877995

    I tried to enter a Web site today and I was told that my browser is not compatible with Oracle presentation programs. I googled this and told me that the new version is not and my options were to uninstall and reinstall an older version of firefox, or there may be a patch available at oralcle. I signed up with Oracle, but can not find patch and you must have a certain number of work to ask a question. I can not find a way to get a number of work and do not want to uninstall firefox lest I lose bookmarks and passwords. Any suggestions?

    Patch 12877995 currently only run Linux, bookmark this page, if she releases maybe they'll write it on the updates section

  • How to install the Oracle database on mac?

    Can someone send the procedure step by step to install the database oracle on mac

    Sorry, Oracle DB is not an Apple product, go to their forum to get advice.

  • How to install oracle on mac?

    I installed the next step in virtual machine to install oracle please someone help me I am a student and the teacher requirement is to install the oracle software is required for the Conference otherwise you will not sit in DB Conference Monday.

    Hello! First Oracle is a company, then perhaps you are referring to a specific software made by them?

    If its Java you do not need to put a virtual machine, it works fine on a Mac, and the installation process its fairly simple. What program or DK you trying to install?

  • Use Oracle database with LabVIEW

    I am new to Oracle database usage and I worked on the MS Access database. I want to use the Oracle database in one of our applications to store data and retrieve data using SQL instead of MS Access instructions. Please give some suggestions which less than the version that I can use? y at - it a free version that I can get? What I need deilver with software.

    Yes, there is a free version called Oracle XE which works very well. In fact, it is intended (which Oracle referred to as) OEM applications. It is free to use, and there is assistance available forums which are also free. The free version has all the features of the business, with a couple of limit: first of all, it will only access a carrot in your CPU. Second, the maximum data size is 4 GB.

    In regards the connection to it, check out this discussion.

    MIke...

  • Use Oracle oci in CVI 2010

    Does anyone have experience using Oracle oci in CVI 2010 on Windows 7? Should I install 64-bit or 32-bit Oracle Instant Client? It is sufficient to compile the program that accesses Oracle data, do I need to have the Oracle database and the ODBC Manager put in place?

    Marg SZ wrote:

    Does anyone have experience using Oracle oci in CVI 2010 on Windows 7? Should I install 64-bit or 32-bit Oracle Instant Client? It is sufficient to compile the program that accesses Oracle data, do I need to have the Oracle database and the ODBC Manager put in place?

    you didn't have to buy the Toolbox, even think it makes your job easier

    http://orclib.sourceforge.NET/

    http://www.orafaq.com/wiki/Oracle_Call_Interfaces

Maybe you are looking for

  • Partitions on Satellite P100-253

    I deleted get the small partition of ~ 250 MB at the end of the partition table when installing a debian linux. What is the use of this partition? Is how important it? Should I restore somehow? Thank youDominique

  • HP dv6 6140tx: hp dv6 6140tx ram upgrade

    I want to upgrade the ram in my computer hp dv6 6140tx laptop. He already have a 4 gb ddr3 Ram in one slot and the other is free. I want to know that can I use a 4 GB of ram ddr3 supporting 1.35 volts according to my knowledge 1.35 is supported in dd

  • Can I use the reinstallation CD from 1 to my another 8600 Inspiron 8600

    I have 2 computers Inspiron 8600.  1 purchased from Dell refurbished call it computer 'A' and the other was purchased new Dell call computer 'B '.  The systems are identical except minor differences of software.  I want to do a repair/reinstall on co

  • How to remove a user on my rt surface?

    How to remove a user on my rt surface?

  • Readers MD3200 and 3 TB

    Had pingée with the issue of the customer... and looking for a response.   Thank you! "Assuming that 96 x 3 TB drives which is the largest LUN I can create?