<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: MySQL Copy Table from One Database to Another</title>
	<atom:link href="http://www.edmondscommerce.co.uk/mysql/mysql-copy-table-from-one-database-to-another/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.edmondscommerce.co.uk/mysql/mysql-copy-table-from-one-database-to-another/</link>
	<description>Freelance PHP Ecommerce and SEO Developer in the UK</description>
	<lastBuildDate>Sat, 11 Feb 2012 03:49:53 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
	<item>
		<title>By: Tendai Gomo</title>
		<link>http://www.edmondscommerce.co.uk/mysql/mysql-copy-table-from-one-database-to-another/comment-page-1/#comment-3653</link>
		<dc:creator>Tendai Gomo</dc:creator>
		<pubDate>Mon, 28 Nov 2011 08:18:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.edmondscommerce.co.uk/blog/mysql/mysql-copy-table-from-one-database-to-another/#comment-3653</guid>
		<description>This is all useful stuff. Thanks so much.

What if i want to select a particular row at the front-end of an application using PHP code.  Then, by clicking a button inside the row, the data is immediately transferred to another database?</description>
		<content:encoded><![CDATA[<p>This is all useful stuff. Thanks so much.</p>
<p>What if i want to select a particular row at the front-end of an application using PHP code.  Then, by clicking a button inside the row, the data is immediately transferred to another database?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JD</title>
		<link>http://www.edmondscommerce.co.uk/mysql/mysql-copy-table-from-one-database-to-another/comment-page-1/#comment-3578</link>
		<dc:creator>JD</dc:creator>
		<pubDate>Wed, 19 Oct 2011 23:58:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.edmondscommerce.co.uk/blog/mysql/mysql-copy-table-from-one-database-to-another/#comment-3578</guid>
		<description>these suggestions are overcomplicated. its pretty easy to copy the table create statement, run it in the new db and then run:

INSERT INTO newDB.table
SELECT *
FROM oldDB.table;

that copies all the indices and other table characteristics. plus, you don&#039;t have to mess with drop table. i just did this for nine tables in less than 15 min.

if you are asking, &#039;how can i copy the CREATE statement&#039; you should get Sequel Pro or similarly awesome UI for your DB.</description>
		<content:encoded><![CDATA[<p>these suggestions are overcomplicated. its pretty easy to copy the table create statement, run it in the new db and then run:</p>
<p>INSERT INTO newDB.table<br />
SELECT *<br />
FROM oldDB.table;</p>
<p>that copies all the indices and other table characteristics. plus, you don&#8217;t have to mess with drop table. i just did this for nine tables in less than 15 min.</p>
<p>if you are asking, &#8216;how can i copy the CREATE statement&#8217; you should get Sequel Pro or similarly awesome UI for your DB.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ano</title>
		<link>http://www.edmondscommerce.co.uk/mysql/mysql-copy-table-from-one-database-to-another/comment-page-1/#comment-3505</link>
		<dc:creator>ano</dc:creator>
		<pubDate>Mon, 26 Sep 2011 13:56:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.edmondscommerce.co.uk/blog/mysql/mysql-copy-table-from-one-database-to-another/#comment-3505</guid>
		<description>the script will work if you are in the db other than the one you are altering-
Example
You want to copy A.a into B.a
SCRIPT:
&gt;use B;
&gt;drop table if exists `B.a`;
&gt;use A;
&gt;create table `B.a` select * from `a`;</description>
		<content:encoded><![CDATA[<p>the script will work if you are in the db other than the one you are altering-<br />
Example<br />
You want to copy A.a into B.a<br />
SCRIPT:<br />
&gt;use B;<br />
&gt;drop table if exists `B.a`;<br />
&gt;use A;<br />
&gt;create table `B.a` select * from `a`;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: newbie</title>
		<link>http://www.edmondscommerce.co.uk/mysql/mysql-copy-table-from-one-database-to-another/comment-page-1/#comment-3353</link>
		<dc:creator>newbie</dc:creator>
		<pubDate>Fri, 08 Jul 2011 20:16:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.edmondscommerce.co.uk/blog/mysql/mysql-copy-table-from-one-database-to-another/#comment-3353</guid>
		<description>Hi,

I have to copy only one column from one mysql db table to another running on different server. They have given me a wsdl for updating in destination db. the source database is in local environment. Can anyone please tell me how do I retrieve the data from sql convert into a SOAP webservice as defined by the wsdl? I have to do this in php. And I&#039;m newbie.

Any help would be greatly appreciated.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have to copy only one column from one mysql db table to another running on different server. They have given me a wsdl for updating in destination db. the source database is in local environment. Can anyone please tell me how do I retrieve the data from sql convert into a SOAP webservice as defined by the wsdl? I have to do this in php. And I&#8217;m newbie.</p>
<p>Any help would be greatly appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andre</title>
		<link>http://www.edmondscommerce.co.uk/mysql/mysql-copy-table-from-one-database-to-another/comment-page-1/#comment-3342</link>
		<dc:creator>Andre</dc:creator>
		<pubDate>Wed, 06 Jul 2011 09:36:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.edmondscommerce.co.uk/blog/mysql/mysql-copy-table-from-one-database-to-another/#comment-3342</guid>
		<description>Hi,

is there any way to copy the indexes as well??

Cheers
Andre</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>is there any way to copy the indexes as well??</p>
<p>Cheers<br />
Andre</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jairaj</title>
		<link>http://www.edmondscommerce.co.uk/mysql/mysql-copy-table-from-one-database-to-another/comment-page-1/#comment-3269</link>
		<dc:creator>jairaj</dc:creator>
		<pubDate>Thu, 09 Jun 2011 10:25:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.edmondscommerce.co.uk/blog/mysql/mysql-copy-table-from-one-database-to-another/#comment-3269</guid>
		<description>Hi,

My database is on a server. It gets update every time and keep on filling the rows in my database. My friend&#039;s database is on different server. I want to update my friend&#039;s database as soon as my database gets any update. Please help me......</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>My database is on a server. It gets update every time and keep on filling the rows in my database. My friend&#8217;s database is on different server. I want to update my friend&#8217;s database as soon as my database gets any update. Please help me&#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SM</title>
		<link>http://www.edmondscommerce.co.uk/mysql/mysql-copy-table-from-one-database-to-another/comment-page-1/#comment-3200</link>
		<dc:creator>SM</dc:creator>
		<pubDate>Wed, 13 Apr 2011 07:38:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.edmondscommerce.co.uk/blog/mysql/mysql-copy-table-from-one-database-to-another/#comment-3200</guid>
		<description>I would like to know how to update a table after it has been copied from another table. I mean that i need to update the new table with the other&#039;s new inerted rows on a daily or monthly basis for example i.e. incrementally, does anyone know this can be done ??</description>
		<content:encoded><![CDATA[<p>I would like to know how to update a table after it has been copied from another table. I mean that i need to update the new table with the other&#8217;s new inerted rows on a daily or monthly basis for example i.e. incrementally, does anyone know this can be done ??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: atul</title>
		<link>http://www.edmondscommerce.co.uk/mysql/mysql-copy-table-from-one-database-to-another/comment-page-1/#comment-3181</link>
		<dc:creator>atul</dc:creator>
		<pubDate>Fri, 25 Mar 2011 13:12:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.edmondscommerce.co.uk/blog/mysql/mysql-copy-table-from-one-database-to-another/#comment-3181</guid>
		<description>this query doesnt work for my sql
CREATE TABLE `backup_db.backup_table` SELECT * FROM `live_db.live_table`; 

i tried with my database and table</description>
		<content:encoded><![CDATA[<p>this query doesnt work for my sql<br />
CREATE TABLE `backup_db.backup_table` SELECT * FROM `live_db.live_table`; </p>
<p>i tried with my database and table</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vincent</title>
		<link>http://www.edmondscommerce.co.uk/mysql/mysql-copy-table-from-one-database-to-another/comment-page-1/#comment-3070</link>
		<dc:creator>Vincent</dc:creator>
		<pubDate>Wed, 26 Jan 2011 05:42:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.edmondscommerce.co.uk/blog/mysql/mysql-copy-table-from-one-database-to-another/#comment-3070</guid>
		<description>how about if i want to copy the whole database in mysql? without using backup? just a query..help please...</description>
		<content:encoded><![CDATA[<p>how about if i want to copy the whole database in mysql? without using backup? just a query..help please&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aom</title>
		<link>http://www.edmondscommerce.co.uk/mysql/mysql-copy-table-from-one-database-to-another/comment-page-1/#comment-3059</link>
		<dc:creator>aom</dc:creator>
		<pubDate>Mon, 17 Jan 2011 12:50:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.edmondscommerce.co.uk/blog/mysql/mysql-copy-table-from-one-database-to-another/#comment-3059</guid>
		<description>thank you very much

may I edit
CREATE TABLE `new`.`table` SELECT * FROM `old`.`table`;</description>
		<content:encoded><![CDATA[<p>thank you very much</p>
<p>may I edit<br />
CREATE TABLE `new`.`table` SELECT * FROM `old`.`table`;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

