﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><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>IT博客-画圈圈</title><link>http://www.cnitblog.com/morn/</link><description>现在是学习笔记，将来不知道是啥</description><language>zh-cn</language><lastBuildDate>Wed, 29 Apr 2026 06:01:34 GMT</lastBuildDate><pubDate>Wed, 29 Apr 2026 06:01:34 GMT</pubDate><ttl>60</ttl><item><title>查当前游标数</title><link>http://www.cnitblog.com/morn/archive/2008/05/08/43512.html</link><dc:creator>morn</dc:creator><author>morn</author><pubDate>Thu, 08 May 2008 08:24:00 GMT</pubDate><guid>http://www.cnitblog.com/morn/archive/2008/05/08/43512.html</guid><wfw:comment>http://www.cnitblog.com/morn/comments/43512.html</wfw:comment><comments>http://www.cnitblog.com/morn/archive/2008/05/08/43512.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/morn/comments/commentRss/43512.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/morn/services/trackbacks/43512.html</trackback:ping><description><![CDATA[V$OPEN_CURSOR，当前Session缓存的游标，而不是曾经打开的游标。 V$SESSION_CACHED_CURSOR，当前Session已经关闭并被缓存的游标。 <br>V$OPEN_CURSOR中显示的当前Session游标缓存中游标，如果要精确查询当前Session打开的游标总数，需要从V$ SESSTAT中查询。 <br><br>
<div id=script>select a.value, <br>s.username, <br>s.sid, <br>s.serial# <br>from <br>v$sesstat a, <br>v$statname b, <br>v$session s <br>where <br>a.statistic# = b.statistic# and <br>s.sid=a.sid and <br>b.name = 'opened cursors current'; </div>
<img src ="http://www.cnitblog.com/morn/aggbug/43512.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/morn/" target="_blank">morn</a> 2008-05-08 16:24 <a href="http://www.cnitblog.com/morn/archive/2008/05/08/43512.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>oracle的系统和对象权限</title><link>http://www.cnitblog.com/morn/archive/2008/04/09/42162.html</link><dc:creator>morn</dc:creator><author>morn</author><pubDate>Wed, 09 Apr 2008 06:23:00 GMT</pubDate><guid>http://www.cnitblog.com/morn/archive/2008/04/09/42162.html</guid><wfw:comment>http://www.cnitblog.com/morn/comments/42162.html</wfw:comment><comments>http://www.cnitblog.com/morn/archive/2008/04/09/42162.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/morn/comments/commentRss/42162.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/morn/services/trackbacks/42162.html</trackback:ping><description><![CDATA[alter any cluster 修改任意簇的权限 <br>　　alter any index 修改任意索引的权限 <br>　　alter any role 修改任意角色的权限 <br>　　alter any sequence 修改任意序列的权限 <br>　　alter any snapshot 修改任意快照的权限 <br>　　alter any table 修改任意表的权限 <br>　　alter any trigger 修改任意触发器的权限 <br>　　alter cluster 修改拥有簇的权限 <br>　　alter database 修改数据库的权限 <br>　　alter procedure 修改拥有的存储过程权限 <br>　　alter profile 修改资源限制简表的权限 <br>　　alter resource cost 设置佳话资源开销的权限 <br>　　alter rollback segment 修改回滚段的权限 <br>　　alter sequence 修改拥有的序列权限 <br>　　alter session 修改数据库会话的权限 <br>　　alter sytem 修改数据库服务器设置的权限 <br>　　alter table 修改拥有的表权限 <br>　　alter tablespace 修改表空间的权限 <br>　　alter user 修改用户的权限 <br>　　analyze 使用analyze命令分析数据库中任意的表、索引和簇 <br>　　audit any 为任意的数据库对象设置审计选项 <br>　　audit system 允许系统操作审计 <br>　　backup any table 备份任意表的权限 <br>　　become user 切换用户状态的权限 <br>　　commit any table 提交表的权限 <br>　　create any cluster 为任意用户创建簇的权限 <br>　　create any index 为任意用户创建索引的权限 <br>　　create any procedure 为任意用户创建存储过程的权限 <br>　　create any sequence 为任意用户创建序列的权限 <br>　　create any snapshot 为任意用户创建快照的权限 <br>　　create any synonym 为任意用户创建同义名的权限 <br>　　create any table 为任意用户创建表的权限 <br>　　create any trigger 为任意用户创建触发器的权限 <br>　　create any view 为任意用户创建视图的权限 <br>　　create cluster 为用户创建簇的权限 <br>　　create database link 为用户创建的权限 <br>　　create procedure 为用户创建存储过程的权限 <br>　　create profile 创建资源限制简表的权限 <br>　　create public database link 创建公共数据库链路的权限 <br>　　create public synonym 创建公共同义名的权限 <br>　　create role 创建角色的权限 <br>　　create rollback segment 创建回滚段的权限 <br>　　create session 创建会话的权限 <br>　　create sequence 为用户创建序列的权限 <br>　　create snapshot 为用户创建快照的权限 <br>　　create synonym 为用户创建同义名的权限 <br>　　create table 为用户创建表的权限 <br>　　create tablespace 创建表空间的权限 <br>　　create user 创建用户的权限 <br>　　create view 为用户创建视图的权限 <br>　　delete any table 删除任意表行的权限 <br>　　delete any view 删除任意视图行的权限 <br>　　delete snapshot 删除快照中行的权限 <br>　　delete table 为用户删除表行的权限 <br>　　delete view 为用户删除视图行的权限 <br>　　drop any cluster 删除任意簇的权限 <br>　　drop any index 删除任意索引的权限 <br>　　drop any procedure 删除任意存储过程的权限 <br>　　drop any role 删除任意角色的权限 <br>　　drop any sequence 删除任意序列的权限 <br>　　drop any snapshot 删除任意快照的权限 <br>　　drop any synonym 删除任意同义名的权限 <br>　　drop any table 删除任意表的权限 <br>　　drop any trigger 删除任意触发器的权限 <br>　　drop any view 删除任意视图的权限 <br>　　drop profile 删除资源限制简表的权限 <br>　　drop public cluster 删除公共簇的权限 <br>　　drop public database link 删除公共数据链路的权限 <br>　　drop public synonym 删除公共同义名的权限 <br>　　drop rollback segment 删除回滚段的权限 <br>　　drop tablespace 删除表空间的权限 <br>　　drop user 删除用户的权限 <br>　　execute any procedure 执行任意存储过程的权限 <br>　　execute function 执行存储函数的权限 <br>　　execute package 执行存储包的权限 <br>　　execute procedure 执行用户存储过程的权限 <br>　　force any transaction 管理未提交的任意事务的输出权限 <br>　　force transaction 管理未提交的用户事务的输出权限 <br>　　grant any privilege 授予任意系统特权的权限 <br>　　grant any role 授予任意角色的权限 <br>　　index table 给表加索引的权限 <br>　　insert any table 向任意表中插入行的权限 <br>　　insert snapshot 向快照中插入行的权限 <br>　　insert table 向用户表中插入行的权限 <br>　　insert view 向用户视图中插行的权限 <br>　　lock any table 给任意表加锁的权限 <br>　　manager tablespace 管理（备份可用性）表空间的权限 <br>　　references table 参考表的权限 <br>　　restricted session 创建有限制的数据库会话的权限 <br>　　select any sequence 使用任意序列的权限 <br>　　select any table 使用任意表的权限 <br>　　select snapshot 使用快照的权限 <br>　　select sequence 使用用户序列的权限 <br>　　select table 使用用户表的权限 <br>　　select view 使用视图的权限 <br>　　unlimited tablespace 对表空间大小不加限制的权限 <br>　　update any table 修改任意表中行的权限 <br>　　update snapshot 修改快照中行的权限 <br>　　update table 修改用户表中的行的权限 <br>　　update view 修改视图中行的权限<br>本篇文章来源于 IT学院 原文链接：<a href="http://www.itooe.com/database/Oracle/a/839.html">http://www.itooe.com/database/Oracle/a/839.html</a>
<img src ="http://www.cnitblog.com/morn/aggbug/42162.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/morn/" target="_blank">morn</a> 2008-04-09 14:23 <a href="http://www.cnitblog.com/morn/archive/2008/04/09/42162.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>ORACL 与授权相关的一些表</title><link>http://www.cnitblog.com/morn/archive/2008/04/09/42154.html</link><dc:creator>morn</dc:creator><author>morn</author><pubDate>Wed, 09 Apr 2008 03:44:00 GMT</pubDate><guid>http://www.cnitblog.com/morn/archive/2008/04/09/42154.html</guid><wfw:comment>http://www.cnitblog.com/morn/comments/42154.html</wfw:comment><comments>http://www.cnitblog.com/morn/archive/2008/04/09/42154.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/morn/comments/commentRss/42154.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/morn/services/trackbacks/42154.html</trackback:ping><description><![CDATA[软件环境： <br>1、Windows 2000+ORACLE 8.1.6<br>2、ORACLE安装路径为：C:\ORACLE<br><br>实现方法： <br><br>SQL&gt; select table_name from dict where table_name like '%PRIV%';<br><br>SQL&gt; select * from user_sys_privs; --查看直接授予用户的系统权限<br>SQL&gt; select * from user_role_privs; --用户有哪些角色<br>SQL&gt; select * from user_tab_privs; --检查一个用户被授予和授予其他用户的对象级权限<br><br>SQL&gt; select * from dba_roles; --查询系统中的角色<br>SQL&gt; select * from dba_sys_privs; --查询角色的权利<br>SQL&gt; select * from dba_role_privs; --查询角色是谁定义的<br>SQL&gt; select * from column_privileges; --<br>SQL&gt; select * from role_role_privs; --查询角色的授予和被授予关系<br>SQL&gt; select * from role_sys_privs; --查询角色被授予的系统级权限<br>SQL&gt; select * from role_tab_privs; --查询角色的对象级权限<br>SQL&gt; select * from session_privs; --<br>SQL&gt; select * from tab_privileges; --<br><br>
<img src ="http://www.cnitblog.com/morn/aggbug/42154.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/morn/" target="_blank">morn</a> 2008-04-09 11:44 <a href="http://www.cnitblog.com/morn/archive/2008/04/09/42154.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>oracle查字段名</title><link>http://www.cnitblog.com/morn/archive/2008/01/10/38714.html</link><dc:creator>morn</dc:creator><author>morn</author><pubDate>Thu, 10 Jan 2008 09:33:00 GMT</pubDate><guid>http://www.cnitblog.com/morn/archive/2008/01/10/38714.html</guid><wfw:comment>http://www.cnitblog.com/morn/comments/38714.html</wfw:comment><comments>http://www.cnitblog.com/morn/archive/2008/01/10/38714.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/morn/comments/commentRss/38714.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/morn/services/trackbacks/38714.html</trackback:ping><description><![CDATA[SELECT&nbsp;USER_TAB_COLS.TABLE_NAME&nbsp;<span style="COLOR: #0000ff">as</span><span style="COLOR: #000000">&nbsp;表名,<br>&nbsp;&nbsp; &nbsp;USER_TAB_COLS.COLUMN_NAME&nbsp;</span><span style="COLOR: #0000ff">as</span><span style="COLOR: #000000">&nbsp;列名&nbsp;,&nbsp;<br><img src="http://www.cnblogs.com/Images/OutliningIndicators/None.gif" align=top>USER_TAB_COLS.DATA_TYPE&nbsp;</span><span style="COLOR: #0000ff">as</span><span style="COLOR: #000000">&nbsp;数据类型,<br>&nbsp;&nbsp;&nbsp; USER_TAB_COLS.DATA_LENGTH&nbsp;</span><span style="COLOR: #0000ff">as</span><span style="COLOR: #000000">&nbsp;长度,<br>&nbsp;&nbsp;&nbsp; USER_TAB_COLS.NULLABLE&nbsp;</span><span style="COLOR: #0000ff">as</span><span style="COLOR: #000000">&nbsp;是否为空,<br><img src="http://www.cnblogs.com/Images/OutliningIndicators/None.gif" align=top>USER_TAB_COLS.COLUMN_ID&nbsp;</span><span style="COLOR: #0000ff">as</span><span style="COLOR: #000000">&nbsp;列序号,<br>&nbsp;&nbsp;&nbsp; user_col_comments.comments&nbsp;</span><span style="COLOR: #0000ff">as</span><span style="COLOR: #000000">&nbsp;备注&nbsp;<br><img src="http://www.cnblogs.com/Images/OutliningIndicators/None.gif" align=top>FROM&nbsp;USER_TAB_COLS&nbsp;<br>inner&nbsp;join&nbsp;user_col_comments&nbsp;on<br>&nbsp;user_col_comments.TABLE_NAME</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">USER_TAB_COLS.TABLE_NAME&nbsp;<br>and&nbsp;user_col_comments.COLUMN_NAME</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">USER_TAB_COLS.COLUMN_NAME&nbsp;<br><img src="http://www.cnblogs.com/Images/OutliningIndicators/None.gif" align=top>where&nbsp;&nbsp;USER_TAB_COLS.Table_Name</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">表名</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">&nbsp;<br></span>
<img src ="http://www.cnitblog.com/morn/aggbug/38714.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/morn/" target="_blank">morn</a> 2008-01-10 17:33 <a href="http://www.cnitblog.com/morn/archive/2008/01/10/38714.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>WINDOWS的DOS窗口下启动SQLPLUS</title><link>http://www.cnitblog.com/morn/archive/2008/01/10/38696.html</link><dc:creator>morn</dc:creator><author>morn</author><pubDate>Thu, 10 Jan 2008 06:02:00 GMT</pubDate><guid>http://www.cnitblog.com/morn/archive/2008/01/10/38696.html</guid><wfw:comment>http://www.cnitblog.com/morn/comments/38696.html</wfw:comment><comments>http://www.cnitblog.com/morn/archive/2008/01/10/38696.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/morn/comments/commentRss/38696.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/morn/services/trackbacks/38696.html</trackback:ping><description><![CDATA[set orcle_sid=*****<br>sqlplus "/as sysdba" 
<img src ="http://www.cnitblog.com/morn/aggbug/38696.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/morn/" target="_blank">morn</a> 2008-01-10 14:02 <a href="http://www.cnitblog.com/morn/archive/2008/01/10/38696.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>goverlan</title><link>http://www.cnitblog.com/morn/archive/2008/01/03/38410.html</link><dc:creator>morn</dc:creator><author>morn</author><pubDate>Thu, 03 Jan 2008 06:47:00 GMT</pubDate><guid>http://www.cnitblog.com/morn/archive/2008/01/03/38410.html</guid><wfw:comment>http://www.cnitblog.com/morn/comments/38410.html</wfw:comment><comments>http://www.cnitblog.com/morn/archive/2008/01/03/38410.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/morn/comments/commentRss/38410.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/morn/services/trackbacks/38410.html</trackback:ping><description><![CDATA[正常使用21157\21158
<img src ="http://www.cnitblog.com/morn/aggbug/38410.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/morn/" target="_blank">morn</a> 2008-01-03 14:47 <a href="http://www.cnitblog.com/morn/archive/2008/01/03/38410.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>PL/SQL里显示一些输出结果</title><link>http://www.cnitblog.com/morn/archive/2007/12/25/38058.html</link><dc:creator>morn</dc:creator><author>morn</author><pubDate>Tue, 25 Dec 2007 01:34:00 GMT</pubDate><guid>http://www.cnitblog.com/morn/archive/2007/12/25/38058.html</guid><wfw:comment>http://www.cnitblog.com/morn/comments/38058.html</wfw:comment><comments>http://www.cnitblog.com/morn/archive/2007/12/25/38058.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/morn/comments/commentRss/38058.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/morn/services/trackbacks/38058.html</trackback:ping><description><![CDATA[<font size=2>set serveroutput on<br>begin<br>procedure3( paramenterlist...);<br>end;<br><br><br><br><br><font size=3>DBMS_OUTPUT.PUT_LINE('Hello');</font></font>
<img src ="http://www.cnitblog.com/morn/aggbug/38058.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/morn/" target="_blank">morn</a> 2007-12-25 09:34 <a href="http://www.cnitblog.com/morn/archive/2007/12/25/38058.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>c# 字符串查找的语句</title><link>http://www.cnitblog.com/morn/archive/2007/11/30/37065.html</link><dc:creator>morn</dc:creator><author>morn</author><pubDate>Fri, 30 Nov 2007 01:43:00 GMT</pubDate><guid>http://www.cnitblog.com/morn/archive/2007/11/30/37065.html</guid><wfw:comment>http://www.cnitblog.com/morn/comments/37065.html</wfw:comment><comments>http://www.cnitblog.com/morn/archive/2007/11/30/37065.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/morn/comments/commentRss/37065.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/morn/services/trackbacks/37065.html</trackback:ping><description><![CDATA[<div class=section id=codeExampleSection>
<div class=code id=ctl00_LibFrame_ctl14_CSharp>
<pre class=code id=ctl00_LibFrame_ctl14CSharp space="preserve"><span style="COLOR: blue">class</span> StringSearch
{
<span style="COLOR: blue">static</span> <span style="COLOR: blue">void</span> Main()
{
<span style="COLOR: blue">string</span> str = <span style="COLOR: maroon">"A silly sentence used <span style="COLOR: blue">for</span> silly purposes."</span>;
System.Console.WriteLine(<span style="COLOR: maroon">"'{0}'"</span>,str);
<span style="COLOR: blue">bool</span> test1 = str.StartsWith(<span style="COLOR: maroon">"a silly"</span>);
System.Console.WriteLine(<span style="COLOR: maroon">"starts with 'a silly'? {0}"</span>, test1);
<span style="COLOR: blue">bool</span> test2 = str.StartsWith(<span style="COLOR: maroon">"a silly"</span>, System.StringComparison.OrdinalIgnoreCase);
System.Console.WriteLine(<span style="COLOR: maroon">"starts with 'a silly'? {0} (ignoring <span style="COLOR: blue">case</span>)"</span>, test2);
<span style="COLOR: blue">bool</span> test3 = str.EndsWith(<span style="COLOR: maroon">"."</span>);
System.Console.WriteLine(<span style="COLOR: maroon">"ends with '.'? {0}"</span>, test3);
<span style="COLOR: blue">int</span> first = str.IndexOf(<span style="COLOR: maroon">"silly"</span>);
<span style="COLOR: blue">int</span> last = str.LastIndexOf(<span style="COLOR: maroon">"silly"</span>);
<span style="COLOR: blue">string</span> str2 = str.Substring(first, last - first);
System.Console.WriteLine(<span style="COLOR: maroon">"between two 'silly' words: '{0}'"</span>, str2);
}
}
</pre>
</div>
<h4 class=subHeading>输出</h4>
<pre>'A silly sentence used for silly purposes.'
starts with 'a silly'? False
starts with 'a silly'? True (ignore case)
ends with '.'? True
between two 'silly' words: 'silly sentence used for '</pre>
</div>
<img src ="http://www.cnitblog.com/morn/aggbug/37065.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/morn/" target="_blank">morn</a> 2007-11-30 09:43 <a href="http://www.cnitblog.com/morn/archive/2007/11/30/37065.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>设定exe文件关联的两个DOS命令</title><link>http://www.cnitblog.com/morn/archive/2006/11/22/19496.html</link><dc:creator>morn</dc:creator><author>morn</author><pubDate>Wed, 22 Nov 2006 09:13:00 GMT</pubDate><guid>http://www.cnitblog.com/morn/archive/2006/11/22/19496.html</guid><wfw:comment>http://www.cnitblog.com/morn/comments/19496.html</wfw:comment><comments>http://www.cnitblog.com/morn/archive/2006/11/22/19496.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/morn/comments/commentRss/19496.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/morn/services/trackbacks/19496.html</trackback:ping><description><![CDATA[assoc .exe=exefile<br /><font size="2">ftype exefile=“%1” “ %*”</font><img src ="http://www.cnitblog.com/morn/aggbug/19496.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/morn/" target="_blank">morn</a> 2006-11-22 17:13 <a href="http://www.cnitblog.com/morn/archive/2006/11/22/19496.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>GOVERLAN不能使用的几种处理</title><link>http://www.cnitblog.com/morn/archive/2006/10/30/18612.html</link><dc:creator>morn</dc:creator><author>morn</author><pubDate>Mon, 30 Oct 2006 03:11:00 GMT</pubDate><guid>http://www.cnitblog.com/morn/archive/2006/10/30/18612.html</guid><wfw:comment>http://www.cnitblog.com/morn/comments/18612.html</wfw:comment><comments>http://www.cnitblog.com/morn/archive/2006/10/30/18612.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/morn/comments/commentRss/18612.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/morn/services/trackbacks/18612.html</trackback:ping><description><![CDATA[一、已关闭默认共享<br />“HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanserver\parameters”项<br />“AutoShareServer”项将键值由0改为1，打开硬盘各分区的共享<br />“AutoShareWks”项，也把键值由0改为1，打开admin$共享<br />“HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa”项<br />“restrictanonymous”项，将键值设为0，打开IPC$共享。 
<p></p><p>　　注意：本法必须重启机器<br /><br />二、提示网络登录服务没有启动<br />启动"Net Logon"服务</p><img src ="http://www.cnitblog.com/morn/aggbug/18612.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/morn/" target="_blank">morn</a> 2006-10-30 11:11 <a href="http://www.cnitblog.com/morn/archive/2006/10/30/18612.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>