<?xml version="1.0" standalone="yes"?>
<?xml-stylesheet type="text/xsl" href="css/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>阿猫的自用资料库 - 网站开发</title><link>http:///www.xiongmaotou.com/</link><description>阿猫的自用资料库 - </description><generator>RainbowSoft Studio Z-Blog 1.8 Arwen Build 90619</generator><language>zh-CN</language><copyright>本站信息为个人学习资料，整理来自互联网</copyright><pubDate>Tue, 09 Jun 2026 13:48:22 +0800</pubDate><item><title>mssql2005 如何为数据库启用全文索引</title><author>admin@xiongmaotou.com (熊猫头)</author><link>http:///www.xiongmaotou.com/post/227.html</link><pubDate>Tue, 29 Apr 2025 07:26:31 +0800</pubDate><guid>http:///www.xiongmaotou.com/post/227.html</guid><description><![CDATA[<p>&nbsp;<span style="color: rgb(51, 51, 51); font-family: Verdana; font-size: 14px;">user db000 --打开数据库</span><br style="margin: 0px; padding: 0px; color: rgb(51, 51, 51); font-family: Verdana; font-size: 14px;" /><span style="color: rgb(51, 51, 51); font-family: Verdana; font-size: 14px;">go</span><br style="margin: 0px; padding: 0px; color: rgb(51, 51, 51); font-family: Verdana; font-size: 14px;" /><span style="color: rgb(51, 51, 51); font-family: Verdana; font-size: 14px;">--检查数据库</span><span style="color: rgb(51, 51, 51); font-family: Verdana; font-size: 14px;">db000</span><span style="color: rgb(51, 51, 51); font-family: Verdana; font-size: 14px;">是否支持全文索引，如果不支持</span><br style="margin: 0px; padding: 0px; color: rgb(51, 51, 51); font-family: Verdana; font-size: 14px;" /><span style="color: rgb(51, 51, 51); font-family: Verdana; font-size: 14px;">--则使用sp_fulltext_database 打开该功能</span><br style="margin: 0px; padding: 0px; color: rgb(51, 51, 51); font-family: Verdana; font-size: 14px;" /><span style="color: rgb(51, 51, 51); font-family: Verdana; font-size: 14px;">if(select databaseproperty('pubs','isfulltextenabled'))=0</span><br style="margin: 0px; padding: 0px; color: rgb(51, 51, 51); font-family: Verdana; font-size: 14px;" /><span style="color: rgb(51, 51, 51); font-family: Verdana; font-size: 14px;">execute sp_fulltext_database 'enable'</span></p>]]></description><category>网站开发</category><comments>http:///www.xiongmaotou.com/post/227.html#comment</comments><wfw:comment>http:///www.xiongmaotou.com/</wfw:comment><wfw:commentRss>http:///www.xiongmaotou.com/feed.asp?cmt=227</wfw:commentRss><trackback:ping>http:///www.xiongmaotou.com/cmd.asp?act=tb&amp;id=227&amp;key=541b1c9f</trackback:ping></item><item><title>windows11磁盘C空间满了</title><author>admin@xiongmaotou.com (熊猫头)</author><link>http:///www.xiongmaotou.com/post/226.html</link><pubDate>Thu, 19 Dec 2024 08:37:06 +0800</pubDate><guid>http:///www.xiongmaotou.com/post/226.html</guid><description><![CDATA[<div>使用DISM命令管理保留空间</div><div>在Windows终端中，你可以使用DISM命令来查询、禁用或启用系统保留空间。以下是相关命令：</div><div>&nbsp;</div><div>查询系统保留空间是否启用：DISM.exe /Online /Get-ReservedStorageState</div><div>&nbsp;</div><div>禁用系统保留空间：DISM.exe /Online /Set-ReservedStorageState /State:Disabled</div><div>&nbsp;</div><div>启用系统保留空间：DISM.exe /Online /Set-ReservedStorageState /State:Enabled</div><div>&nbsp;</div><div>是否应该禁用保留空间？</div><div>关于是否应该禁用保留空间，这取决于你的系统盘空间需求和更新策略。如果你的系统盘空间充足，且希望确保系统能够顺利接收和安装更新，那么保留空间是有必要的。然而，如果你的系统盘空间紧张，且你确定剩余空间足以支持未来的更新，那么可以考虑禁用保留空间来释放更多空间。但请注意，禁用保留空间后，如果剩余空间不足以安装累积更新或新版本，可能会导致更新失败。</div><div>&nbsp;</div>]]></description><category>网站开发</category><comments>http:///www.xiongmaotou.com/post/226.html#comment</comments><wfw:comment>http:///www.xiongmaotou.com/</wfw:comment><wfw:commentRss>http:///www.xiongmaotou.com/feed.asp?cmt=226</wfw:commentRss><trackback:ping>http:///www.xiongmaotou.com/cmd.asp?act=tb&amp;id=226&amp;key=0150b6ac</trackback:ping></item><item><title>ASP缓解MSSQL游标压力</title><author>admin@xiongmaotou.com (熊猫头)</author><link>http:///www.xiongmaotou.com/post/225.html</link><pubDate>Fri, 06 Dec 2024 08:09:18 +0800</pubDate><guid>http:///www.xiongmaotou.com/post/225.html</guid><description><![CDATA[<p>sqltext=&quot;select top 1 * from city with(nolock) where chengshi='&quot;&amp;chengshi&amp;&quot;'&quot;</p><p>'---------------------------</p><p>if youbiao=1 then</p><p><span style="color: rgb(0, 0, 255);">rs.Open sqltext,cn,1,1</span></p><p>else</p><p><span style="color: rgb(255, 0, 0);">rs.ActiveConnection = cn</span></p><p><span style="color: rgb(255, 0, 0);">rs.Open sqltext</span></p><p>end if</p><p>'--------------------------</p><p>if not rs.EOF then</p><p>&nbsp;</p><p>两种不同的记录集读取方式</p>]]></description><category>网站开发</category><comments>http:///www.xiongmaotou.com/post/225.html#comment</comments><wfw:comment>http:///www.xiongmaotou.com/</wfw:comment><wfw:commentRss>http:///www.xiongmaotou.com/feed.asp?cmt=225</wfw:commentRss><trackback:ping>http:///www.xiongmaotou.com/cmd.asp?act=tb&amp;id=225&amp;key=320b5548</trackback:ping></item><item><title>生成以下严重警告: 40。内部错误状态为 1205。解决办法</title><author>admin@xiongmaotou.com (熊猫头)</author><link>http:///www.xiongmaotou.com/post/224.html</link><pubDate>Tue, 03 Dec 2024 09:00:12 +0800</pubDate><guid>http:///www.xiongmaotou.com/post/224.html</guid><description><![CDATA[<p>&nbsp;<span style="color: rgb(22, 22, 22); font-family: &quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 16px;">AlertDesc 40：TLS1_ALERT_HANDSHAKE_FAILURE 是由TLS协议规范定义的警报信息。后续可以通过更新的方式修复。</span></p><p style="box-sizing: inherit; outline-color: inherit; margin: 1rem 0px 0px; padding: 0px; overflow-wrap: break-word; color: rgb(22, 22, 22); font-family: &quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 16px;">当前您也可以通过设置Schannel事件日志记录的级别来清除此信息：</p><p style="box-sizing: inherit; outline-color: inherit; margin: 1rem 0px 0px; padding: 0px; overflow-wrap: break-word; color: rgb(22, 22, 22); font-family: &quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 16px;">开始-运行-Regedit-HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\SecurityProviders\SCHANNEL-EventLogging 设置 0&nbsp;</p>]]></description><category>网站开发</category><comments>http:///www.xiongmaotou.com/post/224.html#comment</comments><wfw:comment>http:///www.xiongmaotou.com/</wfw:comment><wfw:commentRss>http:///www.xiongmaotou.com/feed.asp?cmt=224</wfw:commentRss><trackback:ping>http:///www.xiongmaotou.com/cmd.asp?act=tb&amp;id=224&amp;key=ae3b04b5</trackback:ping></item><item><title>DIV多余内容用点来替代</title><author>admin@xiongmaotou.com (熊猫头)</author><link>http:///www.xiongmaotou.com/post/223.html</link><pubDate>Wed, 13 Nov 2024 16:27:55 +0800</pubDate><guid>http:///www.xiongmaotou.com/post/223.html</guid><description><![CDATA[<p>DIV多余内容用点来替代：&nbsp;</p><p>white-space: nowrap;overflow: hidden;text-overflow: ellipsis;</p>]]></description><category>网站开发</category><comments>http:///www.xiongmaotou.com/post/223.html#comment</comments><wfw:comment>http:///www.xiongmaotou.com/</wfw:comment><wfw:commentRss>http:///www.xiongmaotou.com/feed.asp?cmt=223</wfw:commentRss><trackback:ping>http:///www.xiongmaotou.com/cmd.asp?act=tb&amp;id=223&amp;key=e17f537c</trackback:ping></item><item><title>ASP延迟执行</title><author>admin@xiongmaotou.com (熊猫头)</author><link>http:///www.xiongmaotou.com/post/222.html</link><pubDate>Mon, 07 Oct 2024 21:08:59 +0800</pubDate><guid>http:///www.xiongmaotou.com/post/222.html</guid><description><![CDATA[<p>&nbsp;由于某些原因，需要让程序延迟执行，代码如下：</p><p>&lt;%</p><p>Response.Buffer=true</p><p>&nbsp;</p><p>Sub yanchi(seconds)</p><p>&nbsp; &nbsp; Dim start</p><p>&nbsp; &nbsp; start = Timer()</p><p>&nbsp; &nbsp; Do While Timer() - start &lt; seconds</p><p>&nbsp; &nbsp; Loop</p><p>End Sub</p><p>&nbsp;</p><p>response.write now() &amp;&quot;&lt;br&gt;&quot;</p><p>response.flush()</p><p>Call yanchi(2)</p><p>response.write now() &amp;&quot;&lt;br&gt;&quot;</p><p>response.flush()</p><p>Call yanchi(2)</p><p>response.write now() &amp;&quot;&lt;br&gt;&quot;</p><p>response.flush()</p><p>Call yanchi(2)</p><p>response.write now() &amp;&quot;&lt;br&gt;&quot;</p><p>response.flush()</p><p>Call yanchi(2)</p><p>response.write now() &amp;&quot;&lt;br&gt;&quot;</p><p>response.flush()</p><p>%&gt;</p>]]></description><category>网站开发</category><comments>http:///www.xiongmaotou.com/post/222.html#comment</comments><wfw:comment>http:///www.xiongmaotou.com/</wfw:comment><wfw:commentRss>http:///www.xiongmaotou.com/feed.asp?cmt=222</wfw:commentRss><trackback:ping>http:///www.xiongmaotou.com/cmd.asp?act=tb&amp;id=222&amp;key=a95fc4f5</trackback:ping></item><item><title>windows11 显示更多选项</title><author>admin@xiongmaotou.com (熊猫头)</author><link>http:///www.xiongmaotou.com/post/221.html</link><pubDate>Fri, 20 Sep 2024 08:22:31 +0800</pubDate><guid>http:///www.xiongmaotou.com/post/221.html</guid><description><![CDATA[<p>reg add HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32 /ve</p><div>&nbsp;</div><p>搞定</p>]]></description><category>网站开发</category><comments>http:///www.xiongmaotou.com/post/221.html#comment</comments><wfw:comment>http:///www.xiongmaotou.com/</wfw:comment><wfw:commentRss>http:///www.xiongmaotou.com/feed.asp?cmt=221</wfw:commentRss><trackback:ping>http:///www.xiongmaotou.com/cmd.asp?act=tb&amp;id=221&amp;key=aaecaa2b</trackback:ping></item><item><title> 阻断sql的事务日志无法回收的操作</title><author>admin@xiongmaotou.com (熊猫头)</author><link>http:///www.xiongmaotou.com/post/220.html</link><pubDate>Thu, 20 Jun 2024 12:02:23 +0800</pubDate><guid>http:///www.xiongmaotou.com/post/220.html</guid><description><![CDATA[<p>&nbsp;</p><p>ALTER DATABASE YourDatabaseName SET RECOVERY SIMPLE; -- 暂时将数据库的恢复模式设置为简单模式</p><p>ALTER DATABASE YourDatabaseName SET OFFLINE; -- 将数据库设置为脱机状态</p><p>ALTER DATABASE YourDatabaseName SET AUTO_UPDATE_STATISTICS_ASYNC OFF; -- 禁用数据库的自动更新统计信息</p><p>&nbsp;</p>]]></description><category>网站开发</category><comments>http:///www.xiongmaotou.com/post/220.html#comment</comments><wfw:comment>http:///www.xiongmaotou.com/</wfw:comment><wfw:commentRss>http:///www.xiongmaotou.com/feed.asp?cmt=220</wfw:commentRss><trackback:ping>http:///www.xiongmaotou.com/cmd.asp?act=tb&amp;id=220&amp;key=4243d821</trackback:ping></item><item><title>清理本地3389记录</title><author>admin@xiongmaotou.com (熊猫头)</author><link>http:///www.xiongmaotou.com/post/219.html</link><pubDate>Mon, 01 Apr 2024 23:11:53 +0800</pubDate><guid>http:///www.xiongmaotou.com/post/219.html</guid><description><![CDATA[<p>&nbsp;打开注册表</p><p><span style="color: rgb(34, 34, 34); font-family: tahoma, arial, &quot;Microsoft YaHei&quot;; font-size: 16px;">HKEY_CURRENT_USER\Software\Microsoft\Terminal&nbsp;Server&nbsp;Client\Default&nbsp; </span></p><p><span style="color: rgb(34, 34, 34); font-family: tahoma, arial, &quot;Microsoft YaHei&quot;; font-size: 16px;">里面删删删就行</span></p>]]></description><category>网站开发</category><comments>http:///www.xiongmaotou.com/post/219.html#comment</comments><wfw:comment>http:///www.xiongmaotou.com/</wfw:comment><wfw:commentRss>http:///www.xiongmaotou.com/feed.asp?cmt=219</wfw:commentRss><trackback:ping>http:///www.xiongmaotou.com/cmd.asp?act=tb&amp;id=219&amp;key=f7363920</trackback:ping></item><item><title>IIS 服务器支持弱Diffie-Hellman(DH),SSL评级C解决办法</title><author>admin@xiongmaotou.com (熊猫头)</author><link>http:///www.xiongmaotou.com/post/218.html</link><pubDate>Sat, 29 Jul 2023 16:22:07 +0800</pubDate><guid>http:///www.xiongmaotou.com/post/218.html</guid><description><![CDATA[<p>&nbsp;</p><div>&nbsp;</div><div>Windows Registry Editor Version 5.00</div><div>&nbsp;</div><div>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\KeyExchangeAlgorithms\Diffie-Hellman]</div><div>&quot;Enabled&quot;=dword:00000000</div><div>&nbsp;</div><div>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\RC4 128/128]</div><div>&quot;Enabled&quot;=dword:00000000</div><div>&nbsp;</div><div>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\RC4 40/128]</div><div>&quot;Enabled&quot;=dword:00000000</div><div>&nbsp;</div><div>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\RC4 56/128]</div><div>&quot;Enabled&quot;=dword:00000000</div><div>&nbsp;</div><div>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\RC4 64/128]</div><div>&quot;Enabled&quot;=dword:00000000</div><div>&nbsp;</div><div>复制进去记事本，保存为.reg 文件，服务器上双击导入，重启就可以</div><div>&nbsp;</div>]]></description><category>网站开发</category><comments>http:///www.xiongmaotou.com/post/218.html#comment</comments><wfw:comment>http:///www.xiongmaotou.com/</wfw:comment><wfw:commentRss>http:///www.xiongmaotou.com/feed.asp?cmt=218</wfw:commentRss><trackback:ping>http:///www.xiongmaotou.com/cmd.asp?act=tb&amp;id=218&amp;key=8c2da4d6</trackback:ping></item></channel></rss>
