Let's say that I have few schemas A, B, C, D (in reality they are like 10+). I'm trying to search for a specific data type in all of my schemas and I'm using the system table ALL_OBJECTS. The thing which I hope I can sidestep is executing the same query:
SELECT * FROM ALL_OBJECTS WHERE OBJECT_NAME LIKE '%something%';
manually through all schemas.
Is there an easy way to execute the script above for all of the schemas at once? Thanks in advance!