Visual Web Developer Express,如何将 SQL 运行到新数据库
如何运行 DDL-SQL 在 Visual Web Developer 2010 年?
作为 ASP.NET 世界的新手,我正在尝试插入 ddl 来构建 Northwind 数据库 。
我尝试过从查询视图插入 SQL 的技巧,但是 SQL Server Express Edition 崩溃了:-)
(你好 Microsoft,好久不见……)
How do I run a DDL-SQL to create tables on a newly created database in Visual Web Developer 2010?
New to the ASP.NET world, I'm trying to insert the ddl to build the Northwind database.
I've tried the trick of inserting the SQL from a query-view, but SQL Server Express Edition crashes :-)
(Hello Microsoft, long time, no see...)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以下载 MS SQL Server Management Studio Express(免费)。使用此工具管理 SQL Server 数据库变得更加容易。
编辑(回答下面的评论),
这样不行:) SQL Server 有两种身份验证方法:Windows 身份验证和它自己的身份验证(用户和密码)。首先你需要使用Windows身份验证登录,你可以做任何你想做的事情,例如更改sa(服务器管理员)密码。
You can download MS SQL Server Management Studio Express (it's free). With this tool managing SQL Server databases is a lot easier.
Edit (answer to the comment below),
It doesn't work that way :) SQL Server has two authentication methods: Windows authentication and its own (user and password). First you need to use Windows authentication to log in and you can do whatever you want, for example change the sa (server administrator) password.