如何在添加到项目中的 SQL Server Express 数据库中创建用户?
如何在添加到项目中的 SQL Server Express 数据库中创建 SQL 用户?
我需要创建一个用户以在不使用集成安全性的连接字符串中使用。
How can I create a SQL user in a SQL Server Express database that I added to my project?
I need to create a user to use in a connection string that doesn't use Integrated Security.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要首先使用 CREATE LOGIN 创建 SQL 身份验证登录,然后添加通过使用 CREATE USER 与该数据库登录关联的用户。
You would need to create a SQL Authenticated login first with CREATE LOGIN then add a user associated with that login to your database by using CREATE USER.
如果您创建 SQL 登录名和 SQL 用户时没有出现错误,但在尝试连接时出现错误,则可能禁用了 SQL 身份验证模式。要进行检查,请运行:
如果返回 1,则 SQL 身份验证(混合模式)已禁用。
您可以使用 SSMS、regedit 或 T-SQL 更改此设置:
然后重新启动 SQL Server 服务,并创建登录名和用户,此处具有完全权限:
If you create a SQL login and a SQL user without errors, but then get an error when trying to connect, you may have the SQL Authentication mode disabled. To check, run:
If this returns 1, then SQL Authentication (mixed mode) is disabled.
You can change this setting using SSMS, regedit, or T-SQL:
Then restart the SQL Server service, and create a login and a user, here with full permissions: