Page 2 of 2 FirstFirst 12
Results 11 to 14 of 14

Thread: mySql planning

  1. #11
    Join Date
    Jan 2008
    Posts
    441
    Thanks
    67
    Thanked 4 Times in 4 Posts

    Default

    i see
    im just worried that if i keep everything in a few tables then 1 table has a chance of ballooning to over 100K rows
    btw, to clear up any confusion i am not trying to connect to different databases but rather thinking of dynamically creating new tables to keep the number of rows in a particular table under control, but djr33 suggested not to do this
    Last edited by ggalan; 07-01-2011 at 03:45 PM.

  2. #12
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    It's better for organization to have more rows in a single table and fewer tables. Research "large databases" if you want. But you don't need to worry. I'm sure there are databases out there with millions of rows.

    On the other hand, your server may not be powerful enough. But if the server is good enough then it should work. If you run into storage space issues or slow processing then it's time to move to a new server.


    You can do whatever you'd like, but having lots of rows is a main design feature in databases.
    Last edited by djr33; 07-01-2011 at 07:38 PM.
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  3. #13
    Join Date
    Jan 2008
    Posts
    441
    Thanks
    67
    Thanked 4 Times in 4 Posts

    Default

    great! thanks for all your input

  4. #14
    Join Date
    Apr 2008
    Location
    So.Cal
    Posts
    3,643
    Thanks
    63
    Thanked 516 Times in 502 Posts
    Blog Entries
    5

    Default

    the default max table size using the MyISAM engine in mysql is 4GB. Properly configured, you can increase that to 65,536 TB (yes, terabytes). it's more of an operating system (or plain old disk size) issue than anything you might need to do differently with your data structure.

  5. The Following User Says Thank You to traq For This Useful Post:

    ggalan (07-02-2011)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •