Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- Criação de usuários
  2. --create user dbausernew with password 'no ron';
  3. --create user medicousernew with password 'no ron';
  4. --create user estagiariousernew with password 'no ron';
  5. --create user secretariousernew with password 'no ron';
  6.  
  7. -- Poder de Luta do Estagiário
  8. grant select(nome) on Paciente to estagiariousernew;
  9. grant select(nome) on Medico to estagiariousernew;
  10. grant select(data) on Consulta to estagiariousernew;
  11.  
  12. -- Poder de Luta do Médico
  13. grant all on paciente to medicousernew;
  14.  
  15. -- Poder de Luta do DBA
  16.  
  17. grant select(salario), update(salario) on funcionario to dbausernew;
  18.  
  19. -- Poder de Luta da Secretaria
  20.  
  21. --create view secretarioview as
  22. --select * from medico where numeroa=4;
  23.  
  24. grant select on secretarioview to secretariousernew;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement