How large can a database be?

Hi,
just out of curiosity that came in my mind . . .
10 of 10 largest database in the world user Oracle :)
How large are these databases?

Exactly. My largest db is 5TB.
The actual limitations is o/s and h/w based - if the o/s for example only support 128 (or whatever) file devices (via HBA to a SAN), then you are limited to the max device size that the SAN can support.
From an Oracle and ASM perspective, it can use whatever file systems and devices you assign to it for use.
Again, there are o/s file system limits. Cooked file systems have a max size. There is a limit on the number of file handles a single o/s process can allocate. Oracle is subject to these - but Oracle itself does not really impose any limitation in this regard.

Similar Messages

  • How large can an internal hard drive be on a Mac Pro part #ZOD8 ?

    How large can an internal hard drive be on a Mac Pro part #ZOD8 ?

    Mac Pro tower can support drives up to 4TB is size.
    If running 10.8.4, 10.8.5 or 10.9.0, there is a bug in Disk Utility that precludes proper erasing of drives over 2.2TB as Internal drives

  • How large can a LabVIEW Queue in elements and bytes?

    How large can a LabVIEW Queue in elements and bytes?

    rocke72 wrote:
    How large can a LabVIEW Queue in elements and bytes?
    In
    elements it is likely something like 2^31. In bytes it is most probably
    around the same number or better, depending how exactly the different
    queue elements are stored. I think they are stored as independent
    pointers so it would be theoretically better than those 2^31. In
    practice however starting to allocated so much memory in LabVIEW will
    always cause problems on nowadays computers. Without 64 bit CPU and OS
    going above 2 GB of memory per application is very hard and as far as I
    know not supported by LabVIEW.
    Also allocating many chunks of memory (like a few million queue
    elements holding strings) will definitely slow down your system tremendously eventhough
    it will work but the OS memory manager will be really stress tested
    then.
    Rolf Kalbermatter
    Message Edited by rolfk on 06-09-2006 12:24 AM
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • MP3:  How large can import file be for 4 GB Nano?

    I am having trouble importing one particular MP3 file, 74,000 kb, into my my 4GB, which is only filled to 1.3 GB. Is the file too big? It's an audio book.

    The thread title "How large can import file be for 4 GB Nano?" is something of a give-away, no?

  • How large can the MDD G4 Tower harddrives be?

    I know that they MDD G4 tower will accomodate 4 harddrives, but how large can each of them be? Also what kind does it accept?
    Thanks for any help that can be given.

    Usually if you want to use all four drives at the same time, or to create a RAID, you would also want a controller for two drives. But any size of ATA (or PATA) drives will fit and work natively w/o adding a controller.
    http://www.apple.com/support/powermac/g4/
    Customer Installable Parts (how to)

  • How large can a PDF be?

    I have 50 large PowerPoint files that I want to combine all their slides into a single PDF, is this possible. How large of a file can the adobe software handle, I suspect the final PDF will be large, about 3 gigabytes and 1,200 slides. Yes this is large but can the software handle it without any problems?
    Is it possible to create links in the pdf to access certain points in this large file. What software program would best handle my project. Any help or suggestions would be greatly appreciated. Thanks David at Email [email protected]

    PDF 1.0 through 1.4 uses 10 digit offsets, which is an unsigned integer (so 9,999,999,999).  PDF 1.5 and later support a new type of offset that doesn't have any such limitation and is a 64-bit unsigned integer.
    Assuming a modern OS, file system, and disk format, Adobe Acrobat/Reader supports PDFs using the newer offset up to their full 64bit lengths.  I can't common on any other company's products.

  • How I can close Database connection?

    I am using the following to open Database connections in Java class.
    Class.forName("oracle.jdbc.driver.OracleDriver");
    con = DriverManager.getConnection("URL","user","password");
    But I do not know how I can have it closed.
    This cause an SQL error: Maximum open cursors exceeded.

    Thanks so much. Your explanation is so clear.
    Here is the whole code. Thanks for your help.
    package xxx.xx.xxx;
    import java.io.*;
    import java.sql.*;
    import java.util.*;
    public class Format_BaseTable {
    Connection con = null;
    Statement stmt = null;
    Statement stmt1 = null;
    ResultSet rs = null;
    ResultSet rs1 = null;
    PreparedStatement ps = null;
    PreparedStatement ps1 = null;
    public Format_BaseTable() {}
    public static String valueOf(String oldStr)
    StringTokenizer st = new StringTokenizer(oldStr.trim(), "-");
    char zero = '0';
    String dem_zero = ".0";
    String newStr = "";
    while(st.hasMoreTokens()) {
    String degree = st.nextToken();
    String minute = st.nextToken();
    String second = st.nextToken();     
    if (minute.length() == 1) {
    minute = zero + minute;
    if (second.length() == 1) {
    second = zero + second;
    if (second.length() == 2) {
    second = second + dem_zero;
    if (second.length() == 3) {
    second = zero + second;
    if (second.length() == 5) {
    double d = Double.parseDouble(second);
    second = String.valueOf(Math.round(d));
    newStr = degree + " " + minute + " " + second;
    return newStr;
    public static double feetToMeter(int ft)
    double mt = ft * 0.305;
    return mt;
    public void doConvert() { 
    try {
    Class.forName("oracle.jdbc.driver.OracleDriver");
    con = DriverManager.getConnection("url","user","password");
    stmt = con.createStatement();
    stmt1 = con.createStatement();
    rs = stmt.executeQuery("SELECT cla_seqnum, str_leased, nad27_lat, nad27_lon, nad83_lat, nad83_lon, ge_ft, sh_ft, osh_ft, ov_faa_approv_ft, ant_tip_ft, ant_ctr_line_ft FROM cl_antenna_base WHERE application_user_id = 'SQL LOADER'");
    rs1 = stmt1.executeQuery("SELECT mwa_seqnum, nad27_lat, nad27_lon, nad83_lat, nad83_lon, ge_ft, osh_ft, cl_ft FROM mw_antenna_base WHERE application_user_id = 'SQL LOADER'");
    int cl_seqnum = 0;
    String leased = "";
    String ownership = "";
    String str_code = "";
    String cl_nad27_lat = "";
    String cl_nad27_lon = "";
    String cl_nad83_lat = "";
    String cl_nad83_lon = "";
    int cl_ge_ft = 0;
    int cl_ge_mt = 0;
    int cl_sh_ft = 0;
    int cl_sh_mt = 0;
    int cl_osh_ft = 0;
    int cl_osh_mt = 0;
    int cl_ov_faa_approv_ft = 0;
    int cl_ov_faa_approv_mt = 0;
    int cl_ant_tip_ft = 0;
    int cl_ant_tip_mt = 0;
    int cl_ant_ctr_line_ft = 0;
    int cl_ant_ctr_line_mt = 0;
    int i = 1;
    int mw_seqnum = 0;
    String mw_nad27_lat = "";
    String mw_nad27_lon = "";
    String mw_nad83_lat = "";
    String mw_nad83_lon = "";
    int mw_ge_ft = 0;
    int mw_ge_mt = 0;
    int mw_osh_ft = 0;
    int mw_osh_mt = 0;
    int mw_cl_ft = 0;
    int mw_cl_mt = 0;
    int j = 1;
    while(rs.next())                    // For Cellular/PCS
    System.out.println("\n\nCellular/PCS Record #" + i);
    cl_seqnum = rs.getInt("cla_seqnum");
    System.out.println("cla_seqnum =" + cl_seqnum);
    if (rs.getString("str_leased") != null) {
    leased = rs.getString("str_leased");
    } else {
    leased = "";
         StringTokenizer st = new StringTokenizer(leased, "/");
    while(st.hasMoreTokens()) {
         ownership = st.nextToken();
         str_code = st.nextToken();
    if (rs.getString("nad27_lat") != null) {
    cl_nad27_lat = valueOf(rs.getString("nad27_lat"));
    } else {
    cl_nad27_lat = "";
         System.out.println("cl_nad27_lat = " + cl_nad27_lat);
    if (rs.getString("nad27_lon") != null) {
    cl_nad27_lon = valueOf(rs.getString("nad27_lon"));
    } else {
    cl_nad27_lon = "";
    System.out.println("cl_nad27_lon = " + cl_nad27_lon);
    if (rs.getString("nad83_lat") != null) {
    cl_nad83_lat = valueOf(rs.getString("nad83_lat"));
    } else {
    cl_nad83_lat = "";
    System.out.println("cl_nad83_lat = " + cl_nad83_lat);
    if (rs.getString("nad83_lon") != null) {
    cl_nad83_lon = valueOf(rs.getString("nad83_lon"));
    } else {
    cl_nad83_lon = "";
    System.out.println("cl_nad83_lon = " + cl_nad83_lon);
    cl_ge_mt = (int)feetToMeter(rs.getInt("ge_ft"));
    System.out.println("&&&&&&&&&&&&&&&&&&&cl_ge_mt = " + cl_ge_mt);
    cl_sh_mt = (int)feetToMeter(rs.getInt("sh_ft"));
    System.out.println("&&&&&&&&&&&&&&&&&&&cl_sh_mt = " + cl_sh_mt);
    cl_osh_mt = (int)feetToMeter(rs.getInt("osh_ft"));
    System.out.println("&&&&&&&&&&&&&&&&&&&cl_osh_mt = " + cl_osh_mt);
    cl_ov_faa_approv_mt = (int)feetToMeter(rs.getInt("ov_faa_approv_ft"));
    System.out.println("&&&&&&&&&&&&&&&&&&&cl_ov_faa_approv_mt = " + cl_ov_faa_approv_mt);
    cl_ant_tip_mt = (int)feetToMeter(rs.getInt("ant_tip_ft"));
    System.out.println("&&&&&&&&&&&&&&&&&&&cl_ant_tip_mt = " + cl_ant_tip_mt);
    cl_ant_ctr_line_mt = (int)feetToMeter(rs.getInt("ant_ctr_line_ft"));
    System.out.println("&&&&&&&&&&&&&&&&&&&cl_ant_ctr_line_mt = " + cl_ant_ctr_line_mt);
         // update NAD27 and NAD83 data in CL_ANTENNA table
    ps = con.prepareStatement("UPDATE cl_antenna_base SET str_leased = ?, structure_code = ?, nad27_lat = ?, nad27_lon =?, nad83_lat = ?, nad83_lon = ?, ge_mt = ?, sh_mt = ?, osh_mt = ?, ov_faa_approv_mt = ?, ant_tip_mt = ?, ant_ctr_line_mt = ? WHERE cla_seqnum = " + cl_seqnum);
    ps.setString(1, ownership);
    ps.setString(2, str_code);
    ps.setString(3, cl_nad27_lat);
    ps.setString(4, cl_nad27_lon);
    ps.setString(5, cl_nad83_lat);
    ps.setString(6, cl_nad83_lon);
    ps.setInt(7, cl_ge_mt);
    ps.setInt(8, cl_sh_mt);
    ps.setInt(9, cl_osh_mt);
    ps.setInt(10, cl_ov_faa_approv_mt);
    ps.setInt(11, cl_ant_tip_mt);
    ps.setInt(12, cl_ant_ctr_line_mt);
         ps.executeUpdate();          
         i++;
    } // end of while
    while(rs1.next())                    // For Microwave
    System.out.println("\n\nMicrowave Record #" + j);
    mw_seqnum = rs1.getInt("mwa_seqnum");
    System.out.println("mw_seqnum =" + mw_seqnum);
    if (rs1.getString("nad27_lat") != null) {
    mw_nad27_lat = valueOf(rs1.getString("nad27_lat"));
    } else {
    mw_nad27_lat = "";
    System.out.println("mw_nad27_lat = " + mw_nad27_lat);
    if (rs1.getString("nad27_lon") != null) {
    mw_nad27_lon = valueOf(rs1.getString("nad27_lon"));
    } else {
    mw_nad27_lon = "";
    System.out.println("mw_nad27_lon = " + mw_nad27_lon);
    if (rs1.getString("nad83_lat") != null) {
    mw_nad83_lat = valueOf(rs1.getString("nad83_lat"));
    } else {
    mw_nad83_lat = "";
    System.out.println("mw_nad83_lat = " + mw_nad83_lat);
    if (rs1.getString("nad83_lon") != null) {
    mw_nad83_lon = valueOf(rs1.getString("nad83_lon"));
    } else {
    mw_nad83_lon = "";
    System.out.println("mw_nad83_lon = " + mw_nad83_lon);
    mw_ge_mt = (int)feetToMeter(rs1.getInt("ge_ft"));
    System.out.println("&&&&&&&&&&&&&&&&&&&mw_ge_mt = " + mw_ge_mt);
    mw_osh_mt = (int)feetToMeter(rs1.getInt("osh_ft"));
    System.out.println("&&&&&&&&&&&&&&&&&&&mw_osh_mt = " + mw_osh_mt);
    mw_cl_mt = (int)feetToMeter(rs1.getInt("cl_ft"));
    System.out.println("&&&&&&&&&&&&&&&&&&&mw_cl_mt = " + mw_cl_mt);
    // update NAD27 and NAD83 data in MW_ANTENNA table
    ps1 = con.prepareStatement("UPDATE mw_antenna_base SET nad27_lat = ?, nad27_lon =?, nad83_lat = ?, nad83_lon = ?, ge_mt = ?, osh_mt = ?, cl_mt = ? WHERE mwa_seqnum = " + mw_seqnum);
    ps1.setString(1, mw_nad27_lat);
    ps1.setString(2, mw_nad27_lon);
    ps1.setString(3, mw_nad83_lat);
    ps1.setString(4, mw_nad83_lon);
    ps1.setInt(5, mw_ge_mt);
    ps1.setInt(6, mw_osh_mt);
    ps1.setInt(7, mw_cl_mt);
    ps1.executeUpdate();
    j++;
    } // end of while
    } catch(SQLException se) {
         System.out.println("SQL Exc" + se.getMessage());
    se.printStackTrace();
    } catch(Exception e) {
    System.out.println(" Exc" + e.getMessage());
    e.printStackTrace();
    finally
              try
                   rs.close();
                   stmt.close();
                   dbConn.freeConnection("system", conn);
                   conn.close();
              } catch (SQLException e)
    } // end of doConvert
    public static void main(String args[]) {
    Format_BaseTable old_nad = new Format_BaseTable();
    old_nad.doConvert();
    } // end of class

  • How we can upload database on net(i.e web hosting)

    Hi everybody..
    In my internet project i want to use oracle as my database could any one help how i can create and upload my database with all packages, procedures, triggers etc .
    i would like to known what the procedure.. where can i find the exact prcedure for above said..
    null

    Saeed,
    I am not sure that I understand your question. You want to upload your database to the internet?
    If that is the question, then you may want to use Oracle 9iAS Portal to pull information from your database and display them on the web.
    Hope this helps,
    Sue

  • How large can a flash movie be ?

    i am buiilding a larger interactive site than i have before,
    that contains a lot of images.
    i haven't posted it on the web yet, but in testing the movie
    it seems to freeze or go extremely slowly while "exporting flash
    movie "
    is there a limit to how much you can put in a flash movie,
    and what is it ?

    Probably the limit of what you can stand! There is a limit of
    16000 frames in the timeline, but that probably isn't what you are
    running into here.
    If you have lots of images and maybe some video, and your swf
    is maybe over 1Meg or even 500K then perhaps you are taking the
    wrong approach. You should probably look into having external
    assets that are cleverly preloaded just when they are needed.
    This will cut down on publish time, but will also produce a
    better experience for the end user and allow the flash player to
    better manage memory usage.
    Look into the MovieClipLoader class.

  • How large can a PDF file be?

    This question is not just strictly about the spec, it's also about what the most common readers will accept.
    So the file offsets are 10-digit numbers, is the maximum safe offset 2,147,483647 or 4,294,967,296 or 9,999,999,999?
    I understand about "large" files and older OSs and so on, and I don't care about ancient lame OSs with 32-bit max file sizes...

    PDF 1.0 through 1.4 uses 10 digit offsets, which is an unsigned integer (so 9,999,999,999).  PDF 1.5 and later support a new type of offset that doesn't have any such limitation and is a 64-bit unsigned integer.
    Assuming a modern OS, file system, and disk format, Adobe Acrobat/Reader supports PDFs using the newer offset up to their full 64bit lengths.  I can't common on any other company's products.

  • How large can a Muse website get?

    Would Muse have any problems with building a website that would be upwards of 50 or 60 pages? There is a potential client that has a TON of content and I'm wondering if this type of project would tax Muse.

    That's part of the overall bigger picture. The client wants to freshen up their website which was done on Wordpress. I work in Muse and can easily create the type of look he wants. But there is a ton of blogs already set-up that are already helping with his SEO. I'm thinking I might have to learn a little Wordpress to give it the look of the new site I will be building for him. Then, link to the blogs from Muse. But still, the content writer wants to have these as articles (actual pages on the site itself) as they are not really blogs.

  • How i can use database like MySql with numbers

    i would like use Database connect on numbers but i don't know if it possible or not

    There is no built-in support for mysql (or any database) in Numbers.  There maybe a way if you are willing to pursue writing Applescripts.

  • How Large Can it Be ?

    whats the maximum HD(SATA) size that can go for the 875P NEO ?

    Danny!! ..I know.... ..THE BEARD!! THE BOAT!! ....Sean REILLY875

  • How i can backup & restore in selected data?

    create table a (backup_id number, ......)
    create table b (backup_id number, ......)
    create table c (backup_id number, ......)
    100 table created
    how i can backup all data only backup_id = 1??
    how can it possible ????

    acctually i want to full database backup
    but few table i can selected data????
    DECLARE
    l_dp_handle NUMBER;
    l_last_job_state VARCHAR2(30) := 'UNDEFINED';
    l_job_state VARCHAR2(30) := 'UNDEFINED';
    l_sts KU$_STATUS;
    BEGIN
    l_dp_handle := DBMS_DATAPUMP.open(
    operation => 'EXPORT',
    job_mode => 'TABLE', *?? HOW I CAN FULL DATABASE BACKUP*
    remote_link => NULL,
    job_name => 'EXPORT4',
    version => 'LATEST');
    DBMS_DATAPUMP.add_file(
    handle => l_dp_handle,
    filename => 'TEMP.dmp',
    directory => 'TEMP');
    DBMS_DATAPUMP.add_file(
    handle => l_dp_handle,
    filename => 'TEMP.log',
    directory => 'TEMP',
    filetype => DBMS_DATAPUMP.KU$_FILE_TYPE_LOG_FILE);
    DBMS_DATAPUMP.data_filter(
    handle => l_dp_handle,
    name => 'SUBQUERY',
    value => 'WHERE OPERATOR = ''+''',
    table_name => 'TEMP');
    DBMS_DATAPUMP.data_filter(
    handle => l_dp_handle,
    name => 'SUBQUERY',
    value => 'WHERE OPERATOR = ''+''',
    table_name => 'TEMP2');
    DBMS_DATAPUMP.start_job(l_dp_handle);
    DBMS_DATAPUMP.detach(l_dp_handle);
    END;
    HOW I CAN FULL DATABASE BACKUP & TEMP & TEMP 2 APPLY DATA_FILTER ???

  • I recently changed from a Mac Pro to an iMac. A large chunk of emails have disappeared. Time Machine is no help. Any ideas as to how I can get them back?

    I recently changed from a Mac Pro to an iMac. Despite using Migration Assistant, a large chunk of my recent emails and nearly all of my wife's emails have disappeared in transit. Strangely, emails from my distant past are still there. Time Machine is no help; the messages may be on my backup disc but they're behind an invisible  icon. Any ideas as to how I can get them back?

    Quit Mail. Force quit if necessary.
    Back up all data. That means you know you can restore the Mail database, no matter what happens.
    Triple-click the text on the line below to select it:
    ~/Library/Mail/V2/MailData/Envelope Index
    Copy the selected text to the Clipboard (command-C). In the Finder, select
    Go ▹ Go to Folder
    from the menu bar. Paste into the box that opens (command-V), then press return.
    A Finder window will open with a file selected. Move the selected file to the Desktop, leaving the window open. Other files in the folder may have names that begin with "Envelope Index". Move those files, if any, to the Trash.
    Log out and log back in. Relaunch Mail. It should prompt you to re-import your messages. You may get a warning that the index is corrupt and that Mail has to quit. Click OK.
    Test. If Mail now works as expected, you can delete the file you moved to the Desktop. Otherwise, post your results.

Maybe you are looking for

  • Flash Actionscript Photo Gallery question

    So basically im putting together a little flash website and i created a photo gallery and put it on a frame seperate from the others and i want a button on the first frame to take you automatically to the photo gallery. So i did and it worked. I also

  • How do I create photo folders in my iPad

    How do I create photo folders in my IPad ?

  • Connection to SOAP WebServ refused

    Hi there. Me again with another issue. I created a ASP.NET WebService (SOAP based), which I try to use as data source to my BI Publisher report. The web service works fine, but after I add the WSDL and method in BI Pub, when I click View, It raises t

  • Bug: "Move to" in email application doesn't work if activated before message fully loads

    I've hit this many times when going through email. If you click on a message in the email application, then go to "Move to folder" in the top-left menu before the message finishes loading, the list of folders in the move dialog will be completely bla

  • Installation of Multiple Forms Products

    I need to create a run-time client server environment that will contain Forms versions 4.5 / 5.0 / 6.0 and 6i along with an oracle client. Any thoughts out there on the best way to configure this. My current production environment has the 8.0.4 clien