mysql的版本 5.1.73 Source distribution
在vps下使用yum命令安装的,服务器用的centos,
运行 mysqldump –help;
出现以下错误提示:
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near “mysqldump –help” at line 1
进行备份,也提示这样的错误。
mysqldump -uroot -p database > database.sql;
提示有语法错误:
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near “mysqldump -uroot -p database > database.sql” at line 1
服务器配置的jsp环境,没有phpmyadmin,莫非数据库都备份不了了?望请高手解答。
在vps下使用yum命令安装的,服务器用的centos,
运行 mysqldump –help;
出现以下错误提示:
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near “mysqldump –help” at line 1
进行备份,也提示这样的错误。
mysqldump -uroot -p database > database.sql;
提示有语法错误:
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near “mysqldump -uroot -p database > database.sql” at line 1
服务器配置的jsp环境,没有phpmyadmin,莫非数据库都备份不了了?望请高手解答。
解决方案
14
这个命令实在操作系统命令行下运行的,你不会搞错了吧
[root@localhost ~]# mysqldump –help;
mysqldump Ver 10.13 Distrib 5.5.20, for Linux (i686)
Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
13
mysqldump –help
是操作系统下命令,不是在 mysql 命令行中使用的。
是操作系统下命令,不是在 mysql 命令行中使用的。
13
估计是运行在MYSQL下了,命令后都加了分号