Question regarding memory on linux platforms

Customer recently upgraded from OCS 9i to 10g. The mail store database for OCS is a RAC 10.1.0.5 two node database. I have questions about which method is best to use to have a SGA bigger than 1.7GB on Linux x86 servers.
On the new OCS 10g mail store database, HWm enqueues are found to impact
database performance while the mail store receives very large quantities of
email in a short time. Oracle support and Enterprise Manager's ADDM has
recommended increasing the size of the SGA to help reduce HWm enqueues.
The max SGA size is currently 1648MB.
Servers are Red Hat 4 update 5. Each server in the two node RAC has 16GB of
RAM, with 4 processors (8 cores on each server). The kernel is the 2.6 SMP
kernel: Linux prcodb01.its.calpoly.edu 2.6.9-55.0.9.ELsmp #1 SMP Tue Sep 25 02:
17:24 EDT 2007 i686 i686 i386 GNU/Linux
Here are customer questions:
Oracle states that 1.7GB is the current limit with my systems current
configuration. When the Oracle documents reference 1.7GB, can I safely assume
that 1.7GB = 1740MB? I'd be safe using a max SGA size of 1739MB?
I've read Metalink notes 260152.1 and 329378.1. Looking at options listed in
260152.1, two options are listed for Red Hat 4.0, "configuration 3" and
"configuration 4" which required use of the hugemem kernel. Besides the
difference in the SGA sizes available between those two options, are there any
drawbacks from choosing one option over the other? Is there any drawback in
using the hugemem kernel over the plain smp kernel?

Hi,
For that question, Is there any drawback in using the hugemem kernel over the plain smp kernel ?
Please refer to NOTE 264236.1
Regards
Jason

Similar Messages

  • Question regarding Memory in Xperia C and updating Xperia C to 4.3

    Dear Sir,
    When shall we get update for 4.3 version? Further please tell me what is the difference between Device Memory and Internal Storage. Whether Internal storage can be used against device memory. Phone runs slow due to less Device memory.
    In my mobile gollowing is the status
    1. Total Device Memory  :   0.98GB         Used Device Memory : 503 MB       Remaining Device Memory : 282 MB
    2. Total RAM  :   973MB        Available RAM : 314 MB
    3. Internal Storage : 1.21 GB      Available Internal Storage : 1.2 GB      
    Regards
    Pummy

    http://talk.sonymobile.com/t5/FAQ/Memory-in-Android-devices/m-p/348064#U348064
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

  • Question regarding Memory Consumption in Collections

    I Read this on some website -
    Memory for collections is stored in the program global area (PGA), not the system global area (SGA). SGA memory is shared by all sessions connected to Oracle Database, but PGA memory is allocated for each session. Thus, if a program requires 5MB of memory to populate a collection and there are 100 simultaneous connections, that program causes the consumption of 500MB of PGA memory, in addition to the memory allocated to the SGA.
    My Question is -
    If i use Collections in my Procedures and they consume 5 MB space, is the memory still allocated to the session even if the Procedure completes its execution ??
    I mean is memory released for other sessions after procedure completion or session termination ??

    user9276238 wrote:
    If i use Collections in my Procedures and they consume 5 MB space, is the memory still allocated to the session even if the Procedure completes its execution ??Yes. How does the session know that your very next instruction to it is not run that very same procedure again (with different parameters). It will again need 5MB of memory. And if releases, it will need to reallocate it. If all processes work like this, immediately releasing memory and then grabbing memory again - that could cause contention and other issues.
    Memory management is more complex than this. For example, let's say your session required 1 few KB of space. So the process's memory looks something as follows:
    xxxx
    Next your session needs that 5MB for the (enormous) collection:
    xxxxyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy
    And during the processing, it needs a few KB more:
    xxxxyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyzz
    Okay, so now it can release the 5MB memory (as indicated by the y ) back to the kernel? It cannot shrink it as there is trailing memory allocated and used (as indicated by the z ). It will need to re-org that memory in order to release that 5MB worth of y's.
    So it is not as straight forward as one would like to think. The basic rule for PL/SQL is to tread softly using memory. Why? Because this is server code. Memory used in PL is allocated as private memory to that process. Unlike shared memory, no-one else can share in its use. Thus the memory must be considered expensive.
    There's also the issue of scalability. If your PL code needs 5MB of private memory from the server.. what happens when a 100 client sessions all run your code? How well does your code scale in a multi-process and multi-server environment?
    So what memory should you ideally then use in PL? Shared memory. The SGA. This means it is better for scalability and server resources to rather store large data structures for PL as GTT's (global temporary tables - where a temp table is created per session).
    I mean is memory released for other sessions after procedure completion or session termination ??Session termination is a "sure thing" ito memory being released back to the kernel as free memory - assuming this is a dedicated server session. The actual server process will terminate and its PGA will be released. Shared server processes services multiple sessions during their life time. And only when the the shared server process terminates, will its PGA be released.(though PGAs can be shrunk as and when decided feasible by their memory managers)

  • Question regarding Oracle and Linux on VMware

    Hello,
    I carefuly read the paper on Oracle and Linux on Your Own VMware and I'm missing a point.
    The paper explains how to start a cluster on a single host in a single Linux VM on VMware.
    So, there are 2 instances of Oracle 10g DB on the same Linux VM inside VMware. What does allow that?
    Is it possible to run 2 instances on any (single) Linux box, or is VMware required? If VMware is not required, why this complication in that paper? If VMware is required, what does it bring that make running 2 cluster instances on the same host possible?
    Many thanks for your help.

    userLynx wrote:
    I have an oracle database (10.2) and I have a query that needs to compare data on the Oracle database to data on a MS SQL server DB. I'm using a DB Link between the two databases.
    How would I compare the date fields?
    I have a table that has a date as one of the fields and I need to restrict the records where the date is equal to the date on SQL, however the formats are different:
    My query is as follows:
    SELECT mkt_css_name,
    pmv_rqst_corp_id,
    pmv_rqst_source,
    'G',
    pmv_css_acct_no,
    eq.start_date
    FROM power_move@cmdt,
    enroll_que@tcis eq,
    marketer@cmdt
    WHERE eq.css_account_number = pmv_css_acct_no
    AND eq.requestor_type = 'P'
    AND eq.status IN ('A','P','G','S')
    AND eq.marketer_id = mkt_seq_no
    AND pmv_service_type IN ('G','D')
    And Pmv_Gas_Mktr_No = Eq.Marketer_Id
    AND pmv_received_timestamp= eq.enroll_date ;
    The problem is that the date is stored in Oracle in the following format: DD-MON-YYYY and in SQL as 'YYYY-DD-MM HH:MI:SSSSSS'
    for example: Data in Oracle would be 27-JAN-2012 and in SQL as 2012-01-27 00:00:00.000
    I get an error when I compile.
    How do you reconcile the formats when the syntax is different between databases?
    Thanks, SeanDATE datatypes do NOT have any "format"
    DATE datatype is stored in internal binary notation.
    use TO_CHAR to display, present & compare the DATE datatypes

  • A question regarding memory clock on GTX 580 Twin Frozr II OC

    Hi, I just installed the video card and Afterburner shows the memory clock to be 2048 mhz. The specifications list memory clock at 4276 mhz, why is the card underclocked according to Afterburner? Also, the memory clock slider only goes up to 2665 mhz. What's going on?

    You have to double those numbers to get the effective clock.
    i.e. 2665 X 2 = 5330 if you were to try and use that, which I would advise against.

  • I have a question regarding memory...

    Hello fellow Apple Users,
    I am currently experiencing a few technical glitches which I beleive may be related to an error I am having with my computer memory. Recently I have pushed my memory nears its maximum. To solve my problem I not only deleted files and movies not being used, but I also moved my iPhoto to an external drive and then deleted it from my computer. (In case you are wondering I have, of course, restarted my computer and cleared my trash). My memory still seems to be full, but I am not sure why. Twice this last week my screen has gone completely black, showing nothing but my mouse and giving a panic attack. The only temporary fix has been to shut down my computer for a short time before turning it back on.
    Below are two screen shots from my activity monitor:
    I like to think of myself as competent, but by no means am I a computer expert. If I understand correctly it is the disk usuage which more accurately  reflects if my memory is still full. As you can see both screens indicate that I have missed something.
    The next step I took to remedy my problem was by running software (Whatsize) to screen my files and show their size. This does include hidden files. Below is a screenshot of what I found.
    Bottom line like many others out there, I am simpy at a loss over what is probably (hopefully) a very simple problem. If anyone has any ideas of why my memory still appears full, or if anyone feels I have incorrectly self-diagnosised the problem please share.
    Thank you in advance for your time and assistance!! ^~^

    Well this is embarrassing, in addition to my outlandish grammatical errors I did not properly upload my screenshots. Nevertheless here they are in the same respective order.

  • Question about Java implementation in Linux platform

    Hello,
    I shall implement one Java program in Linux platform. I'm a newer to linux. Need I install some special software in Linux platform to compile and run JAVA program?
    Thank you in advance
    java_linux

    Sorry, this forum is about Sun Studio, which is a collection of native compilers and tools. About Java, please use Java forum; for example, one of these: http://forums.sun.com/category.jspa?categoryID=5

  • Dynamic Memory on Linux VM

    Hello!
    Hyper-V 3.0 is great! After it will be released, I think it will become the most popular hypervisor. But it remains a major drawback.
    Nowhere announced support for dynamic memory for Linux VM on Hyper-V.
    Planned at least in some perspective to implement this functionality?
    Now we have to use two different hypervisors, as Hyper-V does not meet all the requirements of our customers.
    Mark Tepterev
    Oversun

    ~
    ~
    Moved  P.P.P.S.
    Q from Brian Wong:
    ----- Original Message -----
    From: "Brian Wong"
    To: <[email protected]>
    Sent: Thursday, March 06, 2014 9:24 AM
    Subject: Re: Linux does not use more than the startup RAM under Hyper-V with dynamic memory enabled
    On 3/6/2014 1:20 AM, Brian Wong wrote:
    > The kernel is built with the full set of Hyper-V drivers, including the
    > key "Microsoft Hyper-V Balloon Driver" as well as memory hot-add and
    > hot-remove functionality. This is happening with both the Gentoo-patched
    > 3.10.32 kernel and the vanilla 3.12.5 kernel. The host machine has a
    > total of 24 GB of memory.
    >
    > For now, I am working around the issue by starting the VM with the
    > startup memory set to the maximum and letting Hyper-V take the usused
    > memory back when it is not in use. The VM will then get the extra memory
    > when it needs it.
    >
    > Have I encountered a bug in the Hyper-V balloon driver?
    >
    Just a correction: the vanilla kernel version is 3.13.5, not 3.12.5.
    Sorry for any confusion.
    Brian Wong
    http://www.fierydragonlord.com
    ----- Original Message -----
    From: "Brian Wong"
    To: <[email protected]>
    Sent: Thursday, March 06, 2014 9:20 AM
    Subject: Linux does not use more than the startup RAM under Hyper-V with dynamic memory enabled
    I'm new to LKML, so please don't be too hard on me :)
    I'm running Gentoo Linux under Microsoft Client Hyper-V on Windows 8.1
    Pro, and I've noticed some odd behavior with respect to dynamic memory
    (aka memory ballooning). The system will never use more than the startup
    memory defined in the virtual machine's settings.
    ( VVM: typewriting error viRtual fixed by me, for best search in future )
    For example, if I set the startup memory to 512 MB, and enable dynamic
    memory with a minimum of 512 MB and a maximum of 8192 MB, the system
    will never allocate than 512 MB of physical memory, despite Hyper-V
    assigning more memory to the VM and the added memory being visible in
    the output of "free" and "htop". Attempting to use more memory causes
    the system to start paging to swap, rather than actually allocating the
    memory above the startup memory assigned to the VM.
    The kernel is built with the full set of Hyper-V drivers, including the
    key "Microsoft Hyper-V Balloon Driver" as well as memory hot-add and
    hot-remove functionality. This is happening with both the Gentoo-patched
    3.10.32 kernel and the vanilla 3.12.5 kernel. The host machine has a
    total of 24 GB of memory.
      Brian Wong wrote On 3/6/2014 1:20 AM:
     Just a correction: the vanilla kernel version is 3.13.5, not 3.12.5. )
    For now, I am working around the issue by starting the VM with the
    startup memory set to the maximum and letting Hyper-V take the usused
    memory back when it is not in use. The VM will then get the extra memory
    when it needs it.
    Have I encountered a bug in the Hyper-V balloon driver?
    Brian Wong
    http://www.fierydragonlord.com
    ----- Original Message -----
    From: "Victor Miasnikov"
    To:  [email protected]; "Brian Wong"
    Cc: "Abhishek Gupta (LIS)" ( zzzzzzzzzzzzzzz (at) microsoft.com>; "KY Srinivasan" zzzzzzzzzzz (at) microsoft.com
    Sent: Thursday, March 06, 2014 1:07 PM
    Subject: Re: Linux does not use more than the startup RAM under Hyper-V with dynamic memory enabled RE: [PATCH 2/2]
    Drivers: hv: balloon: Online the hot-added memory "in context" Re: [PATCH 1/1] Drivers: hv:
    Hi!
     Short:
     Question to Linux kernel team:
    may be patch
    >>> [PATCH 2/2] Drivers: hv: balloon: Online the hot-added memory "in context"
    can solve problems with dynamic memory hot add in Hyper-V VMs with Linux OS ?
     Full:
    BW>> .., if I set the startup memory to 512 MB, and enable dynamic
    BW>> memory with a minimum of 512 MB and a maximum of 8192 MB,
    BW>>  the system will never allocate than 512 MB of physical memory
    BW>>
    BW>> Have I encountered a bug in the Hyper-V balloon driver?
    BW>>
     Unfortunately,  It's long story . . . :-(
    a)
     I already ( on January 09, 2014 2:18 PM )  write about problems with "Online the hot-added memory"  in "user space" see
    P.P.S.
    b)
      See
    Bug 979257 -[Hyper-V][RHEL6.5][RFE]in-kernel online support for memory hot-add
    https://bugzilla.redhat.com/show_bug.cgi?id=979257
     (  Info from this topic may be interessant not only for RedHat users )
    b2)
     Detail about pathes related problem "Online the hot-added memory"  in "user space" :
    >>> [PATCH 2/2] Drivers: hv: balloon: Online the hot-added memory "in context"
    >>>
    >>>
    >>> === 0001-Drivers-base-memory-Export-functionality-for-in-kern.patch
    >>>  . . .
    >>> +/*
    >>> + * Given the start pfn of a memory block; bring the memory
    >>> + * block online. This API would be useful for drivers that may
    >>> + * want to bring "online" the memory that has been hot-added.
    >>> + */
    >>> +
    >>> +int online_memory_block(unsigned long start_pfn) {  struct mem_section
    >>> +*cur_section;  struct memory_block *cur_memory_block;
    >>>
    >>>  . . .
    >>> ===
    >>>
    >>>
    >>> ==
    >>>  . . .
    >>> == 0002-Drivers-hv-balloon-Online-the-hot-added-memory-in-co.patch
    >>>   . . .
    >>>    /*
    >>> -   * Wait for the memory block to be onlined.
    >>> -   * Since the hot add has succeeded, it is ok to
    >>> -   * proceed even if the pages in the hot added region
    >>> -   * have not been "onlined" within the allowed time.
    >>> +   * Before proceeding to hot add the next segment,
    >>> +   * online the segment that has been hot added.
    >>>     */
    >>> -  wait_for_completion_timeout(&dm_device.ol_waitevent, 5*HZ);
    >>> +  online_memory_block(start_pfn);
    >>>
    >>>   }
    c)
      Before apply patches ( see in P.S. about native udev-script) we are need use one of this methods:
     [ VVM:   URL of this topic skipped ]
    c1)
    "/bin/cp method" by Nikolay Pushkarev :
    Following udev rule works slightly faster for me (assuming that memory0 bank always in online state):
    SUBSYSTEM=="memory", ACTION=="add", DEVPATH=="/devices/system/memory/memory[1-9]*",
    RUN+="/bin/cp /sys$devpath/../memory0/state /sys$devpath/state"}}
    ( VVM : of course all need be place in one line, 2 line in this msg. -- only for good visual formating reasons )
    c2)
    udev rule using "putarg" by Nikolay Pushkarev :
     Even "/bin/cp method" udev rule work time to time not as need :-(
    As a result, Nikolay Pushkarev write a program putarg.c, that is even faster than "/bin/cp method" :
    ==
    #include <stdio.h>
    #include <fcntl.h>
    #include <sys/ioctl.h>
    #include <string.h>
    int main(int argc, char** argv) {
      int i, fd;
      if (argc < 2) return 0;
      if ((fd = open(argv[1], O_RDWR)) < 0) return 1;
      for (i = 2; i < argc; i++) {
        if (write(fd, argv[i], strlen(argv[i])) < 0) {
          close(fd);
          return i;
      close(fd);
      return 0;
    ==
     The first argument - the name of the output file ,
    and argument number 2 ( and all subsequent (  if exist ) ) - are text that are wiil be written in output file.
     Compile source code to executable file by run command:
    gcc -o putarg -s putarg.c
    The resulting binary need be placed an accessible location , such as /usr/bin, or wherever you want.
    Now udev rule using "putarg" can be written as :
    SUBSYSTEM=="memory", ACTION=="add", RUN+="/usr/bin/putarg /sys$devpath/state online"
    This complex solutions ( compiled file and udev-rule ) works exceptionally fast.
    Best regards, Victor Miasnikov
    Blog:  http://vvm.blog.tut.by/
    P.S.
    Nikolay Pushkarev about standart udev-script :
    Strange, that the native udev-script
    SUBSYSTEM=="memory", ACTION=="add", ATTR{state}="online"
    triggered somehow through time ( VVM: very often not work as need )
    P.P.S.
    ----- Original Message -----
    From: "Victor Miasnikov"
    To: "Dan Carpenter"; "K. Y. Srinivasan" ; <[email protected]>
    Cc: "Greg KH" ; <[email protected]>; <olaf (at) aepfle.de>; ""Andy Whitcroft"" <zzzzzzzzzzzz (at)
    canonical.com>;
    <jasowang (at) redhat.com>
    Sent: Thursday, January 09, 2014 2:18 PM
    Subject: RE: [PATCH 2/2] Drivers: hv: balloon: Online the hot-added memory "in context" Re: [PATCH 1/1] Drivers: hv:
    Implement the file copy service
    Hi!
    > Is there no way we could implement file copying in user space?
      For "file copy service"  "user space"  may be pretty good
    But I ( and other Hyper-V sysadmin)  see non-Ok ( in "political correct" terminalogy) results with "hv: balloon: Online
    the hot-added memory" in "user space"
    ==
     [PATCH 2/2] Drivers: hv: balloon: Online the hot-added memory "in context"
    ==
     What news?  Roadmap?
    Best regards, Victor Miasnikov
    Blog:  http://vvm.blog.tut.by/
    ~
    ~
    ~
    ~
    ~
    ~
    ~
    ~
    ~
    ----- Original Message -----
    From: "KY Srinivasan"
    To: "Victor Miasnikov"; [email protected]; "Brian Wong"
    Cc: "Abhishek Gupta (LIS)"
    Sent: Thursday, March 06, 2014 1:23 PM
    Subject: RE: Linux does not use more than the startup RAM under Hyper-V with dynamic memory enabled RE: [PATCH 2/2]
    Drivers: hv: balloon: Online the hot-added memory "in context" Re: [PATCH 1/1] Drivers: hv:
    > -----Original Message-----
    > From: Victor Miasnikov
    > Sent: Thursday, March 6, 2014 3:38 PM
    > To: [email protected]; Brian Wong
    > Cc: Abhishek Gupta (LIS); KY Srinivasan
    > Subject: Re: Linux does not use more than the startup RAM under Hyper-V
    > with dynamic memory enabled RE: [PATCH 2/2] Drivers: hv: balloon: Online
    > the hot-added memory "in context" Re: [PATCH 1/1] Drivers: hv:
    >
    Victor,
    I will try to get my in-context onlining patches accepted upstream.
    K. Y

  • Minimum Hardware Requirement for Siebel CRM 8.0 for Linux Platform?

    Hi,
    What are the minimum hardware requirement for Siebel CRM 8.0 for Linux OS?

    Following are the Linux Platforms supported & officially listed in Siebel 8 Requirement Doc:
    Red Hat Enterprise Linux 4
    Siebel Gateway Name Server
    PIII XEON @ 500 MHz with 256 MB memory
    Siebel Server
    PIII XEON with two processors @ 500MHz with 1 GB memory
    Web Server
    PIII XEON @ 500 MHz with 512 MB memory
    Database Server As recommended by DB vendor
    Oracle Enterprise Linux 4 Siebel
    Gateway Name Server
    PIII XEON @ 500 MHz with 256 MB memory
    Siebel Server
    PIII XEON with two processors @ 500MHz with 1 GB memory
    Web Server
    PIII XEON @ 500 MHz with 512 MB memory
    Database Server As recommended by DB vendor
    Novell SUSE Linux Enterprise Server 9
    Siebel Gateway Name Server
    PIII XEON @ 500 MHz with 256 MB memory
    Siebel Server
    PIII XEON with two processors @ 500MHz with 1 GB memory
    Web Server
    PIII XEON @ 500 MHz with 512 MB memory
    Database Server As recommended by DB vendor
    Regards,
    Shalabhsneha

  • Using SAP with linux platform

    HI Experts,
    How well is to Use SAP with linux platform?I checked in internet but i couldnt get a satisfactory result.DID someone who have installed the same can advise me about the performance.
    (80 gb hd , 1 GB ram).
    (I asked this question bcoz , when i tried to install the same my sound card is not working .)

    Hi,
    There are many things that you need to consider before you think of installaling SAP on Linux
    1. version of Linux- SAP does not support every version lf Linux
    2. Hardware- again SAP does not support every hardware
    there are supported: Bull,Dell,Fujitsu Siemens,HP,IBM,IBM POWER,IBM zSeries,SGI,SUN,Unisys
    3. RAM -SAP recommends swap memory to be 2*RAM,so you require a lot of RAM for installing SAP
    Now with the config. u have mentioned it looks you want to install in u pc or laptop,but I am afraid this will not be enough!!
    you will not be able to install SAP with this config.Let me know if you need any other info.

  • Question about memory expansion on Satellite A80-117

    I have a question regarding the memory compatibility.
    (The A8-117 is a 1.6 GHz Centrino (Pentuin M processor 730) with 533 MHz FSB, and 2 MB of 2nd level cache, Intel® 915GM Express chipset)
    At the moment i have 1 chip of 512MB (333MHz, CL 2.5) installed. I plan to upgrade to 1.5 or 2GB. So what bothers me is: can I install a 533MHz DDR2 modules on this laptop (in that case the old 333MHz one goes out)?
    At the official Toshiba site only 333MHz DDR are provided, while the 915GM express chipset allowes it.
    If 533 is not possible i guess i'll just buy additional 1GB of 333MHz DDR.
    Thanks in advance!
    Bostjan

    Hello
    At first I want to say that is always recommended to use compatible and tested RAM modules. On this way you will be sure it will work well and without any problems.
    According the notebook specification you can upgrade RAM to 2GB max and compatible modules are: PC2700 512MB (PA3312U-2M51) and PC2700 1024MB (PA3313U-2M1G).
    You can use faster RAM modules but for me it is really not necessary. The notebook specification is 333MHz bus speed and faster modules will not help that notebook runs faster. It is better to buy 2 x PA3313U-2M1G and you will have no problem and notebook will runs much much faster than before.

  • Error message: ORA-27125: unable to create shared memory segment Linux-x86_

    Hi,
    I am doing an installtion of SAP Netweaver 2004s SR3 on SusE Linux 11/Oracle 10.2
    But i am facing the follow issue in Create Database phase of SAPInst.
    An error occurred while processing service SAP NetWeaver 7.0 Support Release 3 > SAP Systems > Oracle > Central System > Central System( Last error reported by the step :Caught ESAPinstException in Modulecall: ORA-27125: unable to create shared memory segment Linux-x86_64 Error: 1: Operation not permitted Disconnected
    Please help me to resolve the issue.
    Thanks,
    Nishitha

    Hi Ratnajit,
    I am too facing the same error but my ORACLE is not starting,
    Here are my results of following command:
    cat /etc/sysctl.conf
    # created by /sapmnt/pss-linux/scripts/sysctl.pl on Wed Oct 23 22:55:01 CEST 2013
    fs.inotify.max_user_watches = 65536
    kernel.randomize_va_space = 0
    ##kernel.sem = 1250 256000 100 8192
    kernel.sysrq = 1
    net.ipv4.conf.all.promote_secondaries = 1
    net.ipv4.conf.all.rp_filter = 0
    net.ipv4.conf.default.promote_secondaries = 1
    net.ipv4.icmp_echo_ignore_broadcasts = 1
    net.ipv4.neigh.default.gc_thresh1 = 256
    net.ipv4.neigh.default.gc_thresh2 = 1024
    net.ipv4.neigh.default.gc_thresh3 = 4096
    net.ipv6.neigh.default.gc_thresh1 = 256
    net.ipv6.neigh.default.gc_thresh2 = 1024
    net.ipv6.neigh.default.gc_thresh3 = 4096
    vm.max_map_count = 2000000
    # Modified for SAP on 2013-10-24 07:14:17 UTC
    #kernel.shmall = 2097152
    kernel.shmall = 16515072
    # Modified for SAP on 2013-10-24 07:14:17 UTC
    #kernel.shmmax = 2147483648
    kernel.shmmax = 67645734912
    kernel.shmmni = 4096
    # semaphores: semmsl, semmns, semopm, semmni
    kernel.sem = 250 32000 100 128
    fs.file-max = 65536
    net.ipv4.ip_local_port_range = 1024 65000
    net.core.rmem_default = 262144
    net.core.rmem_max = 262144
    net.core.wmem_default = 262144
    net.core.wmem_max = 262144
    And here is mine Limit.conf File
    cat /etc/security/limits.conf
    #<domain>      <type>  <item>         <value>
    #*               soft    core            0
    #*               hard    rss             10000
    #@student        hard    nproc           20
    #@faculty        soft    nproc           20
    #@faculty        hard    nproc           50
    #ftp             hard    nproc           0
    #@student        -       maxlogins       4
    # Added for SAP on 2012-03-14 10:38:15 UTC
    #@sapsys          soft    nofile          32800
    #@sapsys          hard    nofile          32800
    #@sdba            soft    nofile          32800
    #@sdba            hard    nofile          32800
    #@dba             soft    nofile          32800
    #@dba             hard    nofile          32800
    # End of file
    # Added for SAP on 2013-10-24
    #               soft    nproc   2047
    #               hard    nproc   16384
    #               soft    nofile  1024
    #               hard    nofile  65536
    @sapsys                 soft   nofile          131072
    @sapsys                 hard   nofile         131072
    @sdba                  soft  nproc          131072
    @sdba                  hard   nproc         131072
    @dba                 soft    core           unlimited
    @dba                 hard     core          unlimited
                      soft     memlock       50000000
                      hard     memlock       50000000
    Here is mine   cat /proc/meminfo
    MemTotal:       33015980 kB
    MemFree:        29890028 kB
    Buffers:           82588 kB
    Cached:          1451480 kB
    SwapCached:            0 kB
    Active:          1920304 kB
    Inactive:         749188 kB
    Active(anon):    1136212 kB
    Inactive(anon):    39128 kB
    Active(file):     784092 kB
    Inactive(file):   710060 kB
    Unevictable:           0 kB
    Mlocked:               0 kB
    SwapTotal:      33553404 kB
    SwapFree:       33553404 kB
    Dirty:              1888 kB
    Writeback:             0 kB
    AnonPages:       1135436 kB
    Mapped:           161144 kB
    Shmem:             39928 kB
    Slab:              84096 kB
    SReclaimable:      44400 kB
    SUnreclaim:        39696 kB
    KernelStack:        2840 kB
    PageTables:        10544 kB
    NFS_Unstable:          0 kB
    Bounce:                0 kB
    WritebackTmp:          0 kB
    CommitLimit:    50061392 kB
    Committed_AS:    1364300 kB
    VmallocTotal:   34359738367 kB
    VmallocUsed:      342156 kB
    VmallocChunk:   34359386308 kB
    HardwareCorrupted:     0 kB
    AnonHugePages:    622592 kB
    HugePages_Total:       0
    HugePages_Free:        0
    HugePages_Rsvd:        0
    HugePages_Surp:        0
    Hugepagesize:       2048 kB
    DirectMap4k:       67584 kB
    DirectMap2M:    33486848 kB
    Please let me know where i am going wrong.
    Wat thing basically u check on /proc/meminfo command
    Regards,
    Dipak

  • Basic question regarding SSIS 2010 Package where source is Microsoft Excel 97-2005 and there is no Microsoft office or Excel driver installed in Production

    Hi all,
    I got one basic question regarding SSIS 2010 Package where source is Microsoft Excel 97-2005. I wanted to know How this package works in production where there is no Microsoft office or Excel driver installed. To check that there is excel driver installed
    or not, I followed steps: Start-->Administrative Tools--> Data Sources(ODBC)-->Drivers and I found only 2 drivers one is SQL Server and another one is SQL Server Native Client 11.0.
    Windows edition is Windows Server 2008 R2 Enterprise, Service Pack-1 and System type is 64-bit Operating System.
    We are running this package from SQL Server Agent and using 32-bit (\\Machine_Name\d$\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\DTExec.exe /FILE "\\Machine_Name\d$\ Folder_Name\EtL.dtsx" /CONFIGFILE "\\Machine_Name\d$\Folder_Name\Config.dtsConfig"
    /MAXCONCURRENT " -1 " /CHECKPOINTING OFF /REPORTING E) to run this package. I opened the package and tried to find out what connection we have used and found that we have used "Excel Connection Manager" and ConnectionString=Provider=Microsoft.Jet.OLEDB.4.0;Data
    Source=F:\Fares.xls;Extended Properties="EXCEL 8.0;HDR=YES"; and source is ‘Excel Source’
    I discussed with my DBA and He said that SSIS is having inbuilt Excel driver but I am not convinced.
    Could anyone please clear my confusion/doubt?
    I have gone through various links but my doubt is still not clear.
    Quick Reference:
    SSIS in 32- and 64-bits
    http://toddmcdermid.blogspot.com.au/2009/10/quick-reference-ssis-in-32-and-64-bits.html
    Why do I get "product level is insufficient..." error when I run my SSIS package?
    http://blogs.msdn.com/b/michen/archive/2006/11/11/ssis-product-level-is-insufficient.aspx
    How to run SSIS Packages using 32-bit drivers on 64-bit machine
    http://help.pragmaticworks.com/dtsxchange/scr/FAQ%20-%20How%20to%20run%20SSIS%20Packages%20using%2032bit%20drivers%20on%2064bit%20machine.htm
    Troubleshooting OLE DB Provider Microsoft.ACE.OLEDB.12.0 is not registered Error when importing data from an Excel 2007 file to SQL Server 2008
    http://www.mytechmantra.com/LearnSQLServer/Troubleshoot_OLE_DB_Provider_Error_P1.html
    How Can I Get a List of the ODBC Drivers that are Installed on a Computer?
    http://blogs.technet.com/b/heyscriptingguy/archive/2005/07/07/how-can-i-get-a-list-of-the-odbc-drivers-that-are-installed-on-a-computer.aspx
    Thanks Shiven:) If Answer is Helpful, Please Vote

    Hi S Kumar Dubey,
    In SSIS, the Excel Source and Excel Destination natively use the Microsoft Jet 4.0 OLE DB Provider which is installed by SQL Server. The Microsoft Jet 4.0 OLE DB Provider deals with .xls files created by Excel 97-2003. To deal with .xlsx files created by
    Excel 2007, we need the Microsoft ACE OLEDB Provider. SQL Server doesn’t install the Microsoft ACE OLEDB Provider, to get it we can install the
    2007 Office System Driver: Data Connectivity Components or
    Microsoft Access Database Engine 2010 Redistributable or Microsoft Office suit.
    The drivers listed in the ODBC Data Source Administrator are ODBC drivers not OLEDB drivers, therefore, the Excel Source/Destination in SSIS won’t use the ODBC driver for Excel listed in it by default. On a 64-bit Windows platform, there are two versions
    of ODBC Data Source Administrator. The 64-bit ODBC Data Source Administrator is C:\Windows\System32\odbcad32.exe, while the 32-bit one is C:\Windows\SysWOW64\odbcad32.exe. The original 32-bit and 64-bit ODBC drivers are installed by the Windows operating system.
    By default, there are multiple 32-bit ODBC drivers and fewer 64-bit ODBC drivers installed on a 64-bit platform. To get more ODBC drivers, we can install the 2007 Office System Driver: Data Connectivity Components or Microsoft Access Database Engine 2010 Redistributable.
    Besides, please note that 2007 Office System Driver: Data Connectivity Components only install 32-bit ODBC and OLEDB drivers because it only has 32-bit version, but the Microsoft Access Database Engine 2010 Redistributable has both 32- bit version and 64-bit
    version.
    If you have any questions, please feel free to ask.
    Regards,
    Mike Yin
    TechNet Community Support

  • Hi, I want to downgrade from OSX LEOPARD to OSX TIGER but I have a few questions regarding this. My iMac is originally from 2007 it came preloaded with tiger. I have original install tiger discs version 10.4.10. Is it safe to downgrade or not please help

    Hi, I want to downgrade from OSX LEOPARD to OSX TIGER but I have a few questions regarding this. My iMac is originally from Sep 2007 it came preloaded with tiger. I have original install (2) tiger discs version 10.4.10.  I want to know if it is safe and what are the necessary steps to do so. Also by downgrading im wondering if a lot of apps nowadays support tiger for example I have photoshop version 5 and 4 these are very important to me. One last question does anyone know of any reliable virus protection for mac that doesnt slow down your computer? because I have read that a lot of them do so. If anyone can help me I would greatly appreciate it! Here are the specs for my iMac 
    Model Name:
    iMac
      Model Identifier:
    iMac7,1
      Processor Name:
    Intel Core 2 Duo
      Processor Speed:
    2 GHz
      Number Of Processors:
    1
      Total Number Of Cores:
    2
      L2 Cache:
    4 MB
      Memory:
    2 GB
      Bus Speed:
    800 MHz

    Most of the time a perception of general slow performance is the result of installing third party junk alleged to speed up, "clean" or "optimize" your Mac, or to look for viruses that don't exist. Ideally you would know what you installed so you can uninstall it, but if you don't know or aren't sure there are techniques such as Safe Mode and creating a temporary user account to confirm that suspicion.
    If you open Activity Monitor it may show a process, or processes, that occupy a lot of your system's time.
    Slowness confined solely to web browser activity is often the result of an inexorable progress toward websites that demand ever more processor-intensive tasks. If your slow performance is strictly limited to web browsing, you might try disabling Flash by either uninstalling it, or use utilities such as ClickToFlash that allow you to control what Flash content gets loaded. Flash in itself is not inherently evil, but there is nothing to stop websites or the advertisers who pay for them from writing horrible Flash code that can do everything from hogging 100% of your CPU's time to causing random crashes. You can watch Activity Monitor as in the above to correlate these troublesome web pages with performance degradation.
    You are correct; if your computer shipped with Tiger you may certainly revert to it. I forgot that Tiger was shipping on new Macs as recently as five years ago. To downgrade it would be necessary to completely erase your hard disk and boot with the Tiger installation DVD, followed by installing it anew. Such drastic measures are not necessary and you are unlikely to be satisfied with the results anyway.
    Assuming your system is free of third party parasitic junk attached to OS X in an ill-conceived attempt to improve upon it, that your hard disk drive is sound and the boot volume has enough free space to work with, by far the best performance-enhancing improvement would be to add more memory. Buy as much as your computer can use and that you can afford. 2 GB is not that much any more.
    Read the following for some recommended troubleshooting techniques from Apple:
    General purpose Mac troubleshooting guide: Isolating issues in Mac OS X
    Creating a temporary user to isolate user-specific problems: Isolating an issue by using another user account
    Memory limitations: Using Activity Monitor to read System Memory and determine how much RAM is being used
    Identifying resource hogs and other tips: Runaway applications can shorten battery runtime
    Starting the computer in "safe mode": Mac OS X: What is Safe Boot, Safe Mode?

  • Some question regarding requirements in context of SAP XI

    Hello!
    I have few questions regarding Relational Database,  Network Archtecture and Platform Support requirements in context of SAP XI. Can someone help by answering the questions, if possible with Yes/No (and short explanation)
    <b>a) Does your system run native to the Oracle 10g RDBMS (RAC) and database tools?  If not, please explain the databases and tools supported (Yes/No)
    b) database accept binary-large-objects (BLOBs) and  be referenced via the relational engine (Yes/No)
    c) Deployable without using any fixed IP addresses (taking advantage of DHCP address resolution) (Yes/No)
    d)software supported on HP-UX 11.i V2 (r6) on Itanium. (Yes/No)
    e) Software supported on OS clustered servers  (If mutliple products, please indicate if all are support or list areas where clustering may not be recommended and why) (Yes/No)</b>
    Thank you very much!
    Regards
    A. Henke

    Hi Axel,
    I've just found your question by accident and would like to know whether you have already implemented 10gRAC in SAP environment?
    regards
    Barthez

Maybe you are looking for

  • Recently Played playlist syncing issues

    Hi Apple friends, I've noticed some odd behaviour with my iPhone 4 since either iOS 5 or my purchase of iTunes Match (I can not recall which is accurate). I've read a lot about playlist issues with iOS 5 but I have not heard a mention of anything sim

  • Material list by "External material group"

    gurus I'd like to retrieve materials which has particular "External material group". But in MM60, there is no selection field for  "External material group". Other than SAP query, is there any way? Yoshi

  • Error when i create a subconsult with dblink between 3 instances.

    Hi, I have 3 instances and i want to work between then. The error ocurrs when i use subquery, This is the code: update erie.rie_cbtrega@l$e_tfcries rgr set rgr.c_descri = ( select rg.c_descri from dadm.cbtrega@l$e_tfccie rg where rg.c_idrega = rgr.c_

  • Sysfsutils-2.1.0-5 [SOLVED]

    I am not sure when this happened. But today morning I ran yaourt -Syu. Tried to install the updates and I get this : (29/29) checking for file conflicts [#####################] 100% error: failed to commit transaction (conflicting files) sysfsutils:

  • Verizon Small Business Customer: Top Star International

    With summer just around the corner, people's thoughts turn to vacation and travel. As an avid traveler myself, I was eager to speak with Leo Zheng, owner of Top Star International in Flushing, N.Y., about his business, how he got his start and how Ve