解決mysql出現幾個l的問題

軍說網事發表於2015-08-31

一、the table is full的問題

一>You are using the MEMORY (HEAP) storage engine; in this case youneed to increase the value of the max_heap_table_size system variable. SeeSection 5.1.3,“Server System Variables”.


ERROR 1114 (HY000) at line 1720: The table 'XXXX' is full

於是就修改Mysql的配置檔案my.ini,在[mysqld]下新增/修改兩行:
tmp_table_size = 256M
max_heap_table_size = 256M

系統預設是16M,修改完後重啟mysql

 

二>硬碟空間滿了,清理硬碟即可.

不要被mysql的安裝目錄所欺騙, 最好親自去看看資料存放目錄是哪

在my.ini  搜尋 datadir

看其指向的目錄 就是資料存放目錄。


二>ERROR1118 (42000): Row size too large. The maximum row size forthe usedtable type,not counting BLOBs,is65535. You haveto changesomecolumnstoTEXTor BLOBs

root@localhost : test10:31:01>CREATETABLE tb_test (

    -> recordidvarchar(32)NOTNULL,

    -> areaShowvarchar(30000)DEFAULTNULL,

    -> areaShow1varchar(30000)DEFAULTNULL,

    -> areaShow2varchar(30000)DEFAULTNULL,

    ->PRIMARYKEY (recordid)

    -> ) ENGINE=INNODBDEFAULT CHARSET=utf8;

Query OK, 0 rows affected,3warnings (0.26 sec)

可以建立只是型別被轉換了。

root@localhost : test10:31:14>showwarnings;

+-------+------+----------------------------------------------------+

|Level| Code|Message                                           |

+-------+------+----------------------------------------------------+

| Note |1246| Converting column'areaShow'fromVARCHARtoTEXT |

| Note |1246| Converting column'areaShow1'fromVARCHARtoTEXT|

| Note |1246| Converting column'areaShow2'fromVARCHARtoTEXT|

+-------+------+----------------------------------------------------+

3 rowsinset (0.00 sec)

疑問:

為什麼欄位小(10000)的反而報錯,而大(30000)的則可以建立。為什麼小的不能直接轉換呢?

解決:

這裡多感謝orczhou的幫助,原來MySQL在建表的時候有個限制:MySQL要求一個行的定義長度不能超過65535。具體的原因可以看:

http://dev.mysql.com/doc/refman/5.1/en/silent-column-changes.html

1)單個欄位如果大於65535,則轉換為TEXT

2)單行最大限制為65535,這裡不包括TEXTBLOB

按照上面總結的限制,來解釋出現的現象:

第一個情況是:
單個欄位長度:varchar(10000) ,位元組數:10000*3(utf8)+(1 or 2) = 30000 ,小於65535,可以建立。
單行記錄長度:varchar(10000)*3,位元組數:30000*3(utf8)+(1 or 2) = 90000,大於65535,不能建立,所以報錯:

ERROR 1118 (42000): Row size too large. The maximum row sizefor the used table type,notcounting BLOBs,is65535.You haveto changesomecolumnstoTEXTor BLOBs

第二個情況是:
單個欄位長度:varchar(30000) ,位元組數:30000*3+(1 or 2) = 90000 , 大於65535,需要轉換成TEXT,才可以建立。所以報warnings。
單行記錄長度:varchar(30000)*3,因為每個欄位都被轉換成了TEXT,而TEXT沒有限制,所以可以建立表。

root@localhost : test10:31:14>showwarnings;

+-------+------+----------------------------------------------------+

|Level| Code|Message                                           |

+-------+------+----------------------------------------------------+

| Note |1246| Converting column'areaShow'fromVARCHARtoTEXT |

| Note |1246| Converting column'areaShow1'fromVARCHARtoTEXT|

| Note |1246| Converting column'areaShow2'fromVARCHARtoTEXT|

+-------+------+----------------------------------------------------+




相關文章