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 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. 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? 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. 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.) Link to comment https://forums.phpfreaks.com/topic/35866-mysql-query-browser/#findComment-171035 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.