0
Good morning, you guys.
I’m having a bizarre problem using the mysqldump
, I’ll try to explain as best I can.
I have 4 Databases, and daily a dump is made from each base, generating different files, but one of these generated files varies greatly in size, for example yesterday the file .sql
of the main base was the size of 3.2G, and today, the .sql
of the same base was generated with a size of 2G, and do not understand what may be happening.
This is the command used:
mysqldump --user=root --password=senha --databases databasetal --single-transaction > database.sql 2> database.log
(I changed some names and password for security reasons)
This command runs every day at 2:00 am, and there are never errors in the generated log, that’s all:
mysqldump: [Warning] Using a password on the command line interface can be insecure.
Who can give a light, I would be very grateful...
I imagined that there may be some routine that manipulates some table(s), but I will validate this even though I find it unlikely.
– Bruno Henrique