Hola, quería saber cual es el límite de registros por tabla en MySQL.
Muchas gracias y un saludo.
| |||
Límite en MySQL Hola, quería saber cual es el límite de registros por tabla en MySQL. Muchas gracias y un saludo. |
| |||
Según el manual: Scalability and Limits Handles large databases. We use MySQL Server with databases that contain 50 million records. We also know of users that use MySQL Server with 60,000 tables and about 5,000,000,000 rows. Up to 32 indexes per table are allowed. Each index may consist of 1 to 16 columns or parts of columns. The maximum index width is 500 bytes (this may be changed when compiling MySQL Server). An index may use a prefix of a CHAR or VARCHAR field. Version 3.22 had a 4 GB (4 gigabyte) limit on table size. With the MyISAM table type in MySQL Version 3.23, the maximum table size was pushed up to 8 million terabytes (2 ^ 63 bytes). Por ello deduzco que no hay límite en el número de registros en una tabla, pero si límite en el tamaño de la misma.
__________________ Marc IberoHost.com |