Is there a built-in feature, or way to simulate RLS(Row Level Security) in SQL Server 2008 as found in Oracle?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

This MS whitepaper outlines how to do it. http://technet.microsoft.com/en-us/library/cc966395.aspx

You take the permissions away from the table, then create a series of security tables and roles that allow you to validate each level for the user. After you setup your security checking on the user, you use a view to filter what the user can query via the security levels and the user's login. Then you had insert, update, delete instead of triggers on the view to redirect the action to the table.

link|improve this answer
feedback

As far as I know, there is no built-in row level security in SQL Server. But you can surely simulate that. Take this for instance:

create table ClassificationLevel
(
    pkClassificationLevel int identity(1, 1) primary key clustered not null,
    ClassificationLevel varchar(100) not null
)
go

create table SecureTable
(
    SomeSecuredData varchar(1000) not null,
    fkClassificationLevel int not null references ClassificationLevel(pkClassificationLevel)
)
go

insert into ClassificationLevel
select 'UNCLASSIFIED'
union all
select 'SECRET'
union all
select 'TOP SECRET'
go

insert into SecureTable
select 'Some unclassified data', 1
union all
select 'Some secret data', 2
union all
select 'Some top secret data', 3
go

create view UnclassifiedData
as
    select t.*
    from SecureTable t
    inner join ClassificationLevel c
    on t.fkClassificationLevel = c.pkClassificationLevel
    where c.ClassificationLevel = 'UNCLASSIFIED'
go

create view SecretData
as
    select t.*
    from SecureTable t
    inner join ClassificationLevel c
    on t.fkClassificationLevel = c.pkClassificationLevel
    where c.ClassificationLevel = 'SECRET'
    union all
    select *
    from UnclassifiedData
go

create view TopSecretData
as
    select t.*
    from SecureTable t
    inner join ClassificationLevel c
    on t.fkClassificationLevel = c.pkClassificationLevel
    where c.ClassificationLevel = 'TOP SECRET'
    union all
    select *
    from SecretData
go

Then create three roles. One that is able to view Unclassified data, one that can view Secret data, and one that can view Top Secret data. Then grant the permissions accordingly: deny all users select on SecureTable, and grant them each the necessary permissions to the views. In other words, Unclassified role can only have SELECT on UnclassifiedData....so on and so forth.

This is just a basic example, but a relatively effective way to implement RLS.

Good luck, and let me know if you have any questions.

Disclaimer: this is untested code, so it might contain typos, etc. It's just to get an idea for logic.

link|improve this answer
To also make writing secure you can add the 'with check option' clause. – gjvdkamp Oct 30 '11 at 6:43
@gjvdkamp if the users only have select permissions, then it wouldn't be an issue. But good point. – Shark Oct 30 '11 at 12:54
I am looking for more secure approach. A group of rows of the underlying table needs to be attached to a specific user. Much like how Oracle implement the RLS. – TonyP Nov 17 '11 at 23:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.