The row-level-security tag has no wiki summary.
7
votes
2answers
424 views
How to implement row-level security in Java?
I am currently evaluating authentication / authorization frameworks.
Apache Shiro seems to be very nice but I am missing row-level security features.
E.g. there might be special rows in a database ...
6
votes
3answers
2k views
Row Level Security with Entity Framework
I've been trying to consider how Row Level Security could be implemented with the Entity Framework. The idea is to have a database agnostic means that would offer methods to restrict the rows coming ...
3
votes
1answer
393 views
Oracle Row Level Security in multi-tenant app / default values for new records
Task
Retrofit an existing application to use a multi-tenant approach. It shall be possible to create tenants and each user's session should reference exactly one active tenant. Each tenant should ...
2
votes
2answers
216 views
Implementing Row Level Security in SQL Server 2008
Is there a built-in feature, or way to simulate RLS(Row Level Security) in SQL Server 2008 as found in Oracle?
2
votes
2answers
151 views
Zend_Db_Select row level security
How could I accomplish row level security using Zend_Db_Select? I can think of a few options, but they don't really seem to fit the pattern quite right.
Let's say I have users, content, and many ...
2
votes
3answers
588 views
Database independent row level security solution
does anybody knows about Java/C# database independent authorization library. This library should support read, write, delete, insert actions across company organizational structure.
Something like ...
2
votes
3answers
1k views
Implementing Row-Level Security – (SPs vs LINQ to Objects)
I believe this is more a question about best practices and design than anything else. I tried searching for similar queries regarding this but couldn’t find any. I actually found the Row Level ...
1
vote
2answers
144 views
Webapp: Mysql: Row level security. Pro/cons? A better way to do this?
I am trying to emulate row level security on a webapp I am developing using MySQL.
Using this method: Creating a database with the the required tables where the data pertaining to all the users will ...
1
vote
1answer
193 views
Oracle VPD how to reference the table
I'm struggling with the following problem. I want to restrict access to a table using Oracle VPD. In the where clause that the select policy function returns I need a reference to the table in a ...
1
vote
1answer
161 views
Does altering or drop-recreating a table in oracle affects the policies defined on it
If i have a table and a defined policy on it then do I need to redefine the policy if I drop and recreate the table or alter it, provided that the alteration or the recreation of the table does not ...
1
vote
1answer
206 views
in Oracle RLS, when using a predicate to filter a table, then in a second predicate on another table, if i reference the first table, is the first predicate in effect or not?
I use the Oracle VPD facility(aka RLS, aka FGAC).
Suppose that i use the predicate
'(WHERE) id = 'XXXX''
on TableA and then i use the predicate
'(WHERE) col in (SELECT col From TableA)'
on TableB.
...
0
votes
3answers
172 views
How to get permissions in cakePHP
First, sorry for my language skills, I am not used to writing in English. ;)
I'm trying to develop my first cakePHP application.
What I'm trying to do:
Users are in groups and groups have
access ...
0
votes
1answer
98 views
Looking for tips on debugging Oracle row-level security functions
I'm looking for tips in debugging some of my row-level security predicates in an Oracle database. These predicates use a few concepts to determine whether the current user can see a record:
current ...