Subject | Re: Current_User rights |
---|---|
Author | Adam |
Post date | 2005-08-25T02:58:20Z |
> I have an employee table that stores US social security numbers and IThat is what I would do, however in addition I would encrypt such data.
> want to exclude access from non-administrators on this type of column
> (including rate of pay).
>
> I know I can limit access to the table itself and make a view of only
> the non-confidential columns, but I wonder if this is the best way?
Of course there is no real way of protecting the private key if you do
not control the server, but it is at least better than nothing.
You could also store it in a different table, payroll could join to
that table to retrieve the SSN, you could disallow everyone else. Just
another option.
>I suppose you could write a Stored Procedure that does what you need
> Could I also just check if the CURRENT_USER has administrative rights
> to a table and then just run a different query? If possible, how?
>
(in fact even a view with a case statement might work), but it sounds a
bit overcomplicated to me.
Adam