Is there a SQL script I can run in Oracle that will tell me which fields I have permission to Update?
EDIT:
I've tried these
select * from USER_COL_PRIVS_RECD
select * from DBA_COL_PRIVS
select * from USER_COL_PRIVS_MADE
select * from ALL_TAB_PRIVS_MADE
select * from ALL_TAB_PRIVS_RECD
and the only one that has results is the last one which shows table permissions but not column permissions.