2012-03-24 55 views
2

我在VS2010中编写了一个应用程序。在安装VS2010时,安装了一个SQL Server软件包,它是SQL Server 2008.现在,我只能从VS2010浏览数据库。 SQL Server Management Studio 2008我需要单独安装以独立浏览数据库吗?针对VS2010的SQL Server Management Studio

回答

2

不知道对VS2010,但VS2008不安装SSMS。
您需要从Microsoft获得download the SMSS bits并开始安装。
在MSDN上的this article中解释了所需的步骤(查看用户社区评论)。
下一次,我建议不要在VS2010中安装SQLServer,并且继续单独安装SQLServer(Express或者不是),在这里你可以选择你需要的每一个工具。

3

您可以在查看菜单中打开服务器资源管理器

enter image description here

然后你可以选择现有的数据库

enter image description here

或创建一个新的

enter image description here

您可以在SQL Server Management Studio中了解的服务器资源管理器中使用数据库执行最重要的操作,但SQL Server Management Studio提供更多可能性和更舒适的GUI。下面screenshorts我在Visual Studio中取得

enter image description here

enter image description here

enter image description here

所以我个人更喜欢做的所有在SSMS,但如果你是临时的只有Visual Studio中的外国计算机上您可以在Visual Studio的Server Explorer中进行所有基本操作。

相关问题