i,d like to know a way of make a query where i can find all dependencies of objects with a specific column in a specific table. I can do it with a table but i dont know how to do it with a column of that table
SELECT type,
name
FROM user_dependencies
WHERE referenced_name = 'table_name'
ORDER BY type,
name