Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请让我知道在 SQL Server 2008 上的单个数据库中添加 2 个用户的步骤
尝试安全地将用户添加到同一数据库,但无法访问数据库。
一位用户在添加到数据库后工作正常。
如果您安装了 Microsoft SQL Server 管理工作室:
如果不使用这些命令
USE <database name> GO CREATE USER <new user name> FOR LOGIN <login name> ; GO