From d9b63fce09c249b778cce8f14cec6cf3e762d38e Mon Sep 17 00:00:00 2001 From: simonzhangsz Date: Fri, 1 Sep 2023 13:29:27 +0800 Subject: [PATCH] d --- tools/misc/dumpdb.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/misc/dumpdb.sh b/tools/misc/dumpdb.sh index 1febe226..7713edfe 100644 --- a/tools/misc/dumpdb.sh +++ b/tools/misc/dumpdb.sh @@ -14,7 +14,7 @@ upgdir=${EmsBEDir}/database/upgrade tables_c=tables_c.lst tables_s=tables_s.lst -mysql -u ${user} -p${password} -D ${dbname} -e "show tables ; " > tables.lst +mysql -h $(host) -u ${user} -p${password} -D ${dbname} -e "show tables ; " > tables.lst # dump table struct and data while read line