안녕하세요.
저희는 PostgreSQL을 설치 후, 아래와 같은 권한을 각 계정에 주고 있습니다.
grant select, insert, delete, update on all tables in schema test to test_app;
grant select, insert, delete, update on alest schema taxbill_real to test_dml;
grant execute on all functions in schema test to test_app;
grant usage on all sequences in schema test to test_app;
grant usage on schema test to test_app;
grant execute on all functions in schema test to test_sel;
grant usage on all sequences in schema test to test_sel;
grant usage on schema test to test_sel;
grant execute on all functions in schema test to test_dml;
grant usage on all sequences in schema test to test_dml;
이 후에 생긴 Object에 대해서는 저 위의 권한을 다시 줘야 하는데..
이후에 새로생긴 Object 들에 대해서 트리거를 이용하여 위의 grant들을 자동으로 수행되게 할 수 있나요~?
감사합니다.
|