<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ToTheTech.Net - The Webmaster Guide &#187; MySQL</title>
	<atom:link href="http://www.tothetech.net/tag/mysql/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tothetech.net</link>
	<description>We write all about Webmaster needs.</description>
	<lastBuildDate>Sat, 04 Sep 2010 05:00:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>MySQL GUI Tools</title>
		<link>http://www.tothetech.net/software/mysql-gui-tools.html</link>
		<comments>http://www.tothetech.net/software/mysql-gui-tools.html#comments</comments>
		<pubDate>Mon, 04 May 2009 12:05:32 +0000</pubDate>
		<dc:creator>Karthikeyan</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://www.tothetech.net/?p=80</guid>
		<description><![CDATA[There are many software packages which contains PHP, MySQL and extra tools where you can run without configuring PHP and MySQL inside apache server. But if you are learning MySQL the only way to get experienced with MySQL is MySQL console where you can work with MySQL commands If you want to make work easier [...]]]></description>
			<content:encoded><![CDATA[<p>There are many <a title="Free Software Packages" href="http://www.tothetech.net/software/free-server-side-software.html" target="_blank">software packages</a> which contains PHP, MySQL and extra tools where you can run without configuring PHP and MySQL inside apache server. But if you are learning MySQL the only way to get experienced with MySQL is MySQL console where you can work with MySQL commands</p>
<p><span id="more-80"></span>If you want to make work easier for creating and managing database via  GUI tool. MySQL offers free GUI tool with MySQL Administrator, MySQL migration tool kit and MySQL Query browser.</p>
<p><strong>MySQL Administrator</strong></p>
<p><img title="MySQL Administrator" src="http://images.tothetech.com/2009/05/mysql-administrator.jpg" alt="MySQL Administrator" /></p>
<p>MySQL administrator allows to monitor server logs, server connections and server information. MySQL administrator tool can be used to backup and restore whole MySQL database. It is used to create new schema where you can create new table, alter edit, drop and maintain tables.</p>
<p><strong>MySQL Migration Tool Kit</strong></p>
<p><img title="MySQL Migration Tool Kit" src="http://images.tothetech.com/2009/05/mysql-migration-toolkit.jpg" alt="MySQL Migration Tool Kit" /></p>
<p>MySQL GUI tools contain MySQL migration tool kit where you can convert most famous database sources into MySQL database in minutes.</p>
<p><strong>MySQL Query Browser</strong></p>
<p><img title="MySQL Query Browser" src="http://images.tothetech.com/2009/05/mysql-query-browser.jpg" alt="MySQL Query Browser" /></p>
<p>MySQL query browser which useful for learners and developers, by just drag and drop tables and database MySQL query browser writes queries automatically and also contains MySQL Syntax with example. MySQL query browser made easy to manipulate MySQL database.</p>
<p><strong><a title="MySQL Tools" href="http://dev.mysql.com/downloads/gui-tools/5.0.html" target="_blank">MySQL GUI Tools download</a></strong> available for Windows, Linux distribution and Mac OSX.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tothetech.net/software/mysql-gui-tools.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Copy Table Content to New Table in MySQL</title>
		<link>http://www.tothetech.net/mysql/copy-table-content-to-new-table-in-mysql.html</link>
		<comments>http://www.tothetech.net/mysql/copy-table-content-to-new-table-in-mysql.html#comments</comments>
		<pubDate>Fri, 01 May 2009 08:53:47 +0000</pubDate>
		<dc:creator>Karthikeyan</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[table]]></category>

		<guid isPermaLink="false">http://www.tothetech.net/?p=66</guid>
		<description><![CDATA[If there is a database which contains user name, password and other fields. But how to take copy of table contents to new table. If you are a DBA administrator you should have a copy of original database or table. Let&#8217;s see here how to copy the contents of a table into a new table. [...]]]></description>
			<content:encoded><![CDATA[<p>If there is a database which contains user name, password and other fields. But how to take copy of table contents to new table. <span id="more-66"></span><br />
If you are a DBA administrator you should have a copy of original database or table. Let&#8217;s see here how to copy the contents of a table into a new table.</p>
<p>MySQL query to copy table content to new table.</p>
<pre>
<code>mysql&gt; CREATE TABLE studentbak LIKE ttt_ria.student;
Query OK, 0 rows affected (0.03 sec)

mysql&gt; insert studentbak select * from ttt_ria.student;
Query OK, 4 rows affected (0.02 sec)
Records: 4  Duplicates: 0  Warnings: 0

mysql&gt; select * from studentbak;
+------+--------------+------+-----------------+
| id   | name         | age  | dept            |
+------+--------------+------+-----------------+
|    1 | karthikeyan  |   22 | Internet        |
|    2 | Arun Shakthi |   22 | Consultancy     |
|    3 | manikandan   |   22 | Management      |
|    4 | meena        |   22 | Human Resources |
+------+--------------+------+-----------------+
4 rows in set (0.00 sec)
</code>
</pre>
<p>Here ttt_ria is database and student is a old content table and studentbak is a new table.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tothetech.net/mysql/copy-table-content-to-new-table-in-mysql.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Accessing MySQL via SSH or Shell</title>
		<link>http://www.tothetech.net/mysql/accessing-mysql-via-ssh-or-shell.html</link>
		<comments>http://www.tothetech.net/mysql/accessing-mysql-via-ssh-or-shell.html#comments</comments>
		<pubDate>Mon, 27 Apr 2009 17:22:47 +0000</pubDate>
		<dc:creator>Karthikeyan</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://www.tothetech.net/?p=34</guid>
		<description><![CDATA[If you are using any web host or server they may provide shell access most of the shared web hosting providers will not give shell access due to security reasons. If you own a  server or shell access and like to work MySQL commands in shell. Let&#8217;s see how to connect MySQL via SSH or [...]]]></description>
			<content:encoded><![CDATA[<p>If you are using any web host or server they may provide shell access most of the shared web hosting providers will not give shell access due to security reasons.</p>
<p>If you own a  server or shell access and like to work MySQL commands in shell. Let&#8217;s see how to connect MySQL via SSH or Shell.</p>
<p><span id="more-34"></span><strong>Command to connect MySQL via Shell</strong></p>
<p>mysql -u(username) -h (hostname) -p(password)</p>
<pre>
<code>user@tothetech.net [~]# mysql -u username -h localhost -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 35642
Server version: 5.0.67-community MySQL Community Edition (GPL)

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql&gt;</code>
</pre>
<p>If you are using root log in in SSH or Shell access then no need to mention about password for connecting MySQL in SSH</p>
<pre>
<code>root@server [~]# mysql -u root -h localhost
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 35874
Server version: 5.0.67-community MySQL Community Edition (GPL)

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql&gt;</code>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.tothetech.net/mysql/accessing-mysql-via-ssh-or-shell.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
