如何保存mysql查询' SHOW STATUS'进入txt文件。我用过 - >
MySQL -u root -p -e" SHOW STATUS;" > NAME.txt - >但它不起作用。
答案 0 :(得分:1)
我刚刚创建了一个名为c:\dev\in.txt
的命令文件,并将结果转储到c:\dev\out21.txt
来说明这一点。
in.txt
包含1行,结尾处有换行符:
show status;
mysql -uUserName -p <c:\dev\in.txt >c:\dev\out21.txt
或
mysql -uUserName -p < /path/to/in.txt >/path/to/out21.txt
Variable_name Value
Aborted_clients 4
Aborted_connects 64
Binlog_cache_disk_use 0
Binlog_cache_use 0
Binlog_stmt_cache_disk_use 0
Binlog_stmt_cache_use 0
...
...
...