Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Limita l'accesso di accesso di SQL Server a un solo database

Penso che questo sia ciò che ci piace molto fare.

--Step 1: (create a new user)
create LOGIN hello WITH PASSWORD='foo', CHECK_POLICY = OFF;


-- Step 2:(deny view to any database)
USE master;
GO
DENY VIEW ANY DATABASE TO hello; 


 -- step 3 (then authorized the user for that specific database , you have to use the  master by doing use master as below)
USE master;
GO
ALTER AUTHORIZATION ON DATABASE::yourDB TO hello;
GO

Se hai già creato un utente e assegnato a quel database in precedenza facendo

USE [yourDB] 
CREATE USER hello FOR LOGIN hello WITH DEFAULT_SCHEMA=[dbo] 
GO

quindi eliminalo gentilmente facendo di seguito e segui i passaggi

   USE yourDB;
   GO
   DROP USER newlogin;
   GO

Per maggiori informazioni segui i link:

Nascondersi database per un accesso su Microsoft Sql Server 2008R2 e versioni successive