Home > Backend Development > PHP Tutorial > mysql数据库有关问题

mysql数据库有关问题

WBOY
Release: 2016-06-13 13:27:34
Original
757 people have browsed it

mysql数据库问题
怎样使本地新建的mysql表在发布到服务器上时依然能使用,而不会出现提示该表不存在的信息。

------解决方案--------------------
如果全是 MYISAM 类型的表,拷贝过去也是可以的
------解决方案--------------------

探讨

为了防止意外,最好不要直接复制打包的这种方法,我遇到过几次丢表的情况,即使你的所有表全是myisam,也不推荐这么做,站点表数据太多了。有的时候真的忘记忽略一些特色格式的表,这样就会造成无法弥补的损失,一般企业的资料拷贝,都是用shell命令行方式。当然也有其他方法。

拷贝: mysqldump -u用户名 -p密码 数据库名称 > 备份名.sql
恢复: mysql -u用户名 -p密……
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template