jamescalvin Posted January 26, 2007 Share Posted January 26, 2007 Hey PHP Freaks,How do I copy (back up) a table using MySQL Query Browser? In phpMyadmin it's a really easy task and I'm sure it is with MySQL Query Browser but I just can't seem to figure it out. Can someone help me with this?ThanksJC Quote Link to comment https://forums.phpfreaks.com/topic/35866-mysql-query-browser/ Share on other sites More sharing options...
fenway Posted January 26, 2007 Share Posted January 26, 2007 Don't know if the new one has such a tool... I always use SQylog. Quote Link to comment https://forums.phpfreaks.com/topic/35866-mysql-query-browser/#findComment-170035 Share on other sites More sharing options...
jamescalvin Posted January 26, 2007 Author Share Posted January 26, 2007 Do you have a website for them? Quote Link to comment https://forums.phpfreaks.com/topic/35866-mysql-query-browser/#findComment-170141 Share on other sites More sharing options...
bibby Posted January 28, 2007 Share Posted January 28, 2007 [code]create table copyselect * from original;[/code]done. Quote Link to comment https://forums.phpfreaks.com/topic/35866-mysql-query-browser/#findComment-170827 Share on other sites More sharing options...
artacus Posted January 28, 2007 Share Posted January 28, 2007 Are you backing up to another table or db; or are you wanting to do a dump? Use mysqldump for the latter. (Its a command line tool, should be in your ..mysql/bin directory.) Quote Link to comment https://forums.phpfreaks.com/topic/35866-mysql-query-browser/#findComment-171035 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.