<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>Discuz! Board 333cm - MySQL</title>
    <link>https://www.333cm.com/forum.php?mod=forumdisplay&amp;fid=8</link>
    <description>Latest 20 threads of MySQL</description>
    <copyright>Copyright(C) Discuz! Board 333cm</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Sun, 28 Jun 2026 20:43:47 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>https://www.333cm.com/static/image/common/logo_88_31.gif</url>
      <title>Discuz! Board 333cm</title>
      <link>https://www.333cm.com/</link>
    </image>
    <item>
      <title>mysql中新建个用户，只允许通过指定源IP访问指定名字数据库的操作方法。</title>
      <link>https://www.333cm.com/forum.php?mod=viewthread&amp;tid=256</link>
      <description><![CDATA[##诉求:新建jinchaxun用户，仅能通过192.168.200段IP访问名称为wodeku的库，仅能查询不能删除。##
##查看mysql的操作用户列表##
SELECT User, Host FROM mysql.user;


1-- 创建用户
CREATE USER \'jinchaxun\'@\'192.168.200.%\' IDENTIFIED BY \'MMjinchaxun@2025&amp;&amp;&amp;\';
2- ...]]></description>
      <category>MySQL</category>
      <author>user</author>
      <pubDate>Wed, 12 Feb 2025 09:08:58 +0000</pubDate>
    </item>
    <item>
      <title>查看mysql数据库所运行的进程列表-SHOW PROCESSLIST;</title>
      <link>https://www.333cm.com/forum.php?mod=viewthread&amp;tid=191</link>
      <description><![CDATA[查看mysql数据库所运行的进程列表-
SHOW PROCESSLIST;]]></description>
      <category>MySQL</category>
      <author>user</author>
      <pubDate>Thu, 01 Aug 2024 08:44:13 +0000</pubDate>
    </item>
    <item>
      <title>Mysql中查询指定字段在数据库的哪个表里存在的操作方法</title>
      <link>https://www.333cm.com/forum.php?mod=viewthread&amp;tid=138</link>
      <description><![CDATA[###Mysql中查询指定字段在数据库的哪个表里存在的###
         格式要求：         
          select * from information_schema.`COLUMNS`
      where table_schema= \&quot;数据库名\&quot;
            and COLUMN_name = \&quot;字段名\&quot;]]></description>
      <category>MySQL</category>
      <author>user</author>
      <pubDate>Tue, 05 Mar 2024 01:38:20 +0000</pubDate>
    </item>
    <item>
      <title>忘记mysql的原密码，进行修改密码的操作方法。</title>
      <link>https://www.333cm.com/forum.php?mod=viewthread&amp;tid=119</link>
      <description><![CDATA[忘记mysql的原密码，进行修改密码的操作方法。解决mysql：ERROR 1045 (28000): Access denied for user \'root\'@\'localhost\' (using password: NO/YES)
一、问题
有时候我们登录Mysql输入密码的时候，会出现这种情况　　mysql -u root -p　　Enter Password &gt; \'密码\'　　 ...]]></description>
      <category>MySQL</category>
      <author>user</author>
      <pubDate>Fri, 12 Jan 2024 06:05:38 +0000</pubDate>
    </item>
    <item>
      <title>Linux下修改Mysql密码的三种方式</title>
      <link>https://www.333cm.com/forum.php?mod=viewthread&amp;tid=110</link>
      <description><![CDATA[一、知道原来的myql数据库的root密码；
1、 在终端命令行输入 
2、 登录mysql系统修改， mysql -uroot -p 回车 Enter password: 【输入原来的密码】

然后使用刚才输入的新密码即可登录。
二、不知道原来的myql的root的密码；
首先，你必须要有操作系统的root权限了。 ...]]></description>
      <category>MySQL</category>
      <author>user</author>
      <pubDate>Sun, 07 Jan 2024 13:27:50 +0000</pubDate>
    </item>
    <item>
      <title>The conversion of a varchar data type to a datetime data type resulted in an out</title>
      <link>https://www.333cm.com/forum.php?mod=viewthread&amp;tid=78</link>
      <description><![CDATA[　刚刚有在程序中，传递一个空值至MS SQL Server数据库，这个值的数据类型为DATETIME
执行时，它却发生了如标题提示的异常：
The conversion of a varchar data type to a datetime data type resulted in an out-of-range value.
　　跟踪一下，当遇上一个空值时，它并 ...]]></description>
      <category>MySQL</category>
      <author>user</author>
      <pubDate>Sun, 07 Jan 2024 11:01:18 +0000</pubDate>
    </item>
    <item>
      <title>还原数据库：The backup set holds a backup of a database other than the existing</title>
      <link>https://www.333cm.com/forum.php?mod=viewthread&amp;tid=77</link>
      <description><![CDATA[还原数据库时报以上错误，解决办法是：
　　1、删除新建的DB
　　2、直接右键Databases--&gt;Restore Database
　　3、在弹出窗口中的To database栏位填写需要新建的DB名称(不存的名称)
　　4、选择From Device
　　5、选择DB的.bak备份文件
　　完成！
 ...]]></description>
      <category>MySQL</category>
      <author>user</author>
      <pubDate>Sun, 07 Jan 2024 11:00:45 +0000</pubDate>
    </item>
    <item>
      <title>MySQL5.6关闭DNS查询</title>
      <link>https://www.333cm.com/forum.php?mod=viewthread&amp;tid=76</link>
      <description><![CDATA[MySQL 5.6关闭DNS查询
　　MySQL服务器的日志记录中看到如下的警告：


2015-11-09 08:37:02 1489 [Warning] IP address \'104.223.72.XXX\' has been resolved to the host name \'104.223.72.XXX.static.quadranet.com\', which resembles IPv4-address itself.

　　分析 ...]]></description>
      <category>MySQL</category>
      <author>user</author>
      <pubDate>Sun, 07 Jan 2024 10:59:48 +0000</pubDate>
    </item>
    <item>
      <title>MySQL死锁问题实例分析及解决方法</title>
      <link>https://www.333cm.com/forum.php?mod=viewthread&amp;tid=75</link>
      <description><![CDATA[MySQL死锁问题的相关知识是本文我们主要要介绍的内容，接下来我们就来一一介绍这部分内容，希望能够对您有所帮助。


　　1、MySQL常用存储引擎的锁机制


　　MyISAM和MEMORY采用表级锁(table-level locking)


　　BDB采用页面锁(page-level locking)或表级锁，默认为 ...]]></description>
      <category>MySQL</category>
      <author>user</author>
      <pubDate>Sun, 07 Jan 2024 10:59:26 +0000</pubDate>
    </item>
    <item>
      <title>sql server2008变成单个用户后不能访问，设置成多个用户的办法</title>
      <link>https://www.333cm.com/forum.php?mod=viewthread&amp;tid=74</link>
      <description><![CDATA[今天想在sql server2005下复制一个数据库，结果最后一步出错，复制没成功反而导致数据库打不开了，

名称后出现“单个用户”，估计是进行复制的时候自动将其改为了单用户模式，可通过执行如下语句恢复多用户模式。

原理是先kill占用了数据库的那个进程，然后设置数据库 ...]]></description>
      <category>MySQL</category>
      <author>user</author>
      <pubDate>Sun, 07 Jan 2024 10:58:34 +0000</pubDate>
    </item>
    <item>
      <title>SQL Server 还原数据库，数据库提示正在还原中的处理办法.</title>
      <link>https://www.333cm.com/forum.php?mod=viewthread&amp;tid=73</link>
      <description><![CDATA[还原数据库时，提示还原成功，可是数据库列表中该数据库显示正在还原中：执行此命令即可：RESTORE DATABASE EnterPriseBuilding WITH RECOVERY
了解SQLServer脚本之数据库误删数据找回：http://www.cnblogs.com/Leo_wl/p/3614804.html1. 至少有一个误删除之前的数据库完 ...]]></description>
      <category>MySQL</category>
      <author>user</author>
      <pubDate>Sun, 07 Jan 2024 10:57:43 +0000</pubDate>
    </item>
    <item>
      <title>sql server数据库状态显示为“可疑”的解决方法</title>
      <link>https://www.333cm.com/forum.php?mod=viewthread&amp;tid=72</link>
      <description><![CDATA[sql server数据库状态显示为“可疑”的解决方法如下，需手工更改数据库名，再逐条执行，最后重启数据库服务，即可。
ALTER DATABASE 数据库名 SET EMERGENCY
ALTER DATABASE 数据库名 SET SINGLE_USER
DBCC CheckDB (数据库名 , REPAIR_ALLOW_DATA_LOSS)
ALTER DATABASE ...]]></description>
      <category>MySQL</category>
      <author>user</author>
      <pubDate>Sun, 07 Jan 2024 10:57:14 +0000</pubDate>
    </item>
    <item>
      <title>MySQL开发中常用的查询语句总结</title>
      <link>https://www.333cm.com/forum.php?mod=viewthread&amp;tid=70</link>
      <description><![CDATA[1、查询数值型数据:
SELECT * FROM tb_name WHERE sum &gt; 100;
查询谓词:&gt;,=,,!,=&lt;
2、查询字符串
SELECT * FROM tb_stu  WHERE sname  =  ‘Cricode.com’
SELECT * FROM tb_stu  WHERE sname like ‘Uncle%Too’
SELECT * FROM tb_stu  WHERE sname like ‘%程序员’
S ...]]></description>
      <category>MySQL</category>
      <author>user</author>
      <pubDate>Sun, 07 Jan 2024 10:53:40 +0000</pubDate>
    </item>
  </channel>
</rss>