Applicable for Oracle version 12.1.0.2.0.
Workflow manager is a component used for Orchestrating of Oracle Warehouse Builder (OWB).
If you have a schema called OWF_MGR dangling in your database, it can be removed. I did it the following way:
Find the number of grants per user from OWF_MGR:
SELECT UNIQUE GRANTEE,COUNT(*) FROM DBA_TAB_PRIVS WHERE OWNER='OWF_MGR' GROUP BY GRANTEE;
This query gave me to grantees: PUBLIC and the role WF_PLSQL_UI.
Revoke the privileges granted. Generate the revoke statements:
select 'revoke execute on '|| owner ||'.' || table_name || ' from WF_PLSQL_UI;' from dba_tab_privs where owner='OWF_MGR' AND grantee='WF_PLSQL_UI';
Generate the same statements for PUBLIC.
Drop the role:
drop role WF_PLSQL_UI;Finally, drop the user with the cascade option:
drop user owf_mgr cascade;
I found this information here
No comments:
Post a Comment