<?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>zbahadir &#187; MySQL</title>
	<atom:link href="http://www.zbahadir.com/category/linux/mysql/feed" rel="self" type="application/rss+xml" />
	<link>http://www.zbahadir.com</link>
	<description>Karalama Defterim...</description>
	<lastBuildDate>Mon, 05 Jul 2010 11:45:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>MySQL Tablo oluşturma</title>
		<link>http://www.zbahadir.com/2008/08/02/mysql-tablo-olusturma.html</link>
		<comments>http://www.zbahadir.com/2008/08/02/mysql-tablo-olusturma.html#comments</comments>
		<pubDate>Sat, 02 Aug 2008 09:29:38 +0000</pubDate>
		<dc:creator>zbahadir</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.zbahadir.com/?p=146</guid>
		<description><![CDATA[<br />]]></description>
		<wfw:commentRss>http://www.zbahadir.com/2008/08/02/mysql-tablo-olusturma.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Birden fazla mySQL tablodan aynı sorgu ile veri çekme</title>
		<link>http://www.zbahadir.com/2007/10/10/birden-fazla-mysql-tablodan-ayni-sorgu-ile-veri-cekme.html</link>
		<comments>http://www.zbahadir.com/2007/10/10/birden-fazla-mysql-tablodan-ayni-sorgu-ile-veri-cekme.html#comments</comments>
		<pubDate>Tue, 09 Oct 2007 23:31:39 +0000</pubDate>
		<dc:creator>zbahadir</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.zbahadir.com/2007/10/10/birden-fazla-mysql-tablodan-ayni-sorgu-ile-veri-cekme.html</guid>
		<description><![CDATA[Ortak alanları olan yani birbiriyle bağlı alanlardan veri çekme pek çok kişinin önelikli sorunu olmuştur. Ufak bir örnekle iki veya daha fazla tabloadan veri çekebileceğimi göstermek istiyorum. 1. Önce MySQL suncuya bağlanıyoruz. mysql_connect("localhost","user","pass") or die ("MySQL bağlantı hatası"); 2. İşlem yapabileceğimiz db&#8217;mizi seçiyoruz. mysql_select_db("database") or die ("MySQL DB Seçilemedi"); 3. olarak sorgu nasıl olacak diye [...]]]></description>
		<wfw:commentRss>http://www.zbahadir.com/2007/10/10/birden-fazla-mysql-tablodan-ayni-sorgu-ile-veri-cekme.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unutulan MySQL şifresini değiştirmek</title>
		<link>http://www.zbahadir.com/2007/08/21/unutulan-mysql-sifresini-degistirmek.html</link>
		<comments>http://www.zbahadir.com/2007/08/21/unutulan-mysql-sifresini-degistirmek.html#comments</comments>
		<pubDate>Tue, 21 Aug 2007 13:28:17 +0000</pubDate>
		<dc:creator>zbahadir</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.zbahadir.com/2007/08/21/unutulan-mysql-sifresini-degistirmek.html</guid>
		<description><![CDATA[Bazı durumlarda MySQL root şifresini unutmuş olabiliriz. Unutulan şifrenin yerine yenisini belirlemek için bir kaç adımlık iş var. MySQL&#8217;i tamamen durdurun ve varsa ilgili süreçleri öldürün killall mysql veya killall mysqld Başka çalışan MySQL süreçi var mı kontrol etmek için; ps ax &#124; grep mysql Daha sonra bu işlemleri adım adım uygulayın; /usr/bin/mysqld_safe &#8211;skip-grant-tables &#38; [...]]]></description>
		<wfw:commentRss>http://www.zbahadir.com/2007/08/21/unutulan-mysql-sifresini-degistirmek.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL ve yedekleme teknikleri</title>
		<link>http://www.zbahadir.com/2007/02/12/mysql-ve-yedekleme-teknikleri.html</link>
		<comments>http://www.zbahadir.com/2007/02/12/mysql-ve-yedekleme-teknikleri.html#comments</comments>
		<pubDate>Mon, 12 Feb 2007 08:18:41 +0000</pubDate>
		<dc:creator>zbahadir</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.zbahadir.com/2007/02/12/mysql-ve-yedekleme-teknikleri/</guid>
		<description><![CDATA[MySQL Yedekleme Teknikleri YEREL: Yedekle: mysqldump -u user -p password database &#62; yedek_database.sql Sıkıştırılmış olarak Yedekle: mysqldump -u user -p password database &#124; gzip &#62; yedek_database.sql.gz Geri yükle: mysql -u user -p password database &#60; yedek_database.sql INTERNET ÜZERİNDEN: Yedekle: mysqldump -u user -h HOST -p &#8211;opt database &#62; yedek_database.sql Sıkıştırarak yedekle: mysqldump -u user -h [...]]]></description>
		<wfw:commentRss>http://www.zbahadir.com/2007/02/12/mysql-ve-yedekleme-teknikleri.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
