Where is the proof of Exadata load rates of 5Tb/hour

I ask this because we cant come close to this.. Is it just a theoretical exercise? Or something that is very restricted?
ie. if you load 5Tb of data consisting of 1 column of 10 characters, you can complete this in 1 hour?
Whats the real world expectations for load times into the db (assuming the data already resides in DBFS - if that makes things any better)
Oracle says ...
Optimized for real-world data loading
•Only Oracle provides multi-version read consistency with the ability to load at up to 5TB/hr
Pg 41.
http://www.google.com/url?sa=t&source=web&cd=11&ved=0CBEQFjAAOAo&url=http%3A%2F%2Fioug.itconvergence.com%2Fpls%2Fapex%2FNJOUG.download_my_file%3Fp_file%3D521.&rct=j&q=exadata%205tb%20dbfs&ei=Iwp3TJX_O83PngeSqM2dCw&usg=AFQjCNGD6h7WdPg9TsV2_TO0HEVfmt3ZVA&cad=rja
Daryl.

Hi Daryl,
-exadata full rack
- dbfs
time sqlldr direct=true control=random.ctl parallel=true
Let me try ...
So my test ..
8.2g in 400s, or 73G / hrYou have a full rack!!!!
You should use the whole "power" that You have for processing this load. First of all, I suggest You to change the load strategy from sqlloader to ITAS (insert /*+ APPEND .... from select ... )or CTAS ( create table .... as select .... ) reading from External Tables. The main reason is, even if You are using the parallel=true clausule on sqlloader, We are talking about only one server, it's not dividing the load amog all servers, using slaves on all servers available for that.
A "starting shot" on new load strategy would be changing the degree from external table to default ( create or alter the external table to parallel ) and also for the table table will be loaded. After that, before starting the load, You should enable parallel dml or parallel ddl ( depends on what You've choosen... in case of CTAS "alter session force parallel ddl", for ITAS "alter session force parallel dml") and verifying if the plan is using parallelism for both operations, load and select.
As I don't have an idea of how is the workload of Your machine... If default degree consumes a high CPU time from those servers and due to that will impact the behaviour of the other sessions, I'd advise You to test the load with 32, 64 and 128 ( changing the parallelism from ET and also the loading table to those values).
Test this and give us the results...My guess is the results will be better than what You can imagine... :)
Regards,
Cerreia

Similar Messages

  • Where does the router fallback to load IOS when the IOS in flash memory is corrupted?

    If the ios image stored in flash is corrupted from where does the IOS is picked up?

    Hi,
    The following details the router boot process:
    1. The router is powered on.
    2. The bootstrap program (ROMmon) in ROM runs Power-On Self Test (POST)
    3. The bootstrap checks the Configuration Register value to specify where to load the IOS. By default (the default value of Configuration Register is 2102, in hexadecimal), the router first looks for “boot system” commands in startup-config file. If it finds these commands, it will run boot system commands in order they appear in startup-config to locate the IOS. If not, the IOS image is loaded from Flash . If the IOS is not found in Flash, the bootstrap can try to load the IOS from TFTP server or from ROM (mini-IOS).
    Last if it doesnt find the software anywere it would end up in rommon mode.
    HTH
    Regards
    Inayath

  • Where's the button to stop loading a page?

    Since upgrading to Firefox 4, I can't find the button (red X) to stop loading a page. It's not where the Help says it should be.

    I see that now. I guess the page I'm having a problem with is already loaded as far as the browser is concerned. It's a Verizon page that's spinning its wheels trying to load my account info. Thanks.

  • Where is the documentation on SQL Loader

    I am trying to use the SQL loader and don't know how to create a control file. Can somebody direct me to the right documentation?

    You dont create a control file. You use it to load data files that are not formatted for Oracle.
    Oracle doesnt really come with any documentation. You will need to go to the store and look for a book.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by The_rs:
    I am trying to use the SQL loader and don't know how to create a control file. Can somebody direct me to the right documentation?<HR></BLOCKQUOTE>
    null

  • Where is the option to not load duplicates. Every time I load a memory card bridge checks off ALL photos and wants to download previously downloaded photos.

    How do I get Bridge to not load duplicates automatically.  Now I have to check off new photos when I load a memory card. I can't find the setting to do this.

    Bridge CC

  • Where have the reload and stop loading buttons gone?

    The reload button and the stop button do not appear on the toolbar in beta 7. I can reload a tab from the context menu for the tab, not as easy but it can be done. But I can see no way to stop a page load. So how?

    Firefox 4.0 has a combined Reload and Stop button that appears at the far right of the location bar.
    * Open the "View > Toolbars > Customize" window to move them out of the location bar.
    * Swap the two buttons or move them to their previous position at the left of the location bar.
    * If the order is "Reload - Stop" to get a combined "Reload/Stop" button.
    * Swap the order to "Stop - Reload" or separate them otherwise to get two distinct buttons.

  • Where is the boot descriptor? Loading shared library

    Hi,
    I wanna deploy an EJB which uses classes like com.oracle.bpel.client.ServerException.
    Now the server says that this class is not available. But it has been found in the server.xml in the shared library oracle.bpel.common.
    But to make it visible I had to change the boot descriptor. So, what is the boot descriptor? Or how can I make these classes available for my ejb?
    Greetings
    Mike

    Ah found out, that I have to use the OC4J Deployment Descriptor :) Now it is working.
    Nevertheless, thanks.
    Mike

  • Where all the redo/archive log volume come from?

    Hi,
    I have a database with a size of around 50G. Thats not very much, but the crazy thing is that this database has a redo log volume per day that is nearly equal the size of the database:
    -- Daily View
    SQL> SELECT TRUNC(completion_time) AS time, ROUND(SUM(blocks * block_size)/1024/1024,2) AS size_mb, ROUND(SUM(blocks * block_size)/1024/1024/1024,2) AS size_gb FROM v$archived_log GROUP BY TRUNC(completion_time) ORDER BY 1 DESC;
    TIME          SIZE_MB    SIZE_GB
    2013-02-03    49599.7      48.44
    2013-02-02   50104.63      48.93
    2013-02-01   54466.36      53.19
    2013-01-31   52935.41      51.69
    2013-01-30   51596.85      50.39
    -- Hourly View
    SQL> SELECT TRUNC(completion_time,'HH24') AS time, ROUND(SUM(blocks * block_size)/1024/1024,2) AS size_mb, ROUND(SUM(blocks * block_size)/1024/1024/1024,2) AS size_gb FROM v$archived_log GROUP BY TRUNC(completion_time,'HH24') ORDER BY 1 DESC;
    TIME          SIZE_MB    SIZE_GB
    2013-02-03 23     160.68        .16
    2013-02-03 22     163.73        .16
    2013-02-03 21     195.65        .19
    2013-02-03 20    4492.44       4.39
    2013-02-03 19      176.3        .17
    2013-02-03 18     4259.8       4.16
    2013-02-03 17     226.99        .22
    2013-02-03 16    5465.64       5.34
    2013-02-03 15     166.47        .16
    2013-02-03 14     165.05        .16
    2013-02-03 13     253.33        .25
    2013-02-03 12    9568.93       9.34
    2013-02-03 11     391.14        .38
    2013-02-03 10    9585.36       9.36
    2013-02-03 09     160.02        .16
    2013-02-03 08      200.1         .2
    2013-02-03 07     166.66        .16
    2013-02-03 06     267.45        .26
    2013-02-03 05     309.26         .3
    2013-02-03 04    1486.87       1.45
    2013-02-03 03   11106.77      10.85
    2013-02-03 02      318.1        .31
    2013-02-03 01     147.47        .14
    2013-02-03 00     165.47        .16
    2013-02-02 23     160.17        .16
    2013-02-02 22     159.25        .16
    2013-02-02 21      205.9         .2
    2013-02-02 20    4473.27       4.37
    2013-02-02 19     124.64        .12
    2013-02-02 18    4364.69       4.26
    2013-02-02 17     295.02        .29
    2013-02-02 16    5415.06       5.29
    2013-02-02 15     166.22        .16
    2013-02-02 14     166.83        .16
    2013-02-02 13      84.62        .08
    2013-02-02 12    9905.55       9.67
    2013-02-02 11     418.31        .41
    2013-02-02 10    9548.78       9.32
    2013-02-02 09     166.51        .16
    2013-02-02 08     204.88         .2
    2013-02-02 07     167.37        .16I know that every database change produces redo, but why that much?
    Is there a way to investigate further where all the redo information comes from?
    Every 2 hours redo is backed up to tape.
    There are no significant batches, shaking and shuffling the data around all the time.
    Nearly all changes in this database is happening through user inputs.
    Database is 11gR2 on Redhat 5.6.
    Thanks
    941743
    Edited by: 941743 on 04.02.2013 15:32
    Edited by: 941743 on 04.02.2013 15:33

    I am afraid there is no easy and direct way to pull the answer from the data dictionary.
    But with some work, you can get to the bottom of this.
    This query shows you how much redo is used by the sessions in your system currently:
    select a.sid , a.value  from v$sesstat a,  v$statname b
    where a.statistic# = b.statistic#
    and b.name = 'redo size'Unfortunately, I am not aware of a AWR view (license required!) that corresponds to v$sesstat, so it would not be easy to look back and see which session generated the redo.
    One way is to troubleshoot the problem online, using a utility such as snapper- http://blog.tanelpoder.com/2010/03/22/oracle-session-snapper-v3-10/ . See which sessions generate most redo and see what SQL they are running at that time.
    The other way is to create your own “repository”. Sample V$SESSION, v$sesstat , v$statname and possibly V$SQL frequently (every few seconds) and record how much redo and what SQLs are running by each session. Once you gather enough data, look which sessions had the biggest “redo size” delta and what SQL were they running at that time.
    Iordan Iotzov
    http://iiotzov.wordpress.com/

  • Loaded SQL SERVER 2014 express but where is the management studio

    Loaded SQL SERVER 2014 but where is the management studio.
    It installed okay on windows 8. Laptop is 64 bit
    I see SQL Server Configuration, Error and Usage, Import and Export, Installation center.
    7777nanty

    Download: Express with Advanced Services (SQLEXPRADV)
    http://msdn.microsoft.com/en-us/evalcenter/dn434042.aspx
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Database Design
    New Book / Kindle: Beginner Database Design & SQL Programming Using Microsoft SQL Server 2014

  • When I attempt to open iphoto, I get the loading icon in the working space/picture area.  If I try to reinstall ilife '11, will I lose any pictures?  Where, on the hard drive, are all my pictures actually stored?

    When I attempt to open iphoto, I get the loading icon in the working space/picture area.  If I try to reinstall ilife '11, will I lose any pictures?  Where, on the hard drive, are all my pictures actually stored?

    You won't lose anything because you have a back up, right?
    Most Simple Back Up
    Drag the iPhoto Library from your Pictures Folder to another Disk. This will make a copy on that disk.
    Slightly more complex:
    Use an app that will do incremental back ups. This is a very good way to work. The first time you run the back up the app will make a complete copy of the Library. Thereafter it will update the back up with the changes you have made. That makes subsequent back ups much faster. Many of these apps also have scheduling capabilities: So set it up and it will do the back up automatically. Examples of such apps: Chronosync or DejaVu . But are many others. Search on MacUpdate
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

  • Where Should I add the path of Down loaded librearys before working on form

    Hi all,
    This is Narendra.
    I am working on oracle apps technical.
    I have been working on reports,have little Knowledge on forms.
    After Instaliation before working on forms we have to down load librearys in to local mechian and add that path at some where.
    1)where should I add That path?
    2)From where I have to add down load that librearys?
    Regards,
    Narendra.
    [email protected]

    Narendra,
    If you want to open an Oracle Apps form using Forms Builder, then please do the following:
    - Copy all pll files, TEMPLATE.fmb & APPSTAND.fmb from $AU_TOP/resource to your local pc (C:\ABC)
    - Add (C:\ABC) to FORMS60_PATH in the registry (HKLM > Software > Oracle)
    - Close/Open Forms Builder
    - Open the form

  • Bridge CS5 "output templates" no longer loads; the output panel is blank. Where is the script?

    Bridge CS5 "output templates" no longer loads after my system back-up; the output panel is blank.
    The other Workspace features appear to be functional.
    What/Where is the  output script supposed to be? 

    If it worked before and you have changed nothing I would reset the preferences.  Close Bridge then hold down the CTRL key and start Bridge.  You should get a reset window with 3 optons.

  • Error, The Adobe Flash plugin has crashed. Where do I go to down load it or how do I fix it??

    Error, "The Adobe Flash plugin has crashed." I get this error when I try to watch a video even on YouTube. Where do I go to down load it or how do I fix it??

    I'd start with disabling Hardware Acceleration, as described in the video troubleshooting guide below:
    Video playback issues
    If that solves the problem, make sure that your graphics drivers are current. 
    If it *still* happens with current drivers, please give us detailed information on the graphics card and driver, so that we can disable hardware acceleration on this configuration and start a conversation with the appropriate vendor.
    The best way to get this information is to do the following (on Windows):
    Open a command prompt
    Type: dxdiag
    Hit Enter
    This should launch the DirectX Diagnostic Tool
    Click Save All Information (or whatever that save button says).
    Paste the contents into a reply here, or you can click Use Advanced Editor in the upper right of the reply window, and then attach the file using the link at the bottom right of the reply window.

  • "load this bookmark in the side bar" is an option in bookmarks library. Where is the "side bar?"

    "load this bookmark in the side bar" is an option in bookmarks library. What and where is the "side bar?"

    You can look at:
    *Show Parent Folder: https://addons.mozilla.org/firefox/addon/7372
    *Go Parent Folder: https://addons.mozilla.org/firefox/addon/7377

  • Where do I find the .mulib widget to load it to Muse?

    Hello, where do I find the .mulib file to load this widget into Muse?
    My operating system is Windows 7 (64 bit) if this helps...
    Thanks for your assistance.

    Hi,  Have you already checked this article,  http://helpx.adobe.com/muse/tutorials/organizing-reusing-elements-using-library-panel.html #Importing content into the Library panel  You can get some items here http://muse.adobe.com/exchange  Please let me know if you have any other query.

Maybe you are looking for

  • Where can i buy a macbook pro 2011 motherboard

    the graphic card of my 15" 2011 macbook pro is damage according to the official reseller of apple in my country ( Dominican Republic) they say they have some machines with the same problem but apple dont give them answer I want to know if there is gu

  • Usage of BAPI_NETWORK_MAINTAIN

    Dear All,     I have a requirement where in I have to delete multiple activities from a network using a Z transaction and then renumber the existing activity numbers.     For deleting the activities, currently I have used BAPI_NETWORK_MAINTAIN with m

  • Credit Limit : Exchange rate Error

    Hi , I am getting the error message ( mentioned Below) when i try to raise the sale order  ( VA01) . "Credit: Exchange Rate from USD in INR by date 23.10.2011 Could not be determined " Configuration i did : 1) In credit control area ( OB45) defined c

  • Error when publishing a website that is already live.

    This website has been live for a couple of months. I updated some text and when I try to publish it this errror occurs, can anyone help? Error uploading file judithjohnson.com.au_u87.html. Click Resume to try again. If this problem persists, try agai

  • Filter by Attachment size?

    Hi, Is there a way to filter by attachment size in apple mail? My gmail is full and I'm looking for the emails with bigger attachments. I'm using Gmail with IMAP. Also, does deleting from the trash also delete it in my Gmail account? Thanks