如何上传新的 Mysql 数据库表?
我被分配了一个下载的 xyz.sql 文件(它重新创建 驻留在另一台服务器上的表和数据。
我在 Mac 10.6.2 上运行 MAMP 1.8.4。
我终于在命令行中使用以下命令得到了 mysql 提示符: /Applications/MAMP/Library/bin/mysql mysql –uroot –proot
现在,什么命令可以将该文件作为输入,给我的 Mysql 服务器要使用的新数据库名称(xyz),并上传 整个事情?
我的意思是 - 我的 phpMyadmin 还有其他数据库 看到了。我希望它现在可以看到这个新的 xyz 数据库下一个 当我打开 phpMyadmin 时。
I've been assigned a downloaded xyz.sql file (which recreates
tables and data that resided on another server.
I have running MAMP 1.8.4 on my Mac 10.6.2.
I finally got my mysql prompt at the command line using:
/Applications/MAMP/Library/bin/mysql mysql –uroot –proot
Now, what command can take that file for input, give my Mysql
server a new database name to use (xyz), and upload the
whole thing?
What I mean is - I have other databases that my phpMyadmin
sees. I want it to now see this new xyz database the next
time I open phpMyadmin.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要执行该文件,请在 mysql 提示符处:
source
如果需要先切换到数据库 xyz,命令为:
use xyz
To execute the file, at the mysql prompt:
source <filename>
If you need to switch to database xyz first, the command is:
use xyz
更改为存储 sql 文件的目录,然后您需要执行类似的操作
change into the directory where the sql file is stored, then you'll need to execute something like