How can I take MySQL dumps with some tables excluded from the database -


we have database in 1 specific table gets large fast. when taking dump , restoring database on server, takes lot of time due large size. want exclude specific table when taking dump. ideas ?

mysqldump has --ignore-table option, like:

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

Comments

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -