2011-02-23 58 views
0

我們有一個數據庫,其中一個特定的表格非常快速地變得非常大。當進行轉儲然後在另一臺服務器上恢復該數據庫時,由於大型文件的原因,需要很長時間。我想在轉儲時排除此特定表。有任何想法嗎 ?如何將MySQL轉儲數據庫中排除的某些表格

回答

1

的mysqldump有--ignore-table選項,類似:

mysqldump -p -u username nameofdatabase --ignore-table=verybigtable 
0

使用 - 忽略表標誌。

--ignore-table=name Do not dump the specified table. To specify more than one 
         table to ignore, use the directive multiple times, once 
         for each table. Each table must be specified with both 
         database and table names, e.g., 
         --ignore-table=database.table. 
0

大多數圖形客戶端(如phpmyadmin)爲您提供排除選項。

相關問題