How do I fix the error that occurs when I enter the file path and date in mysqldump? I ran the mysqldump command as follows in cmd: set _my_datetime=%date:-=% mysqldump -u root -p –all-databases -pMyPassword > C:Program FilesMariaDB 10.4databackup%_my_datetime%.sql But the result is: I wonder how to modify the above command in Windows server environment. Answer Because the %date:-=% will
Tag: dump
What’s “.” in postgresql dump file?
I have a Postgresql dump file which i’m trying to restore. I get this error regarding an invalid data i guess. ERROR: invalid input syntax for integer: “.” and when i checked the file, there are …