If the table is in your own schema, no extra privileges are needed.
If the table is in a schema different from your own, you need object privileges to flashback the table:
grant flashback on scott.emp to jim;
or you can grant user jim a system privilege to flashback any table:
grant flashback any table to jim;
No comments:
Post a Comment