is it possible to import sql file to mysql database from a url
I want to import an SQL file to my database. The problem is that I can't get this file to my computer because it is too big file.
I want to import it from the server through it's URL开发者_C百科 using MySQL or phpMyAdmin
Is it possible? How can I do that?
Yes, it is possible if the file is accessible through a url
curl 'http://whatever' | mysql -u username -p db_name
精彩评论