i think the FGAS is beyond the scop of my assignement although i will add an explanation to suggest it as an alternative.
so what ive done is this:
this mean that the employee in org_unit 1100 can only view records of employees who are in org_unit 1100. This would mean i would have to grant all the employees in org_unit 1100 the same select privilige. Is there a better way i could be doing this that isnt too complicated?
create or replace view emp1100 as
select * from employee
where ou_id = 1100;
grant select on emp1100 to scott;
