
数据库
文章平均质量分 68
xiongchao2011
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
启动用户实例的进程时出错(Sql Server Exoress)
启动用户实例的进程时出错我相信很多人在使用ASP.NET 2.0 + SQL2005 + aspnetdb(MemberShip等功能)时出现这个问题:“由于启动用户实例的进程时出错,导致无法生成 SQL Server 的用户实例。该连接将关闭。”,其英文版本的相同问题的错误信息是:“Failed to generate a user instance of SQL Server转载 2011-12-06 16:59:42 · 639 阅读 · 0 评论 -
用脚本操作数据库
// 启用xp_cmdshellEXEC sp_configure 'show advanced options', 1GORECONFIGUREGOEXEC sp_configure 'xp_cmdshell', 1GORECONFIGUREGO//检查数据库是否存在IF EXISTS (SELECT * FROM sys.databases WH原创 2012-02-08 20:18:44 · 937 阅读 · 0 评论