mysql中的表大小限制
for myisam, it depend the filesystem limit on the system
for innodb,can exceed the file size limit to tablespace limit, the maximum is 64TB.
see the following article
mysql> show table status like 't_shop_124%' \G
*************************** 1. row ***************************
Name: t_shop_124
Engine: InnoDB
Version: 9
Row_format: Dynamic
Rows: 4594
Avg_row_length: 338
Data_length: 1556480
Max_data_length: NULL
Index_length: 196608
Data_free: 0
Auto_increment: NULL
Create_time: 2007-02-09 20:55:10
Update_time: NULL
Check_time: NULL
Collation: latin1_swedish_ci
Checksum: NULL
Create_options:
Comment: InnoDB free: 4096 kB
1 row in set (0.01 sec)
mysql> show table status like 'tmp_t_shop_124%' \G
*************************** 1. row ***************************
Name: tmp_t_shop_124
Engine: MyISAM
Version: 9
Row_format: Dynamic
Rows: 4531
Avg_row_length: 116
Data_length: 529512
Max_data_length: 4294967295 Index_length: 95232
Data_free: 0
Auto_increment: NULL
Create_time: 2007-02-09 21:02:43 Update_time: 2007-02-09 21:02:56
Check_time: 2007-02-09 21:02:56
Collation: latin1_swedish_ci
Checksum: NULL
Create_options:
Comment:
1 row in set (0.00 sec)
for innodb,can exceed the file size limit to tablespace limit, the maximum is 64TB.
see the following article
mysql> show table status like 't_shop_124%' \G
*************************** 1. row ***************************
Name: t_shop_124
Engine: InnoDB
Version: 9
Row_format: Dynamic
Rows: 4594
Avg_row_length: 338
Data_length: 1556480
Max_data_length: NULL
Index_length: 196608
Data_free: 0
Auto_increment: NULL
Create_time: 2007-02-09 20:55:10
Update_time: NULL
Check_time: NULL
Collation: latin1_swedish_ci
Checksum: NULL
Create_options:
Comment: InnoDB free: 4096 kB
1 row in set (0.01 sec)
mysql> show table status like 'tmp_t_shop_124%' \G
*************************** 1. row ***************************
Name: tmp_t_shop_124
Engine: MyISAM
Version: 9
Row_format: Dynamic
Rows: 4531
Avg_row_length: 116
Data_length: 529512
Max_data_length: 4294967295 Index_length: 95232
Data_free: 0
Auto_increment: NULL
Create_time: 2007-02-09 21:02:43 Update_time: 2007-02-09 21:02:56
Check_time: 2007-02-09 21:02:56
Collation: latin1_swedish_ci
Checksum: NULL
Create_options:
Comment:
1 row in set (0.00 sec)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/94384/viewspace-600272/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- DB2頁大小、表大小和表空間大小限制DB2
- POST表單資料大小的限制
- MySQL InnoDB表的限制MySql
- MySQL MyISAM引擎和InnoDB引擎對於單表大小限制的總結MySql
- MySQL 庫大小、表大小、索引大小查詢命令MySql索引
- 查詢MySQL資料庫,MySQL表的大小MySql資料庫
- MySQL中的大小寫敏感MySql
- 請問:Java中List的大小有沒有限制Java
- DB2中的限制之六資料庫管理頁大小的限制 (轉)DB2資料庫
- ASM磁碟大小限制ASM
- 如何獲取 PostgreSQL 資料庫中的表大小、資料庫大小、索引大小、模式大小、表空間大小、列大小SQL資料庫索引模式
- mysql中雜湊索引的使用限制MySql索引
- Mysql 表名大小寫問題MySql
- MySQL表名區分大小寫MySql
- MySQL資料庫中庫、表名、欄位的大小寫問題MySql資料庫
- 如何限制從資料庫中讀出圖片的大小資料庫
- MySQL 關於表名大小寫的引數MySql
- Oracle中left join中右表的限制條件Oracle
- 【Datafile】Oracle單個datafile大小的限制Oracle
- JavaScript限制上傳檔案的大小JavaScript
- DB2管理頁大小的限制DB2
- ORACLE物理檔案大小的限制(轉)Oracle
- Oracle資料檔案大小的限制Oracle
- MySQL 減少InnoDB系統表空間的大小MySql
- MYSQL-檢視資料庫或表的大小MySql資料庫
- 探究intent傳遞大小限制Intent
- 關於http get和form表單post提交資料大小限制HTTPORM
- MySQL 增加InnoDB系統表空間大小MySql
- 設定MYSQL不區分表大小寫MySql
- 檢視mysql表大小和記錄數MySql
- MySQL中的表-區MySql
- 限制 Apache日誌檔案大小的方法Apache
- php4 - POST檔案大小的限制PHP
- C#中,用Web頁上傳檔案大小限制的問題C#Web
- MySQL表名不區分大小寫的設定方法MySql
- 關於MySQL 查詢表資料大小的總結MySql
- linux+nginx+mysql+php系統修改檔案上傳大小限制LinuxNginxMySqlPHP
- php檔案上傳大小限制PHP