我想从 oracle 数据库模式中检索所有触发器名称。
我使用 getFunctions 来检索所有函数,但我找不到其他类型的函数。
DatabaseMetaData dbmd;
ResultSet result = dbmd.getFunctions(null, Ousername, null);
这是一些创建的类型:
create type FINAL_obj is object (acode integer,performance Float);
create type FINAL_tab is table of FINAL_obj;