在 SQL Server Express 中创建数据库和表
我正在为我的应用程序使用 SQL Server Express 版本(Visual Studio 2010 Ultimate,C#)。我发现SQL Management Studio不支持Express版本。我用谷歌搜索了该查询,但没有找到满意的解决方案来解决我的问题。我已下载“LINQPad”,但无法创建数据库。也许它不是一个免费软件。
现在我想创建数据库和表,那么哪个(免费软件)实用程序可以用来解决我的问题?
I am using SQL Server Express edition for my application (Visual Studio 2010 Ultimate, C#). I found that SQL Management Studio does not support Express edition. I googled the query but didn't find a satisfactory solution to my problem. I've downloaded 'LINQPad' but couldn't create a database. Maybe its not a free software.
Now I want to create database and tables, so which (freeware) utility can be used to solve my problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您的意思是 SQL Server Express 不随 Management Studio 一起提供,而不是 Management Studio 不支持 SQL Server Express。您可以在此处下载 Management Studio 的 Express 版本:
http://www。 microsoft.com/download/en/details.aspx?id=22985
如果您想要此版本的 Management Studio 中未包含的功能(例如,SQL Server 代理以及您可能想要管理的其他功能)针对非 Express 版本SQL Server),您可以从您最喜欢的软件经销商处以约 49 美元的价格购买开发人员版本。或者,如果您的环境中已经安装了完整版本,您可能会获得从媒体安装该版本的许可。
要从上面的可执行文件仅安装 Management Studio Express(而不是 SQL Server Express):
剩下的 完成此操作后,您应该应用 SQL Server 2008 R2 Service Pack 1。
I assume you mean that SQL Server Express does not come with Management Studio, not that Management Studio doesn't support SQL Server Express. You can download the Express version of Management Studio here:
http://www.microsoft.com/download/en/details.aspx?id=22985
If you want the features that aren't included in this version of Management Studio (for example, SQL Server Agent and other features you might want to manage against non-Express editions of SQL Server), you can buy the developer edition for ~$49 from your favorite software reseller. Or you may be licensed to install the version from the media if you already have a full edition installed in your environment.
To install Management Studio Express only (not SQL Server Express) from the executable above:
After you've done this, you should apply SQL Server 2008 R2 Service Pack 1.