Hello,
I want to create a backup file using MyDump but I want to exclude Views. MyDump incorrectly adds Views to the backup file.
Any way to fix it without waiting for a fixed version?
MyDump and views
You can use the following query to get names of all table in a database:
Now you need to generate table names list from this dataset, and assign it to TMyDump.TableNames.
Code: Select all
SHOW TABLE STATUS FROM db_name WHERE NOT ENGINE IS NULL;