About 11,300,000 results
Open links in new tab
  1. How to disable SQL Server Management Studio for a user

    May 22, 2009 · I needed to disable all users with SQL login, while allowing connection thru application only, so I added select isNTUser from master.dbo.syslogins where …

  2. Disable users of a database not Logins in SQL server 2008

    Feb 10, 2015 · To disable users of a Database in SQL Server 2008, I gave the command: Use Database Go Revoke Connect from username; It works for the users with SQL Server …

  3. How to disable a database user - SQL Server DBA

    Oct 18, 2017 · Answer: You don't need to remove a database user totally to disable them. A database user is associated with a SQL Server Login. So to disable a database user would …

  4. How can i enable and disable a user in an Azure sql database from SSMS

    Jan 24, 2024 · ALTER LOGIN loginname DISABLE/ENABLE When you want to enable or disable particular user from database you can grant and revoke the connect permission to it, as it can't …

  5. Disabling user account issue - Microsoft Q&A

    Dec 21, 2021 · There is only an "Enable/Disable" option. There should be a more clear label in that option (not just "login" but "login to the server") and an extra checkbox perhaps, to …

  6. Correct way to disable login for SA account?? - Microsoft Q&A

    Jul 12, 2021 · There are two ways to disable the "sa" account. One way, in SSMS, is to right click on the login and select properties>status>Login: disabled. Another way is via t-sql, with this …

  7. How can i deny access to any sql management from lan and …

    Aug 30, 2020 · For other users, you can remove the user account from SSMS login to deny other users to access SQL server instance from SSMS. For remote SQL server instance, as Erland …

  8. SQL Server Database Security – Logins and Users

    Nov 10, 2022 · User Mapping – Map a user in the database to the SQL Server login. Securables – View or set the permissions for securables. Status – Set permissions to connect, enable, or …

  9. How to change user access mode in MSSQL Server?

    MSSQL Server provides a feature to restrict your Database access for users. It can be performed by selecting appropriate access mode for your database. By default, there will be 3 access …

  10. How do you kick users out of a SQL Server 2008 database?

    To disconnect all users in SSMS GUI: Open properties of the database and.... The following actually kills all connections. Quite useful in cases where setting single user mode fails. and. …

  11. Some results have been removed