What is best use of 1400 gb SGA (2 rac nodes 768gb each)

currently using 11.2.0.3.0 on unix sun sever with 2 RAC nodes each 8 UltraSPARC-T1 cpus (came out in 2005) four threads each so oracle sees 32 CPUS very slow(1.2 gb).  Database is 4TB in size on regular SAN (10k speed).
8gb SGA.
New boss wants to update system to the max to get best performance possible  Money is a concern of course but budget is pretty high,  Our use case is 12-16 users at same time, running reports some small others very large (return single row or 10000s or rows).  reports take 5 sec to 5 minutes, Our job is get the fastest system possible,  We have total of 8 licenses available so we can have 16 cores.  We are also getting a 6tb all flash SSD array for database.  we can get any CPU we want but we cant use parallel query server due to all kinds of issues we have experienced (too many slaves, RAC interconnect saturation etc, whack-a-mole).  sparc has too many threads and without PS oracle runs query in single thread. 
we have speced out the following system for each RAC node
HP ProLiant DL380p Gen8 8 SFF server
2 Intel Xeon E5-2637v2 3.5GHz/4-core cpus
768 gb ram
2 HP 300GB 6G SAS 15K drives for database software
this will give us total of 4 Xeon E5-2637v2 cpus 16 cores total (,5 factor for 8 licenses) and 1536 ram (leaving ~1400 for sga).  this will guarantee an available core for each user.  we intend to create very very large keep pool around 300 gb for each node that will hold all our dimension tables.  this we hope will reduce reads from the SSD to just data from fact tables.,
Are we doing a massive overkill here?  the budget for this was way less than what our boss expected.  will that big an sga be wasted will say a 256gb be fine.  or will oracle take advantage of it and be able to keep most blocks in there.
will an sga that big cause oracle problems due to overhead of handling that much ram?

Current System:
===========
a. Version : 11.2.0.3
b. Unix Sun
c. CPU - 8 cpus with 4 threads => 32 logical cpus or cores
d. database 4TB
e. SAN - 10k speed disk drives
f. 8gb SGA
g. 1.2 gb ??
h. Users --> 12-16 concurrent and run reports varying size
i. reports elasped time 5 sec to 5 mins
j. cpu license -->8
Target System
===========
a. Version: 11.2.0.3
b. HP ProLiant DL380p Gen8 8 SFF server
c. RAM --> 768 GB
d. 2 HP 300GB 6G SAS 15K drives for database software
e. large keep pool -->90 gb to  hold all dimension tables. 
f.  SSD to just data from fact tables
g. SGA -->256gb
Reassessment of the performance issues of current system appears to be required.Good performance tuning expert is required to look into tuning issues of current application by analyzing awr performance metrics . If 8GB SGA is not enough,then reason behind so is that queries running in the system are not having good access path to select lesser data to avoid flushing out of recent buffers from different tables involved in the query. Until those issues are identified , wherever you go, performance issue wont be going away as table size increase in future , problem will reappear.Even if the queries are running with more FULL Scan , then re-platforming to Exadata might be right decision as Exadata has smart scan , cell offloading feature which works faster and might be right direction for best performance and best investment for future.Compression (compress for OLTP) could be one of the other feature to exploit to improve further efficiency while reading the lesser block in lesser read time.
Investment in infrastructure will solve a few issue in short term but long term issue will again arise.
Investment in identifying the performance issues of current system would be best investment in current scenario.

Similar Messages

  • What are best uses for Fireworks?

    I've been working with dreamweaver, flash and photoshop for years, but have avoided Fireworks because I could make a nav bar some other way, in flash or just use mouse-overs in Dreamweaver. Now I bought the CS5.5 upgrade and it includes Fireworks which now I am totally unfamiliar with. Could you tell me what I can use Fireworks for to help my small home-based website building business?
    Thank You,
    Ken

    Fireworks' workflow is better suited to Web development, than Photoshop or Illustrator. That's what it was designed for.
    For example, I will make different layers for different content areas. I might have a layers for the background, the header, the  footer, and any placeholding content text I want to include just to see how it would look. Layers in Fireworks allow you to organize the content of a Fireworks document in ways that I don't think you can do as easily in Photoshop. This makes it easy to concentrate on one area while having the other areas locked or hidden.
    Also, with FW, you have a hybrid bitmap and vector graphics program. It can do some of what both Photoshop and Illustrator can do, so you spend less time moving between applications. It's easy to manipulate and composite bitmaps and vectors in FW. (Naturally, you should use the tool that is best suited for a particular task: complex photo editing should be done in Photoshop and complex illustrations created in Illustrator.)
    Like LInda, I will mock up my designs in FW. I slice and export my images, then build page templates in DW based on the mockup.

  • What is best practice for deploying agent(10204) on RAC 9i

    Hello,
    What would be best practice for deploying agent(10204) on RAC 9i? Should the agent be deployed on each node or should the agent be deployed on the cluster file system? What are the advantages/disavantages deploy on individual nodes vs. on cluster file system? Please advice. Thank you in advance.

    Please use agent push application to deploy agent on all the nodes at one shot
    Please refer the obe
    http://www.oracle.com/technology/obe/obe10gemgc_10203/agentpush/agentpush.htm

  • What is the use of GSD in Oracle 10g RAC ...?

    Hi Rajesh,
    If the GSD is not used in the new versions (only for backward comparability). we can drop this resource from CRS. what is the impact of this if we drop this resource.
    Thanks in advance.

    Hi,
    GSD IS USED ONLY IF 9I RAC DATABASE IS PRESENT
    The function of GSD (10g and above) is to service requests for 9i RAC management clients and therefore when there are no 9i databases present, there is nothing for GSD to do.
    Consequently, there will be no impact on a RAC cluster if GSD is offline and 9i is not used.
    If gsd fails to start due to whetever reasons then best thing is to work with Oracle support to analyze and fix the issue. Until that time, gsd can be temporarily disabled.
    In 11.2 GSD is disabled by default and the service will show as target:offline, status:offline.
    Ref: MOC ID : 429966.1
    Hope your question is answered..
    Regards,
    Pradeep. V

  • What is best to use

    I have a concern:
    if I need to evaluate in my where condition, what is best, use IN operator or use EXISTS operator.
    If in both cases I need to evaluate columna A versus select results....
    Thank you

    Hi
    select ...
    from ...
    where columnA in (select cola from ...)
    or
    select ...
    from ...
    where exists (select 1 from ... where cola = columnA)
    I think these version are equal, but if you need the best execution plan use join instead of IN and EXISTS.
    Ott Karesz
    http.//www.trendo-kft.hu

  • HT3819 I have 2 Ipod touch's, one a 64gb and one an 8gb.  Whats the best way to use them both on the same itunes account?

    I have 2 Ipod touch's, one a 64gb and one an 8gb.  Whats the best way to use them both on the same itunes account?

    Click here for options.
    (64410)

  • What is best practice for using a SAN with ASM in an 11gR2 RAC installation

    I'm setting up a RAC environment. Planning on using Oracle 11g release 2 for RAC & ASM, although the db will initially be 10g r2. OS: RedHat. I have a SAN available to me and want to know the best way to utilise that via ASM.
    I've chosen ASM as it allows me to store everything, including the voting and cluster registry files.
    So I think I'll need three disk groups: Data (+spfile, control#1, redo#1, cluster files#1), Flashback (+control#2, redo#2, archived redo, backups, cluster files#2) and Cluster - Cluster files#3. So that last one in tiny.
    The SAN and ASM are both capable of doing lots of the same work, and it's a waste to get them both to stripe & mirror.
    If I let the SAN do the redundancy work, then I can minimize the data transfer to the SAN. The administrative load of managing the discs is up to the Sys Admin, rather than the DBA, so that's attractive as well.
    If I let ASM do the work, it can be intelligent about the data redundacy it uses.
    It looks like I should have LUN (Logical Unit Numbers) with RAID 0+1. And then mark the disk groups as extrenal redundancy.
    Does this seem the best option ?
    Can I avoid this third disk group just for the voting and cluster registry files ?
    Am I OK to have this lower version of Oracle 10gr2 DB on a RAC 11gr2 and ASM 11gr2 ?
    TIA, Duncan

    Hi Duncan,
    if your storage uses SAN RAID 0+1 and you use "External" redundancy, then ASM will not mirror (only stripe).
    Hence theoretically 1 LUN per diskgroup would be enough. (External redundancy will also only create 1 voting disk, hence only one LUN is needed).
    However there are 2 things to note:
    -> Tests have shown that for the OS it is better to have multiple LUNs, since the I/O can be better handled. Therefore it is recommended to have 4 disks in a diskgroup.
    -> LUNs in a diskgroup should be the same size and should have same I/O characteristica. If you now have in mind, that maybe your database one time will need more space (more disks) than you should use a disk size, which can easily be added, without waisting too much space.
    E.g:
    If you have a 900GB database then does it make sense to only use 1 lun with 1TB?
    What happens if the database grows, but only grows slightly above 1TB? Then you should add another disk with 1TB.... You loose a lot of space.
    Hence it does make more sence to use 4 disks á 250GB, since the "disks" needed to grow the disk groups can be extended more easily. (just add another 250G disk).
    O.k. there is also the possibility to resize a disk in ASM, but it is a lot easier to simple add an additional lun.
    PS: If you use a "NORMAL" redundancy diskgroup, then you need at least 3 disks in your diskgroup (in 3 failgroups) to be able to handle the 3 voting disks.
    Hope that helps a little.
    Sebastian

  • Hello I want to buy your iphone5 S of the U.S. site, but I want to use it in Saudi Arabia what is best option

    Hello I want to buy your iphone5 S of the U.S. site, but I want to use it in Saudi Arabia what is best option

    Check this link.
    https://www.apple.com/iphone/LTE/

  • Whats the best blu-ray writer to use with final cut pro x

    Whats the best blu-ray writer to use with final cut pro x

    The Sea Tech Blu Ray Writer works great with my Mac.

  • I burned a playlist to a data CD using itunes 11 but what is best way to get it import it into another computer with itunes running?

    I burned a playlist to a data CD using itunes 11 but what is best way to get it import it into another computer with itunes running?  I get an "X" when trying to copy to the "automatically add to itunes" folder on the 2nd computer.

    ok... so i i just made sure all my music is all together in 1 folder and i am going to trash my old music folder that is in the itunes folder... and follow your directions - let itunes start w/new library and bring my music in. Well, last little hurdle/question. I noticed that the place where my itunes library is - on an external drive doesnt have much space left on it. The place where i gathered all my music together in order to start fresh - is a different external drive and has LOTS of free space on it.
    SO... i now would like to just keep all that freshly compiled clean music right where it is but in advanced preferences I want to point to that new folder on the drive that has so much more space. So... should i delete the old music then go into itunes with a blank library and change the folder in preferences - quit and go back in and then follow your steps to loading my music? If i change the setting of where itunes looks for the music - that doesn't wipe out the old stuff... it just mixes it all up together right? I dont want that!!
    i promise this is the last question - i would love to fix this problem tonight and just be DONE!
    Thanks in advance for your patience and knowledge!!
    Lisa

  • Using final cut studio what the best way of getting a mini disc in to FCP?

    I do some weddings and record some audio on to a mini disc recorder ( the small ones . On my avid liquid edit suite I just used to run it in live or ingest it on a 2 hour timer, and just record audio.
    What the best way to do it with final cut studio and final cut pro?

    Is there a reason you can't do the same on your mac system? What outputs does the audio recorder have?
    Jerry

  • What is best graphics tablet to use in elements 13

    what is best (not too expensive) graphics tablet to use with elements 13

    Any of the cheaper Wacom tablets. Most other inexpensive tablets are designed more for text input than graphics.

  • Whats the best virus protection software to use?

    Whats the best virus protection software to use that does not take up too much of the CPU and RAM?
    for PC programs like norton and macfee take up way too much so I used bitdefender..
    Is there such a program for the mac?

    Virex http://www.mcafee.com/us/enterprise/products/antivirus/file_serversdesktops/virex.html
    Virus Barrier
    http://www.intego.com/virusbarrier/
    Norton
    http://www.symantec.com/home_homeoffice/products/overview.jsp?pcid=is&pvid=nav10 mac
    Sophos
    http://www.sophos.com/products/es/endpoint/sav-mac.html
    Should head you in the right direction! -hope that helps!! -Digitol-

  • I lost my iphone 5 yesterday and i tried using find iphone and i found it offline. What is best to do? Please help me. Thank you..

    I lost my iphone 5 yesterday and i tried using find iphone and i found it offline. What is best to do? Please help me. Thank you..

    If you forgot (or don't know) your passcode, restore the device from backup on the last computer it was synced with when the passcode was turned on... this will remove the passcode. If you do not have access to the last computer it was synced with, or you don't have a backup, you will have to force it into recovery mode & restore as a new device.
    See this for more info... http://support.apple.com/kb/HT1212

  • I want to produce wedding dvds.whats the best software to use...final cut x I'm thinking but what about the quality of the dvd?

    i want to produce wedding dvds.whats the best software to use...final cut x I'm thinking but what about the quality of the dvd? Can i use idvd?

    The only Programms I worked with are DVD Studio Pro and iDVD. You can burn a Video-DVD with Toast but  there is no real option to design your Menu. Just a few themes as far as I discovered.
    Do you have a Blue Ray Device to burn* the HD-DVD? Are the Bride and Groom able to watch the Blue Ray?
    * which is only possible with DVD Studio Pro and not iMovie as far as I know.
    This might help
    For better quality I would go the Compressor & DVD Studio Pro workflow I just learned.
    Export the Movie as is from Final Cut Pro and then use Compressor to encode the File.
    Consider delivering the Movie in a different way like a private video on vimeo, a Website or on an SD card which is not really romantic...

Maybe you are looking for

  • Can an external Firewire hard drive be used to boot up intel based macs?

    I was looking to buy an external HD for back-ups (finally) and it just dawned on me that it may no longer be possible with intel macs. I know this is possible with non-intel macs. 15" MacBookPro Core 2 Duo 2.16 GHz   Mac OS X (10.4.8)   15" MacBookPr

  • Events shows hour difference when published to .mac page

    I upgraded to Leopard and suddenly the events I have in my iCal on my Macbook are published an hour later. An event scheduled for 10:00 on my Mac shows 9:00 on the .mac page. This is very inconvenient, since I use the iCalendar online to have all my

  • FCE not recongnizing DV camera

    My computer sees my Canon DV camera via firewire but when I try to capture through FCE, it does not see it. When I try to select my settings in easy setup FCE crashes on me. Any help would be much appreciated! -Liz

  • Problem with User Defined Second Selection Screen

    Hi Gurus,                    I have a problem with the selection  screen selections. My requirement is that , User when he selects a check box on the main selection screen ( which is 1000) then at the at-selection event, another screen (whose number

  • 7.5 upgrade created a continuous 'calculating' issue

    I am in no way an expert on BPC, but our company doesn't really have any reporting experts to help us out.  We recently upgraded to 7.5 BPC.  I am responsible for refreshing all of our monthly financial reports.  Our reports are many.  I have two fil