Sqlserver
 sql >> डेटाबेस >  >> RDS >> Sqlserver

संग्रहीत कार्यविधि को अनुमति दें

प्रक्रिया पर हस्ताक्षर करने के लिए आपको क्या चाहिए।

मुझे उनकी टिप्पणी में दिए गए लिंक M.Ali से सेटअप उधार लेने दें (संग्रहीत प्रक्रिया और अंतर्निहित तालिकाओं पर SQL सर्वर उपयोगकर्ता अनुमतियाँ ):

use Test
go
if exists (select * from sys.syslogins where name = 'UserA')
    drop login UserA 
create login UserA with password = 'Welcome'
if exists (select * from sys.syslogins where name = 'UserB')
    drop login UserB 
create login UserB with password = 'Welcome'
if exists (select * from sys.syslogins where name = 'UserC')
    drop login UserC 
create login UserC with password = 'Welcome'


if exists (select * from sys.tables where name = 'Customers' and schema_name(schema_id) = 'SchemaA')
    drop table SchemaA.Customers
if exists (select * from sys.schemas where name = 'SchemaA')
    drop schema SchemaA
if exists (select * from sys.sysusers where name = 'UserA')
    drop user UserA

if exists (select * from sys.tables where name = 'Orders' and schema_name(schema_id) = 'SchemaB')
    drop table SchemaB.Orders
if exists (select * from sys.procedures where name = 'GetCustomerOrderInfo' and schema_name(schema_id) = 'SchemaB')
    drop procedure SchemaB.GetCustomerOrderInfo 
if exists (select * from sys.schemas where name = 'SchemaB')
    drop schema SchemaB
if exists (select * from sys.sysusers where name = 'UserB')
    drop user UserB

if exists (select * from sys.sysusers where name = 'UserC')
    drop user UserC

create user UserA for login UserA
alter role db_owner add member UserA
go
create schema SchemaA authorization UserA
go
create user UserB for login UserB
alter role db_owner add member UserB
go
create schema SchemaB authorization UserB
go
create user UserC for login UserC

create table SchemaA.Customers (id int identity)

create table SchemaB.Orders (id int identity, CustomerId int)
go
create procedure SchemaB.GetCustomerOrderInfo 
as
select  *
from    SchemaB.Orders o
join    SchemaA.Customers c
on      c.id = o.CustomerId
go

यह सेटअप था, एंडोमर के लिए thx।

हम प्रक्रिया पर UserC को निष्पादित करने की अनुमति दे सकते हैं:

grant execute on SchemaB.GetCustomerOrderInfo to UserC
execute as login = 'UserC'
exec SchemaB.GetCustomerOrderInfo 
-- The SELECT permission was denied on the object 'Customers', database 'Test', schema 'SchemaA'.
revert

यह काफी अच्छा नहीं था। हम क्या कर सकते हैं डेटाबेस में एक प्रमाणपत्र बनाएं, इस प्रमाणपत्र पर एक डेटाबेस उपयोगकर्ता, उस उपयोगकर्ता को उचित अनुमतियां दें (इस नमूने में db_owner भूमिका), और फिर प्रमाणपत्र के साथ प्रक्रिया पर हस्ताक्षर करें:

create certificate cert_raiser
    encryption by password = 'pGFD4bb925DGvbd2439587y'
    with subject = 'raiser', 
    expiry_date = '01/01/2114';
go

create user cert_user from certificate cert_raiser
go

alter role db_owner add member cert_user
go

add signature to SchemaB.GetCustomerOrderInfo 
   by certificate cert_raiser
    with password = 'pGFD4bb925DGvbd2439587y';
go

इसे अब ठीक काम करना चाहिए।

बनाने के लिए बिंदु:प्रमाण पत्र पर बनाए गए उपयोगकर्ता को सामान्य उपयोगकर्ता के रूप में उपयोग नहीं किया जा सकता है, इसके साथ कोई लॉगिन नहीं है और यह सुरक्षा समस्या नहीं है; सभी अनुमतियाँ जो हम उस उपयोगकर्ता को देते हैं, उस संदर्भ में जोड़ दी जाएगी जिसमें प्रक्रिया को निष्पादित किया जाता है जब हम एक हस्ताक्षर जोड़ते हैं; यदि हम प्रक्रिया में बदलाव करते हैं, तो हमें उस पर फिर से हस्ताक्षर करने होंगे।




  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. एक्सएमएल क्वेरी के लिए चयन में लौटा कॉलम नाम कैसे चुनें?

  2. SQL मर्ज स्टेटमेंट

  3. एसक्यूएल अद्यतन जहां डेटा के सेट में

  4. SQL सर्वर में आसानी से मास्टर डेटाबेस को फिर से बनाने के तरीके

  5. कई स्तंभों पर DISTINCT की गणना करना