停灯向晓  
03 2010 档案
  • 用VS2008进行远程调试
    摘要:/* from:http://www.yichao.info/2009/05/%E7%94%A8vs2008%E8%BF%9B%E8%A1%8C%E8%BF%9C%E7%A8%8B%E8%B0%83%E8%AF%95.html */前提条件:remote host和client都在一个局域网内,且必须在一个网段 remot host和client主机必须登录相同的用户,用户名必须一直 关闭防火墙或打开相应的端口,一般是4015 remote host和client的本地安全策略中的网络访问必须改为“经典,本地用户以自己的身份验证”,路径为控制面板->用户管理->本地安全设置-> 阅读全文
    posted @ 2010-03-17 09:07 kofkyo 阅读(160) 评论(0) 推荐(0)
  • Virtual Server could not open its emulated Ethernet switch driver. To fix this problem, re-enable the Virtual Server Emulated Et
    摘要:公司网络设置变更之后,发现Vistual Server 2005 R2连接出现错误:Virtual Server could not open its emulated Ethernet switch driver. To fix this problem, re-enable the Virtual Server Emulated Ethernet Switch service on one or more Ethernet adapters or reinstall Virtual Server。找到这篇文章After reinstall network adapter the follo 阅读全文
    posted @ 2010-03-17 07:59 kofkyo 阅读(305) 评论(0) 推荐(0)
  • 如何重置identity值
    摘要:/* from: http://topic.csdn.net/t/20051208/20/4447231.html*/字段rowno int identity(1,1),在delete完数据之后,如何让rowno再次从1开始自动增长?TRUNCATE TABLE name************************* 下例强制 jobs 表中的当前标识值为 30。 USE pubs GO DBCC CHECKIDENT (jobs, RESEED, 30) GO*************************TRUNCATE TABLE ... 阅读全文
    posted @ 2010-03-15 11:00 kofkyo 阅读(312) 评论(0) 推荐(0)
  • SQL2005远程登录失败的检查和解决(Could not open a connection to SQL Server)
    摘要:/* from: http://www.diybl.com/course/7_databases/sql/sqlServer/2007106/77007.html*/远程登录SQL2005出错Error: An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not a 阅读全文
    posted @ 2010-03-15 10:04 kofkyo 阅读(631) 评论(0) 推荐(0)