解決mysql出現幾個l的問題
一、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,這裡不包括TEXT、BLOB。
按照上面總結的限制,來解釋出現的現象:
第一個情況是:
單個欄位長度: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|
+-------+------+----------------------------------------------------+相關文章
- 關於解決問題的幾個段位
- MySQL組複製的幾個常見問題以及解決辦法MySql
- 最近解決的幾個DIV+CSS的問題CSS
- 解決Ubuntu配置nginx出現的問題UbuntuNginx
- 急問:mysql出現的問題MySql
- 解決中文問題的幾個常用的函式 (轉)函式
- Pentaho 使用中發現的幾個問題和解決方法
- PHP出現Cannotmodifyheaderinformation問題的解決方法PHPHeaderORM
- rmi幾個出錯解決
- mysql叢集02:幾個問題MySql
- mysql 安裝出現的問題MySql
- 【DataBase】:使用Oracle遇到的幾個問題及解決辦法DatabaseOracle
- Kettle資料抽取(轉換)mysql出現亂碼問題解決方法MySql
- jboss4和mysql5出現問題,請幫我解決MySql
- kafka監聽出現的問題,解決和剖析Kafka
- junit測試出現的小問題解決方案
- npm module 釋出 遇到的幾個問題NPM
- 發現問題,解決問題
- Mysql6.0連線中的幾個問題MySql
- 解決Mysql資料庫插入資料出現問號(?)的解決辦法MySql資料庫
- MFC軟體國際化的幾個問題及其解決方案
- ie不相容的幾個js問題及解決辦法JS
- 關於在頁面中解決列印的幾個問題 (轉)
- myeclispe中向mysql中插入中文資料出現??問題解決辦法LispMySql
- 快速解決mongodb出現id重複問題MongoDB
- 解決出現This system is not registered to Red Hat Subscription Management的問題
- iOS 解決tableHeaderView新增searchBar後出現的問題iOSHeaderView
- 換IP經常出現的問題及其解決方案
- 演示PPT文件時常出現的問題與解決
- MySQL 中文 like 問題解決MySql
- mysql大小寫問題解決MySql
- 關於幾個MySQL環境問題的對比MySql
- 今天解決的兩個問題
- Gentoo startx出現Failed to load module問題解決AI
- 解決app中多語音出現的衝突問題APP
- 佈置完SimpleJdonFrameworkTest出現了一個問題幫忙解決下Framework
- 通過幾個問題深入淺出VueVue
- MySql中文亂碼問題解決MySql