开发者

Where is MySQL dump file?

开发者 https://www.devze.com 2022-12-29 12:48 出处:网络
I have used the MySQL my开发者_JAVA技巧sqldump command. It said \"dump complete\". Where can I now find the file which contains the MySQL statments?Usually you use this command from the command line a

I have used the MySQL my开发者_JAVA技巧sqldump command. It said "dump complete". Where can I now find the file which contains the MySQL statments?


Usually you use this command from the command line and pipe the output to a file:

mysqldump db_name > backup-file.sql

Then the dump will be in the file backup-file.sql in the current directory. If you don't redirect then the output will just be displayed to the screen, not saved to a file.

0

精彩评论

暂无评论...
验证码 换一张
取 消