A new index is created on an existing table i.e
CREATE INDEX MENUINDX##EXECMODE ON MENUINDX(U##EXECMODE, PROGRESS_RECID);
I need a mechanism to query back preferably all new indexes created or all indexes on Tables owned by user A. And then issue a command similar to
update menuindex
set U##EXECMODE=upper EXECMODE;

So that all U## fields have a value which is the uppercase equivalant to fields with similar name i.e Execmode = will hold lowercase value and U##Execmode will hold uppercase value.

--------------------------------------------------------------------------------