在PostgreSQL中找到函数

时间:2013-07-09 16:36:07

标签: postgresql sql-function

我有一个包含37个模式的PostgreSQL数据库> 500个功能。我正在尝试找到一个特定的函数,但是当我在pgAdmin中手动浏览数据库树时却没有看到它。

PostgreSQL中是否有命令可以找到特定函数所在的模式?

感谢。

1 个答案:

答案 0 :(得分:2)

您可以使用information_schema.routines执行此操作:

SELECT specific_schema,  specific_catalog, routine_schema, routine_catalog 
FROM  information_schema.routines
WHERE routine_name = 'X' AND routine_type = 'FUNCTION';