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.
我可以使用命令在数据库中创建用户而无需登录CREATE USER,包括WITHOUT LOGIN.
CREATE USER
WITHOUT LOGIN
有没有办法删除用户和已经建立的登录之间的链接?我试过使用这些ALTER USER命令,但没有成功。
ALTER USER
我考虑过删除用户,然后在没有登录的情况下重新创建,但这会丢失我为用户设置的任何对象权限。
感谢您对此的任何帮助。
为什么不删除登录?
USE [master] GO DROP LOGIN [myuser] GO