<?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>Samet Kilictas&#039;s Blog &#187; Mysql</title>
	<atom:link href="http://samet.kilictas.com/tag/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://samet.kilictas.com</link>
	<description>J2E, PHP, Linux, PL/SQL and other random rants</description>
	<lastBuildDate>Sun, 06 Nov 2011 04:36:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>How to Backup and Restore a MySQL Database</title>
		<link>http://samet.kilictas.com/how-to-backup-and-restore-a-mysql-database/</link>
		<comments>http://samet.kilictas.com/how-to-backup-and-restore-a-mysql-database/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 08:42:54 +0000</pubDate>
		<dc:creator>Samet Kilictas</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://samet.kilictas.com/?p=334</guid>
		<description><![CDATA[To make a database backup using the MySQL command-line utilities, execute the following command: $ mysqldump -u username -p &#8211;opt dbname &#62; dump.sql It will ask you for password because we used -p paramater over there. If the MySQL programs are not in your path, you will need to manually specify the location of the [...]]]></description>
			<content:encoded><![CDATA[<p>To make a database backup using the MySQL command-line utilities, execute the following command:</p>
<blockquote><p>$ mysqldump -u username -p &#8211;opt dbname &gt; dump.sql</p></blockquote>
<p>It will ask you for password because we used -p paramater over there. If the MySQL programs are not in your path, you will need to manually specify the location of the mysqldump program:</p>
<blockquote><p>$ /<span style="text-decoration: line-through;">path-to-your-mysql-bin</span>/mysqldump -u username -p &#8211;opt dbname &gt; dump.sql</p></blockquote>
<p>Download the dump.sql and keep it in a safe place (CDR, Zip disk, etc).</p>
<p>If you need to restore your database, you can do so like this:</p>
<blockquote><p>$ mysql -u username -p dbname &lt; dump.sql</p></blockquote>
<p>This is the simples way to restore and backup your database.</p>
<a href='http://twitter.com/share?url=http%3A%2F%2Fsamet.kilictas.com%2F%3Fp%3D334&count=vertical&related=&text=How%20to%20Backup%20and%20Restore%20a%20MySQL%20Database' class='twitter-share-button' data-text='How to Backup and Restore a MySQL Database' data-url='http://samet.kilictas.com/?p=334' data-counturl='http://samet.kilictas.com/how-to-backup-and-restore-a-mysql-database/' data-count='vertical' data-via='sametkilictas'>Tweet</a>]]></content:encoded>
			<wfw:commentRss>http://samet.kilictas.com/how-to-backup-and-restore-a-mysql-database/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Generate ER diagram by appliying reverse enginnering technique</title>
		<link>http://samet.kilictas.com/generate-er-diagram-by-appliying-reverse-enginnering-technique/</link>
		<comments>http://samet.kilictas.com/generate-er-diagram-by-appliying-reverse-enginnering-technique/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 07:52:47 +0000</pubDate>
		<dc:creator>Samet Kilictas</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Diagram]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[Reverse Engineering]]></category>
		<category><![CDATA[Workbench]]></category>

		<guid isPermaLink="false">http://samet.kilictas.com/?p=320</guid>
		<description><![CDATA[Yesterday, i needed to generate an ER diagram for one of my databases that i am working on. Well, i didn&#8217;t meet with Mysql Workbench visual database tool before. It made my day. MySQL Workbench is a visual database design application that can be used to efficiently design, manage and document database schemata. And it [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://samet.kilictas.com/wp-content/uploads/2009/06/mysql-workbench-oss.png"><img class="size-full wp-image-321 alignleft" style="margin: 5px;" title="mysql-workbench-oss" src="http://samet.kilictas.com/wp-content/uploads/2009/06/mysql-workbench-oss.png" alt="" width="250" height="145" /></a><br />
Yesterday, i needed to generate an ER diagram for one of my databases that i am working on. Well, i didn&#8217;t meet with Mysql Workbench visual database tool before. It made my day. MySQL Workbench is a visual database design application that can be used to efficiently design, manage and document database schemata. And it is available under GPL license. This application is allowing you to generate a diagram for a database using its reverse engineering tool. And the good thing is after generating process you may modify it anyway. I think i am going to use this application in future. For detailed information go in this link below :</p>
<p><a href="http://dev.mysql.com/downloads/workbench/5.1.html">http://dev.mysql.com/downloads/workbench/5.1.html</a></p>
<p>Keep in touch foxes  ( :</p>
<a href='http://twitter.com/share?url=http%3A%2F%2Fsamet.kilictas.com%2F%3Fp%3D320&count=vertical&related=&text=Generate%20ER%20diagram%20by%20appliying%20reverse%20enginnering%20technique' class='twitter-share-button' data-text='Generate ER diagram by appliying reverse enginnering technique' data-url='http://samet.kilictas.com/?p=320' data-counturl='http://samet.kilictas.com/generate-er-diagram-by-appliying-reverse-enginnering-technique/' data-count='vertical' data-via='sametkilictas'>Tweet</a>]]></content:encoded>
			<wfw:commentRss>http://samet.kilictas.com/generate-er-diagram-by-appliying-reverse-enginnering-technique/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What is PHP?</title>
		<link>http://samet.kilictas.com/what-is-php/</link>
		<comments>http://samet.kilictas.com/what-is-php/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 09:24:37 +0000</pubDate>
		<dc:creator>Samet Kilictas</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[what is php]]></category>

		<guid isPermaLink="false">http://samet.kilictas.com/?p=273</guid>
		<description><![CDATA[First of all i need to say that PHP is a language which you are going to in love with. (That is of course if you are a developer ) PHP stands for PHP: Hypertext Processsor. To start with it you should have knowledge about basic scripting and HTML language. PHP is totaly free to [...]]]></description>
			<content:encoded><![CDATA[<p>First of all i need to say that PHP is a language which you are going to in love with. (That is of course if you are a developer ) <strong>PHP </strong>stands for <strong>P</strong>HP: <strong>H</strong>ypertext <strong>P</strong>rocesssor.</p>
<p>To start with it you should have knowledge about basic scripting and HTML language.</p>
<p>PHP is totaly free to use and download that is because it is an open source. Well there are many scripting languages on the earth. PHP is server-side scripting language. It means codes are executing on the server-side not in the client-side.</p>
<p style="text-align: center;"><a href="http://samet.kilictas.com/wp-content/uploads/2009/04/server-side-php.gif"><img class="alignnone size-medium wp-image-274" title="server-side-php" src="http://samet.kilictas.com/wp-content/uploads/2009/04/server-side-php-276x300.gif" alt="" width="276" height="300" /></a></p>
<p>Thus, clients cannot see your php script, a client can only see pure html content. Now i can say PHP is secure langauge since user cannot see your PHP code. How it works? For instance, a client (user) requests a webpage from your server. Then your server executes php code and returns pure html content to the user. And user have no chance to see what is going on at the server-side.</p>
<p><em>Extensions : .php, .php3, .phtml</em></p>
<p><span id="more-273"></span></p>
<p><strong>Why PHP?</strong></p>
<p>It works efficiently on server-side. PHP language supports many database programs such as MySQL, ISS, Informix, Oracle, Sybase, Solid,   PostgreSQL, Generic ODBC, etc. And yes it is cross-platform. It runs on many-platforms MacOS, Windows, Linux, Unix, etc. and compatible with almost all servers.</p>
<p>I will keep writing on PHP topic with more details.</p>
<a href='http://twitter.com/share?url=http%3A%2F%2Fsamet.kilictas.com%2F%3Fp%3D273&count=vertical&related=&text=What%20is%20PHP%3F' class='twitter-share-button' data-text='What is PHP?' data-url='http://samet.kilictas.com/?p=273' data-counturl='http://samet.kilictas.com/what-is-php/' data-count='vertical' data-via='sametkilictas'>Tweet</a>]]></content:encoded>
			<wfw:commentRss>http://samet.kilictas.com/what-is-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

