windows 7 - problem Mysqldump from a bat file -
windows 7 - problem Mysqldump from a bat file -
i have 1 bat file on windows7, backup several tables database, this:
"c:\gesticom\mysql\bin\mysqldump.exe" -uuser -ppsswd bbdddc [clientes, usuarios, proyectos, proveedores, areas_negocio, costes] --opt > tmp.sql
when execute bat have seen code changed this:
"c:\gesticom\mysql\bin\mysqldump.exe" -uuser -ppsswd bbdddc [clientes, usuarios, proyectos, proveedores, areas_negocio, costes] --opt 1>tmp.sql
someone knows why appears number "1"? mysqldump command doesn't work :(
thank you!
that canonical representation of command cmd
. doesn't impact executed and, in fact, identical command provided.
it simply says stream 1 (stdout) redirected tmp.sql
. if dump not work, wouldn't have worked before, either.
windows-7 batch-file mysqldump
Comments
Post a Comment