The mysqldump utility will allow you to backup your entire database to a file (tables definitions, relationships and data). The following statement will extract the tablenamehere definition to a file called test.sql...
Code Snippet
mysqldump -u root -p tablenamehere > test.sql
No comments:
Post a Comment