Ryan Gil Posted January 14, 2020 Share Hello, Just a question, whats is the best process to restore a database when the database has a big size ? Quote Link to post
Patrick Posted January 14, 2020 Share The best is to make with your console, the problem is your OS has a time limit and a size limit to upload your database fixed in php.ini Quote Link to post
Patrick Posted January 14, 2020 Share You can try that : Backing up a single database mysqldump -u username -p database_name > data-dump.sql Restoring or loading the database mysql -u username -p new_database < data-dump.sql 1 Quote Link to post
Ryan Gil Posted January 15, 2020 Author Share (edited) @Patrick Ok thank you for the code. Edited January 15, 2020 by Ryan Gil Quote Link to post
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.