1

我有一个包含以下内容的脚本...

$conn = "C:\Program Files\xxx xxx\xxx xxx\MySQLConfig\MySQL Server 5.0\bin\mysqldump.exe"

$sqlargs = @("--verbose", "--user=xxx", "--password=xxx", "--port=xxx", "--add-drop-database", "--routines", "--single-transaction", "--databases", "xxx")

$bak_file = "C:\backups\bak040312.sql"

$log_file = "C:\backups\logs\L040312.log"

(&$conn $sqlargs | out-file bak_file -Encoding UTF8) 2>>$log_file

我已经使用 echoargs 来确定我的参数是否正确传递给了 exe

PS C:\scripts> echoargs $sqlargs
Arg 0 is <--verbose>
Arg 1 is <--user=xxx>
Arg 2 is <--password=xxx>
Arg 3 is <--port=xxx>
Arg 4 is <--add-drop-database>
Arg 5 is <--routines>
Arg 6 is <--single-transaction>
Arg 7 is <--databases>
Arg 8 is <xxx>

备份似乎按预期运行,但是 mysqldump 在连接到 mysql 服务器后立即抛出错误。

mysqldump.exe : -- Connecting to localhost...
At line:1 char:3
+ (& <<<< $mysqlconn $sqlargs | out-file $bak_file -Encoding UTF8) 2>>$log_file
    + CategoryInfo          : NotSpecified: (-- Connecting to localhost...:String) [], RemoteException
    + FullyQualifiedErrorId : NativeCommandError

-- Retrieving table structure for table agentactivity...
...
...
...
...
-- Retrieving rows...
-- Disconnecting from localhost...

我尝试过调用表达式而不是 &... 我不知道为什么会收到此错误。任何帮助将不胜感激。

更新 我的目标是在日志文件中包含来自 mysqldump 的详细输出和错误。

谢谢

4

0 回答 0