Hi there In my database I have some tables and views. How can I export all the tables( and not the views ) from my database from command line?
|
You can use mysqldump with the option --ignore-table to exclude the views individually. Or use mysqldump and remove the views with an application/manually. grep might be an option:
|
|||
|
|
|
The current implementation mysqldump won't create dumps without views -- and furthermore, (last time I checked) views are actually created twice -- once as a table, then the table is dropped and replaced with a view. So you can't just filter out the "CREATE VIEW" command, unless that behavior has been modified. However, mysqldump will take a list of tables as parameters following the database name. Something like this:
|
|||
|
|
|
To ignore a single view from your DB for Dump:
To ignore multiple view from your Db for Dump:
NOTE: to ignore multiple views for dump use |
||||
|
|
|
Backuping a single table from a database
Restoring a single table from a database dump
|
||||
|
|
|
Usage
This is a pretty old script of mine. Someone could easily adapt this to use PDO if you do not have access to the mysql functions.
|
|||
|
|