SQL Server 2008 Management Studio Express 的替代选项
我正在尝试安装 SQL Server 2008 管理Studio Express 在这里找到,但我收到的是 win32 而不是应用程序错误。
除了 Visual Studio 之外,还有其他管理 Windows SQL Server 数据库的选项吗?我只需要能够登录到服务器并运行一些测试 SQL,例如:
ALTER TABLE test ADD column VARCHAR(50)
您可以在 Visual Studio 中运行该查询吗?如果是这样的话,问题也能解决。
I am trying to install SQL Server 2008 Management Studio Express found here, but I am getting a win32 not an application error.
Is there another option for managing Windows SQL Server databases other than Visual Studio? I just have to be able to log in to the server and run some test SQL like:
ALTER TABLE test ADD column VARCHAR(50)
Can you run that query in Visual Studio? If so that would solve the problem too.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有命令行
sqlcmd
实用程序。There is the command line
sqlcmd
utility.是的,您可以从 Visual Studio 对 SQL Server 数据库运行即席查询。
在服务器资源管理器中查找/创建数据连接,右键单击并选择新建查询。
Yes, you can run ad-hoc queries to a SQL Server database from Visual Studio.
Find/create a Data Connection in Server Explorer, right-click, and choose New Query.