国产 无码 综合区,色欲AV无码国产永久播放,无码天堂亚洲国产AV,国产日韩欧美女同一区二区

[MySQL]The used table type doesn’t support FULLTEXT indexes解決辦法

[MySQL]The used table type doesn’t support FULLTEXT indexes解決辦法

將原來的數(shù)據(jù)庫sql導(dǎo)出,然后導(dǎo)入到其他數(shù)據(jù)庫,提示:The used table type doesn’t support FULLTEXT indexes

報錯原因

InnoDB不支持FULLTEXT類型的索引。

原來的數(shù)據(jù)庫 mysql.ini 中設(shè)置的默認(rèn)引擎是InnoDB(default-storage-engine=InnoDB),而導(dǎo)入目標(biāo)數(shù)據(jù)庫的引擎是MyISAM

(面板用習(xí)慣了,都沒注意這個問題就發(fā)生了報錯)

解決辦法

將導(dǎo)出的SQL文件編輯,將ENGINE=InnoDB全部替換成ENGINE=MyISAM即可。

補充,AI給出的答案,可參考

在使用MySQL數(shù)據(jù)庫時,有時候你可能會遇到以下錯誤信息:"The used table type doesn’t support FULLTEXT indexes"。這個錯誤通常發(fā)生在嘗試在不支持FULLTEXT索引的表類型上創(chuàng)建FULLTEXT索引時。

為了解決這個問題,我們可以采取以下步驟:

  1. 首先,確認(rèn)你的MySQL版本是否支持FULLTEXT索引。FULLTEXT索引需要至少MySQL 5.6及以上版本才能正常使用。

  2. 確認(rèn)你要創(chuàng)建FULLTEXT索引的表的存儲引擎是否支持FULLTEXT索引。目前,MyISAM和InnoDB是兩個主要支持FULLTEXT索引的存儲引擎。如果你的表使用其他存儲引擎,你需要考慮轉(zhuǎn)換成支持FULLTEXT索引的存儲引擎。

  3. 如果你的表使用MyISAM存儲引擎,但仍然出現(xiàn)錯誤,請確認(rèn)你的表定義中是否指定了正確的存儲引擎??梢酝ㄟ^執(zhí)行以下語句來檢查表的定義:

    SHOW CREATE TABLE table_name;

    確保在結(jié)果中看到ENGINE=MyISAM。

  4. 如果你的表使用InnoDB存儲引擎,并且你仍然遇到錯誤,請考慮切換回MyISAM存儲引擎。但請注意,在做出這個決定之前,你需要評估自己系統(tǒng)的需求和限制。

  5. 最后,如果以上步驟都無法解決問題,你可以考慮升級MySQL版本或者尋找其他適合你的需求的全文搜索解決方案。

通過以上步驟,您應(yīng)該能夠成功解決"The used table type doesn’t support FULLTEXT indexes"錯誤,并在MySQL數(shù)據(jù)庫中正確使用FULLTEXT索引。


文章來源地址http://www.zghlxwxcb.cn/article/596.html

到此這篇關(guān)于[MySQL]The used table type doesn’t support FULLTEXT indexes解決辦法的文章就介紹到這了,更多相關(guān)內(nèi)容可以在右上角搜索或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!

原文地址:http://www.zghlxwxcb.cn/article/596.html

如若轉(zhuǎn)載,請注明出處: 如若內(nèi)容造成侵權(quán)/違法違規(guī)/事實不符,請聯(lián)系站長進(jìn)行投訴反饋,一經(jīng)查實,立即刪除!

領(lǐng)支付寶紅包贊助服務(wù)器費用

相關(guān)文章

  • Row size too large. The maximum row size for the used table type, not counting BLOBs, is 65535.

    Row size too large. The maximum row size for the used table type, not counting BLOBs, is 65535.

    新建表或者修改表varchar字段長度的時候,出現(xiàn)這個錯誤 大概意思就是行大小太大,不能超過65535 長度改為21842就正常了,這是為什么? 最終我們執(zhí)行正確的SQL語句 這里的21842長度是怎么來的? 首先它是什么意思?表示21842字符 首先來了解幾個規(guī)則,對我們的字符數(shù)有影響的

    2024年02月05日
    瀏覽(19)
  • Goland Cannot use ‘err‘ (type error) as the type any

    Goland Cannot use ‘err‘ (type error) as the type any

    問題描述: 用Goland寫代碼的時候,使用panic總是報錯,官方用法也是報錯,最后找到官方回復(fù)的鏈接,https://youtrack.jetbrains.com/issue/GO-12179/Cannot-use-err-type-error-as-the-type-any 問題解決方式: Update the IDE instance to the latest available version: 2021.3.4. 就是升級你的GoLand升級到2021.3.4,好像

    2024年02月07日
    瀏覽(21)
  • MySQL初始化之后啟動報錯(mysqld: Table ‘mysql.plugin‘ doesn‘t exist)

    MySQL初始化之后啟動報錯(mysqld: Table ‘mysql.plugin‘ doesn‘t exist)

    初始化之后,服務(wù)無法啟動。錯誤日志error-log 報錯如下: (mysql庫下的系統(tǒng)表不存在) 系統(tǒng)表 不存在,數(shù)據(jù)庫剛進(jìn)行完初始化呀,不合理呀? 排出了目錄權(quán)限問題 半同步插件的參數(shù)在初始化的時候不能開啟 處理方式是 注釋掉 下面參數(shù),重新初始化。 完結(jié)撒花。

    2024年02月04日
    瀏覽(26)
  • The project in using an incompatible version(AGP 7.3.0) of the Android Gradle plugin Latest support

    The project in using an incompatible version(AGP 7.3.0) of the Android Gradle plugin Latest support

    The project in using an incompatible version(AGP 7.3.0) of the Android Gradle plugin Latest supported version is AGP 7.2.2 紅色方框里我剛從遠(yuǎn)程倉庫下在下別人的項目時寫的是version 7.3.0,應(yīng)該是版本太高了,查了查資料說是7.2.1是穩(wěn)定版,就改成了7.2.1,然后刷新同步就解決這個報錯了。

    2024年02月13日
    瀏覽(24)
  • Mysql出現(xiàn)問題:ERROR 1146 (42S02) Table ‘**‘ doesn‘t exist解決方案

    Mysql出現(xiàn)問題:ERROR 1146 (42S02) Table ‘**‘ doesn‘t exist解決方案

    回城傳送–》《數(shù)據(jù)庫問題解決方案》 ??作者主頁:小虛竹 ??作者簡介:大家好,我是小虛竹。Java領(lǐng)域優(yōu)質(zhì)創(chuàng)作者??,CSDN博客專家??,華為云享專家??,掘金年度人氣作者??,阿里云專家博主??,51CTO專家博主?? ??技術(shù)活,該賞 ??點贊 ?? 收藏 ?再看,養(yǎng)成習(xí)

    2024年02月08日
    瀏覽(22)
  • TypeError: ufunc ‘bitwise_and‘ not supported for the input types, and the inputs could not be safely

    這個錯誤是因為您使用了邏輯運算符來執(zhí)行按位與(bitwise and)運算,而它不適用于浮點數(shù)類型的輸入數(shù)據(jù)。 要比較兩個浮點數(shù)是否在一個范圍內(nèi),您可以使用邏輯運算符and,或者使用numpy庫中的logical_and函數(shù)。具體地,您可以按照以下方式更改代碼: 1.使用邏輯運算符and來替代

    2024年02月14日
    瀏覽(88)
  • Docker容器化部署報Fatal error: Can‘t open and lock privilege tables: Table ‘mysql.user‘ doesn‘t exis的解決辦法

    Docker容器化部署報Fatal error: Can‘t open and lock privilege tables: Table ‘mysql.user‘ doesn‘t exis的解決辦法

    關(guān)于這個,博主是在遷移數(shù)據(jù)庫的時候遇到的, 為了緊貼單位的發(fā)展戰(zhàn)略及發(fā)展文化方針,給單位培養(yǎng)人才,先大膽的讓同事先嘗試著操作,最后出現(xiàn)問題了,博主就出場了, 查看事件內(nèi)容提示: “ ?Fatal error: Can‘t open and lock privilege tables: Table ‘mysql.user‘ doesn‘t exis ”

    2023年04月08日
    瀏覽(25)
  • 解決運行js代碼報錯—Warning: To load an ES module, set “type“: “module“ in the package.json or use the .mjs

    解決運行js代碼報錯—Warning: To load an ES module, set “type“: “module“ in the package.json or use the .mjs

    目錄 ? 報錯信息 ?? 解決方案 ?? 執(zhí)行結(jié)果 vscode運行js代碼報錯:(node:20452) Warning: To load an ES module, set \\\"type\\\": \\\"module\\\" in the package.json or use the .mjs extension.? 同類型報錯的情況,都可以使用該方案解決!

    2024年02月08日
    瀏覽(24)
  • Error: The user of this service-type is not allowed to use a reversible encryption algorithm

    Error: The user of this service-type is not allowed to use a reversible encryption algorithm

    在交換機或者路由器進(jìn)行AAA認(rèn)證時,修改用戶密碼出現(xiàn)以下狀況改如何解決“Error: The user of this service-type is not allowed to use a reversible encryption algorithm”。 配置local-user 用戶名 password cipher報錯.....--此時需要把cipher換成irreversible-cipher。 于是,重新連接交換機修改密碼,換個命令

    2024年02月14日
    瀏覽(20)
  • Flutter:安裝依賴報錯doesn‘t support null safety

    Flutter:安裝依賴報錯doesn‘t support null safety

    項目中需要引用http依賴,在pubspec.yaml文件中添加如下信息: 當(dāng)同步時,報錯信息如下: [myflutter] flutter pub upgrade Resolving dependencies... The current Dart SDK version is 3.1.3. Because myflutter depends on http =0.2.8+2 0.13.0-nullsafety.0 which doesn\\\'t support null safety, version solving failed. The lower bound of \\\"sdk:

    2024年02月04日
    瀏覽(14)

覺得文章有用就打賞一下文章作者

支付寶掃一掃打賞

博客贊助

微信掃一掃打賞

請作者喝杯咖啡吧~博客贊助

支付寶掃一掃領(lǐng)取紅包,優(yōu)惠每天領(lǐng)

二維碼1

領(lǐng)取紅包

二維碼2

領(lǐng)紅包