本文介绍了mysql 转储问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
mysql 给我以下行的语法错误...我不知道这有什么问题...
mysql gives me the syntax error with the following line... i dont know what is wrong with this...
mysqldump -u root -p root mydatabase > dumpfile.sql
我正在使用 windows vista...
i am using windows vista...
请帮助这里..谢谢..
plz help here..thnx..
推荐答案
确保您是从普通命令行而不是在 mysql 命令行中运行它.像这样:
Make sure that you are running this from the normal command line and not within the mysql command line. So like this:
C:\[path to mysqldump app] > mysqldump -u root -p root mydatabase > dumpfile.sql
不是
mysql > mysqldump -u root -p root mydatabase > dumpfile.sql
这篇关于mysql 转储问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!