I want to view the contents of a .mysql file created by using mysqldump. Short of reading it back into a database using mysql, is there a way just to view what tables are in it?
Thanks
sb
mysqldump creates text files containing all the SQL statements necessary to recreate and populate the tables concerned. So, you can open the file in a text editor and search for CREATE TABLE statements.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.