<?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>枫子博客mysql</title>
	<atom:link href="http://www.imfeng.com/tag/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.imfeng.com</link>
	<description>很枫的那种 闲人请勿靠近</description>
	<lastBuildDate>Fri, 30 Jul 2010 17:29:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>通过phpmyadmin修改mysql密码</title>
		<link>http://www.imfeng.com/use-phpmyadmin-edit-mysql-password/</link>
		<comments>http://www.imfeng.com/use-phpmyadmin-edit-mysql-password/#comments</comments>
		<pubDate>Tue, 04 May 2010 06:53:36 +0000</pubDate>
		<dc:creator>枫子</dc:creator>
				<category><![CDATA[SQL数据库]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[phpmyadmin]]></category>

		<guid isPermaLink="false">http://www.imfeng.com/?p=192</guid>
		<description><![CDATA[服务器－权限－root或其它用户－编辑权限－更改密码－密码－输入密码－执行
so easy 竟然会忘记。
Here is no comments yet by the time  your rss reader get this, Do you want to be the first commentor? Hurry up ]]></description>
			<content:encoded><![CDATA[<p>服务器－权限－root或其它用户－编辑权限－更改密码－密码－输入密码－执行</p>
<p>so easy 竟然会忘记。</p>
Here is no comments yet by the time  your rss reader get this, Do you want to be the first commentor? Hurry up ]]></content:encoded>
			<wfw:commentRss>http://www.imfeng.com/use-phpmyadmin-edit-mysql-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mysql数据库命令学习之update语法</title>
		<link>http://www.imfeng.com/mysql-update/</link>
		<comments>http://www.imfeng.com/mysql-update/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 09:36:00 +0000</pubDate>
		<dc:creator>枫子</dc:creator>
				<category><![CDATA[SQL数据库]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.imfeng.com/?p=124</guid>
		<description><![CDATA[update语句在SQL中用于修改表中的数据。
update语法：
UPDATE 表名称 SET 列名称 = 新值 WHERE 列名称 = 某值
我的理解是:
update 表名称 set 列名称 = 新值 where 条件
当有多个列名称要修改的时候用"，"分隔。
如：
dedecms中修改所有ID大于10的栏目属性值为1(频道),并且同时修改频道封面模板路径为"xxx/xx.htm"。
则：
UPDATE `#@__arctype` SET `ispart` = '1',`tempindex` = 'xxx/xx.htm' WHERE `id` &#62;=10
Here is no comments yet by the time  your rss reader get this, Do you want to be the first commentor? Hurry up ]]></description>
			<content:encoded><![CDATA[<p>update语句在SQL中用于修改表中的数据。</p>
<h3><a href="http://www.imfeng.com/mysql-update/">update语法</a>：</h3>
<pre>UPDATE 表名称 SET 列名称 = 新值 WHERE 列名称 = 某值</pre>
<pre>我的理解是:</pre>
<pre>update 表名称 set 列名称 = 新值 where 条件</pre>
<pre>当有多个列名称要修改的时候用"，"分隔。</pre>
<pre>如：</pre>
<pre>dedecms中修改所有ID大于10的栏目属性值为1(频道),并且同时修改频道封面模板路径为"xxx/xx.htm"。</pre>
<pre>则：</pre>
<pre>UPDATE `#@__arctype` SET `ispart` = '1',`tempindex` = 'xxx/xx.htm' WHERE `id` &gt;=10</pre>
Here is no comments yet by the time  your rss reader get this, Do you want to be the first commentor? Hurry up ]]></content:encoded>
			<wfw:commentRss>http://www.imfeng.com/mysql-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>win2003下每天自动备份mysql数据库</title>
		<link>http://www.imfeng.com/win2003-auto-backup-mysql-database/</link>
		<comments>http://www.imfeng.com/win2003-auto-backup-mysql-database/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 16:18:25 +0000</pubDate>
		<dc:creator>枫子</dc:creator>
				<category><![CDATA[服务器]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[自动备份]]></category>

		<guid isPermaLink="false">http://www.imfeng.com/?p=109</guid>
		<description><![CDATA[终于让服务器每天早上备份一次 MySQL 数据库并自动打包,同时删除 5 天前的备份文件. 分享如下.
1. 环境: windows server 2003 + Apache 2.0 + PHP5 + MySQL 4.0.26 .
2. 假设 PHP 安装目录为 D:/php ,MySQL 安装目录为 D:/mysql.
3. 在 D:/php 下建立目录 WinRAR, 把你 winrar 安装目录下的 WinRAR.exe 和 RARReg.KEY 复制到 D:/php/WinRAR .
4. D:/php 下建立文件 mysql_backup.php:




    /*///////////////////////// 

#FileName: mysql_backup.php 

#Author: faisun 

#Website: http://www.softpure.com 

////////////////////////*/   [...]]]></description>
			<content:encoded><![CDATA[<p>终于让服务器每天早上备份一次 MySQL 数据库并自动打包,同时删除 5 天前的备份文件. 分享如下.<span id="more-109"></span></p>
<p>1. 环境: windows server 2003 + Apache 2.0 + PHP5 + MySQL 4.0.26 .</p>
<p>2. 假设 PHP 安装目录为 D:/php ,MySQL 安装目录为 D:/mysql.</p>
<p>3. 在 D:/php 下建立目录 WinRAR, 把你 winrar 安装目录下的 WinRAR.exe 和 RARReg.KEY 复制到 D:/php/WinRAR .</p>
<p>4. D:/php 下建立文件 mysql_backup.php:</p>
<table border="1" cellspacing="0" cellpadding="2" width="400" align="center">
<tbody>
<tr>
<td bgcolor="#e6e6e6">
<pre>    /*///////////////////////// 

#FileName: mysql_backup.php 

#Author: faisun 

#Website: <a href="http://www.softpure.com/"><span style="color: #000000;">http://www.softpure.com</span></a> 

////////////////////////*/    

//保存目录,路径要用反斜杠.您需要手动建立它. 

$store_folder = 'D:databse_backup'; 

//用户名和密码 

//该帐号须有操作[所有]的数据库及FILE的权限 

//否则有些数据库不能备份. 

$db_username = "root"; 

$db_password = ""; 

$time=time(); 

$nowdir = "$store_folder".date("Ymd",$time).""; 

if(file_exists("$nowdir.rar")) die("File exists.n"); 

@mkdir($nowdir); 

mysql_connect("localhost","$db_username","$db_password"); 

$query=mysql_list_dbs(); 

while($result=mysql_fetch_array($query)){ 

system (dirname(__FILE__).'..mysqlbinmysqldump --opt '."$result[Database] -u ".($db_password?"-p":"")." &gt; $nowdir$result[Database].sql"); 

echo "dumping database `$result[Database]`...n"; 

} 

echo "nWinrar loading...n"; 

system( dirname(__FILE__)."<a href="file://WinRAR//WinRAR.exe"><span style="color: #000000;">WinRARWinRAR.exe</span></a> a -ep1 -r -o+ -m5 -df "$nowdir.rar" "$nowdir" " ); 

//删除 5 天前的文件 

@unlink("$store_folder".date("Ymd",$time-86400*5).".rar"); 

echo "nOK!n"; 

&gt;</pre>
</td>
</tr>
</tbody>
</table>
<p><!----></p>
<p>5. D:/php 下建立文件 mysql_backup.bat,内容只有一句:</p>
<table border="1" cellspacing="0" cellpadding="2" width="400" align="center">
<tbody>
<tr>
<td bgcolor="#e6e6e6">
<pre>  php.exe mysql_backup.php</pre>
</td>
</tr>
</tbody>
</table>
<p>6. 双击该 bat 文件运行,如果能备份了,OK,下一步添加任务计划.</p>
<p>7. 把 D:/php/mysql_backup 添加到任务计划,时间选每天. 根据服务器的监测结果,每天早上 5-8 时为流量低峰期. 由于 5-7 时有些数据库的清理工作,我把时间定在了早上 8 点整.</p>
<p><a href="http://database.51cto.com/art/200607/29254.htm" target="_blank">查看本文来源</a></p>
Here is no comments yet by the time  your rss reader get this, Do you want to be the first commentor? Hurry up ]]></content:encoded>
			<wfw:commentRss>http://www.imfeng.com/win2003-auto-backup-mysql-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mysql 无法启动 错误1067等等问题解决方法</title>
		<link>http://www.imfeng.com/mysql-1067/</link>
		<comments>http://www.imfeng.com/mysql-1067/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 16:31:56 +0000</pubDate>
		<dc:creator>枫子</dc:creator>
				<category><![CDATA[生活日记]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[解决方法]]></category>

		<guid isPermaLink="false">http://www.imfeng.com/?p=60</guid>
		<description><![CDATA[回家已经几天了,郁闷得要死。
几乎所有的网站都彻底关了&#8230;Adsense里面已经进一个星期没一点展示了。
新做的网站,百度又不鸟,5个新站,都快2个星期了,还是没收录。
所有的CN域名看来是不能用了，现在只能注册COM域名,有记录的,没记录的,备案,没备案。
郁闷。
回家的时候，忘记带系统盘了，只好在网上下载了一个GhostXP,测试了一下，还不错，安装只用了5分钟不到。
然后安装一系列的软件，都没有问题。
最后配置PHP+MYSQL环境出了点小问题，重装了近7次,重启了近5次才搞定。
大概问题有，安装了mysql,但是运行phpmyadmin的时候提示错误：#1045 &#8211; Access denied for user &#8216;root&#8217;@'localhost&#8217;
这个问题,网上说的都有点复杂,什么该密码，同步密码什么的，效果不怎么样。
于是干脆卸载了。
后来又出现服务器没反应，在服务里面启动mysql的时候出现错误1067。只有卸载了,在重新安装了。
有两个命令用来卸载很好：
1.进入CMD，进入mysql文件夹的bin目录，执行bin/mysqld-nt.exe -remove
同理 bin/mysqld-nt.exe -install可以用来安装。
尽量把C盘windows下面的my.ini删除掉。
2.还有一个命令 也是进入CMD 执行 sc delete mysql
把所有东西都卸载了之后,重新安装了一下，搞定了。
PS：分享一个一键安装包。Download。
Here is no comments yet by the time  your rss reader get this, Do you want to be the first commentor? Hurry up ]]></description>
			<content:encoded><![CDATA[<p>回家已经几天了,郁闷得要死。</p>
<p>几乎所有的网站都彻底关了&#8230;Adsense里面已经进一个星期没一点展示了。</p>
<p>新做的网站,百度又不鸟,5个新站,都快2个星期了,还是没收录。</p>
<p>所有的CN域名看来是不能用了，现在只能注册COM域名,有记录的,没记录的,备案,没备案。</p>
<p>郁闷。</p>
<p>回家的时候，忘记带系统盘了，只好在网上下载了一个GhostXP,测试了一下，还不错，安装只用了5分钟不到。</p>
<p>然后安装一系列的软件，都没有问题。</p>
<p>最后配置PHP+MYSQL环境出了点小问题，重装了近7次,重启了近5次才搞定。</p>
<p>大概问题有，安装了mysql,但是运行phpmyadmin的时候提示错误：#1045 &#8211; Access denied for user <a href="mailto:'root'@'localhost'">&#8216;root&#8217;@'localhost&#8217;</a></p>
<p>这个问题,网上说的都有点复杂,什么该密码，同步密码什么的，效果不怎么样。</p>
<p>于是干脆卸载了。</p>
<p>后来又出现服务器没反应，在服务里面启动mysql的时候出现错误1067。只有卸载了,在重新安装了。</p>
<p>有两个命令用来卸载很好：</p>
<p>1.进入CMD，进入mysql文件夹的bin目录，执行bin/mysqld-nt.exe -remove</p>
<p>同理 bin/mysqld-nt.exe -install可以用来安装。</p>
<p>尽量把C盘windows下面的my.ini删除掉。</p>
<p>2.还有一个命令 也是进入CMD 执行 <em>sc</em> delete <em>mysql</em></p>
<p><em></em>把所有东西都卸载了之后,重新安装了一下，搞定了。</p>
<p>PS：分享一个一键安装包。<a href="http://www.imfeng.com/upload/phpiis.rar">Download</a>。</p>
Here is no comments yet by the time  your rss reader get this, Do you want to be the first commentor? Hurry up ]]></content:encoded>
			<wfw:commentRss>http://www.imfeng.com/mysql-1067/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
