What is the --opt ?invenio wrote: Thu Oct 10, 2024 9:19 pm The command line I am using is:Code: Select all
mysqldump -u [username] -p --opt [databasename] > [backupfilename.sql]
What is the --opt ?invenio wrote: Thu Oct 10, 2024 9:19 pm The command line I am using is:Code: Select all
mysqldump -u [username] -p --opt [databasename] > [backupfilename.sql]
https://dev.mysql.com/doc/refman/8.4/en ... qldump_optCarolC1 wrote: Thu Oct 10, 2024 9:28 pmWhat is the --opt ?invenio wrote: Thu Oct 10, 2024 9:19 pm The command line I am using is:Code: Select all
mysqldump -u [username] -p --opt [databasename] > [backupfilename.sql]
I use a Jan 2010 version of EditPlus3. I just tried Notepad++ 8.7. It has an elegant display that is easy to read, but unfortunately it seems to confirm the incomplete backup. Thanks for the idea, it was worth a try. It's weird how it jumps post numbers.invenio wrote: Fri Oct 11, 2024 5:43 am What text editor are you using? Some can't open very large files correctly. I recommend notepad÷÷.
I'm using Filezilla SFTP to download the dump to my local machine. But the current issue is, the backups I've made have been incomplete. I know it's hard to follow, my posts are so long.Kailey wrote: Fri Oct 11, 2024 1:05 pm What about using this and then FTP the file to your local machine (or wherever you want to store it).
Restores would require something different.
mysql -u<username> -p <db_name> < yoursqlfile.sql
@thecoalman Thank You! There are not enough thanks in the world.thecoalman wrote: Fri Oct 11, 2024 3:00 pm That's probably using extended inserts with multiple rows on one line, scroll to the right. Import it into test DB or on test machine to confirm.