我想从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;
答案 0 :(得分:0)
您可以使用元数据来完成。
DatabaseMetaData dbmd = dbConnection.getMetaData();
ResultSet result = dbmd.getTables("%", Ousername, "%", new String[]{ "TYPE" });
while (result.next()) {
result.getString("TABLE_NAME")
}