Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何查找在 oracle 触发器中使用的所有对象(如序列、表、视图、函数、sp、pkg)?
请帮我。
谢谢。
你可以使用,
select * from user_dependencies where type = 'TRIGGER';
除了 user_,您还可以使用 all_ 或 dba_ 来查看更多详细信息。