up vote 1 down vote favorite
1
share [g+] share [fb]

I want to back up only the Views with mysqldump.

Is this possible?

If so, how?

link|improve this question

feedback

1 Answer

By backup, I'm assuming you mean just the definition without the data.

It seems that right now mysqldump doesn't distinguish between VIEWs and TABLEs, so perhaps the best thing to do is to either specify the VIEWs explicitly on the command line to mysqldump or figure out this list dynamically before mysqldump and then passing it down like before.

You can get all the VIEWs in a specific database using this query:

SHOW FULL TABLES WHERE table_type='view';

link|improve this answer
thanks,the command was usefull. – hd. Nov 24 '10 at 8:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.