I'm in a project which requires me to query a database and generate ad-hoc reports with the columns specified by the user.
When I was working with DB2 on a different database with little documentation about the tables and columns available I could also use queries like the ones mentioned below to get what I was looking for
select * from syscat.procedures where procschema like 'ABCD' and text like '%your text%';
select * from syscat.columns where tabschema like 'ABCD' and colname like '%yourtext%';
In my new project, I'll be working with Oracle on a different database and this time I have no document which could tell me what information is in which column. Also, there is nobody in this project who could assist me with this.
Are there any such queries in Oracle like the ones I mentioned above from DB2 which could help me find what I need from the database?


