From d3cc366d193bc520589bba710e4937a2cbf9d28a Mon Sep 17 00:00:00 2001 From: colben Date: Thu, 7 May 2026 19:02:22 +0800 Subject: [PATCH] update --- content/post/mysql-backup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/post/mysql-backup.md b/content/post/mysql-backup.md index 366f401..a99e252 100644 --- a/content/post/mysql-backup.md +++ b/content/post/mysql-backup.md @@ -178,7 +178,7 @@ GRANT PROCESS, RELOAD, LOCK TABLES ON *.* TO shell@localhost; ```bash $MYSQLSH -e 'util.dumpInstance("/data/backup/full", {compression: "zstd"})' # includeSchemas/excludeSchemas: ["db1", "db2"], 指定/忽略备份某些库 - # includeTables/excludeTables: ["db1.tb1", "db2.tb2"], 指定/忽略备份某些库 + # includeTables/excludeTables: ["db1.tb1", "db2.tb2"], 指定/忽略备份某些表 # routines/users/triggers: true, 备份函数和存储过程/账号/触发器 ```