MySQL數(shù)據(jù)庫(kù)導(dǎo)入導(dǎo)出數(shù)據(jù)之報(bào)錯(cuò)解答實(shí)例講解
導(dǎo)出數(shù)據(jù)
報(bào)錯(cuò)
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ù)
報(bào)錯(cuò)
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)
報(bào)錯(cuò)
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 使用這種方法登錄
報(bào)錯(cuò)
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ù)庫(kù)導(dǎo)入導(dǎo)出數(shù)據(jù)之報(bào)錯(cuò)解答實(shí)例講解的文章就介紹到這了,更多相關(guān)MySQL數(shù)據(jù)庫(kù)導(dǎo)入導(dǎo)出數(shù)據(jù)之報(bào)錯(cuò)解答內(nèi)容請(qǐng)搜索本站以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持本站!
版權(quán)聲明:本站文章來源標(biāo)注為YINGSOO的內(nèi)容版權(quán)均為本站所有,歡迎引用、轉(zhuǎn)載,請(qǐng)保持原文完整并注明來源及原文鏈接。禁止復(fù)制或仿造本網(wǎng)站,禁止在非www.sddonglingsh.com所屬的服務(wù)器上建立鏡像,否則將依法追究法律責(zé)任。本站部分內(nèi)容來源于網(wǎng)友推薦、互聯(lián)網(wǎng)收集整理而來,僅供學(xué)習(xí)參考,不代表本站立場(chǎng),如有內(nèi)容涉嫌侵權(quán),請(qǐng)聯(lián)系alex-e#qq.com處理。