濮阳杆衣贸易有限公司

主頁 > 知識庫 > MySQL數(shù)據(jù)庫導(dǎo)入導(dǎo)出數(shù)據(jù)之報錯解答實例講解

MySQL數(shù)據(jù)庫導(dǎo)入導(dǎo)出數(shù)據(jù)之報錯解答實例講解

熱門標(biāo)簽:百應(yīng)電話機(jī)器人優(yōu)勢 電話外呼系統(tǒng)改號 武漢網(wǎng)絡(luò)外呼系統(tǒng)服務(wù)商 外呼系統(tǒng)打電話上限是多少 怎樣在地圖標(biāo)注銷售區(qū)域 地圖標(biāo)注費(fèi)用是多少 南昌三維地圖標(biāo)注 啥是企業(yè)400電話辦理 曲靖移動外呼系統(tǒng)公司

導(dǎo)出數(shù)據(jù)

報錯

SHOW VARIABLES LIKE "secure_file_priv";
查看默認(rèn)導(dǎo)出目錄
mysql> SELECT * FROM student INTO OUTFILE "G:\ProgramData\MySQL\MySQL Server 8.0\Uploads\student.txt";
ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement

解決方法

SELECT * FROM student INTO OUTFILE "G:/ProgramData/MySQL/MySQL Server 8.0/Uploads/student.txt";
Query OK, 2 rows affected (0.02 sec)

數(shù)據(jù)展示


導(dǎo)入數(shù)據(jù)

報錯

mysql> load data local infile 'G:/ProgramData/MySQL/MySQL Server 8.0/Uploads/student.txt'
 -> into table student(a,b,c);
ERROR 3948 (42000): Loading local data is disabled; this must be enabled on both the client and server sides

解決方法

mysql> SHOW GLOBAL VARIABLES LIKE 'local_infile';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| local_infile | OFF |
+---------------+-------+
1 row in set, 1 warning (0.01 sec)

mysql> SET GLOBAL local_infile = true;
Query OK, 0 rows affected (0.00 sec)

mysql> SHOW GLOBAL VARIABLES LIKE 'local_infile';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| local_infile | ON |
+---------------+-------+
1 row in set, 1 warning (0.01 sec)

報錯

mysql> load data local infile 'G:\ProgramData\MySQL\MySQL Server 8.0\Uploads\student.txt'
 -> into table student(id,name,score);
ERROR 2068 (HY000): LOAD DATA LOCAL INFILE file request rejected due to restrictions on access.

解決方法

C:\Users>mysql -uroot -p --local-infile
使用這種方法登錄

報錯

mysql> load data local infile 'G:\ProgramData\MySQL\MySQL Server 8.0\Uploads\student.txt'
 -> into table student(id,name,score);
ERROR 2 (HY000): File 'G:ProgramDataMySQLMySQL Server 8.0Uploadsstudent.txt' not found (OS errno 2 - No such file or directory)

解決方法

mysql> load data local infile 'G://ProgramData/MySQL/MySQL Server 8.0/Uploads/student.txt'
 -> into table student(id,name,score);
Query OK, 8 rows affected, 2 warnings (0.01 sec)
Records: 10 Deleted: 0 Skipped: 2 Warnings: 2

結(jié)果展示

mysql> select *from student;
+------+------+-------+
| id | name | score |
+------+------+-------+
| 1 | zs | 100.0 |
| 2 | zlh | 100.0 |
| 3 | cyx | 99.1 |
| 4 | xjj | 90.0 |
| 5 | aa | 100.0 |
| 6 | alk | 20.1 |
| 7 | zml | 11.1 |
| 8 | djh | 98.0 |
| 9 | cc | 100.0 |
| 10 | pp | 20.0 |
+------+------+-------+
10 rows in set (0.00 sec)

到此這篇關(guān)于MySQL數(shù)據(jù)庫導(dǎo)入導(dǎo)出數(shù)據(jù)之報錯解答實例講解的文章就介紹到這了,更多相關(guān)MySQL數(shù)據(jù)庫導(dǎo)入導(dǎo)出數(shù)據(jù)之報錯解答內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • mysql導(dǎo)入csv的4種報錯的解決方法
  • 解決navicat遠(yuǎn)程連接mysql報錯10038的問題
  • Navicat Premiun遠(yuǎn)程連接MySQL報錯10038解決方案
  • 解決Navicat Premium 連接 MySQL 8.0 報錯"1251"的問題分析
  • mysql 主從復(fù)制如何跳過報錯
  • IDEA鏈接MySQL報錯08001和連接成功后不顯示表的問題及解決方法
  • Mysql表創(chuàng)建外鍵報錯解決方案

標(biāo)簽:隨州 甘南 錦州 荊州 滄州 資陽 黑河 吉林

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《MySQL數(shù)據(jù)庫導(dǎo)入導(dǎo)出數(shù)據(jù)之報錯解答實例講解》,本文關(guān)鍵詞  MySQL,數(shù)據(jù)庫,導(dǎo)入,導(dǎo)出,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《MySQL數(shù)據(jù)庫導(dǎo)入導(dǎo)出數(shù)據(jù)之報錯解答實例講解》相關(guān)的同類信息!
  • 本頁收集關(guān)于MySQL數(shù)據(jù)庫導(dǎo)入導(dǎo)出數(shù)據(jù)之報錯解答實例講解的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    达拉特旗| 桐乡市| 徐汇区| 盐城市| 师宗县| 乌兰浩特市| 巩留县| 永平县| 和硕县| 舞钢市| 石渠县| 礼泉县| 蓬安县| 承德市| 扬州市| 阜宁县| 东乡| 北安市| 墨江| 古田县| 通河县| 绥芬河市| 隆回县| 孙吴县| 青铜峡市| 惠来县| 普洱| 新乡市| 师宗县| 时尚| 图片| 安多县| 玛曲县| 钦州市| 松江区| 平江县| 定南县| 玉屏| 永吉县| 江北区| 安新县|