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

python - Does anyone know how to configure the hunpos wrapper class on nltk? -

mysql - How to insert just year and month into date field? -