使用SQL查询在Postgresql中获取函数,序列,类型等的定义

时间:2012-08-27 20:11:43

标签: sql postgresql ddl

我需要PostgreSQL数据库对象的创建脚本。

我无法访问pg_dump。所以我必须通过SQL查询获得所有内容。我怎么能这样做?

3 个答案:

答案 0 :(得分:34)

要获得函数的定义,请使用pg_get_functiondef()

select pg_get_functiondef(oid)
from pg_proc
where proname = 'foo';

有类似的函数来检索索引,视图,规则等的定义。有关详细信息,请参阅手册:http://www.postgresql.org/docs/current/static/functions-info.html

获取用户类型的定义有点棘手。您需要查询information_schema.attributes

select attribute_name, data_type
from information_schema.attributes
where udt_schema = 'public'
  and udt_name = 'footype'
order by ordinal_postion;

由此您需要重新组合create type语句。

有关详细信息,您需要阅读系统目录的文档:http://www.postgresql.org/docs/current/static/catalogs.html

但如果他们返回相同的信息,您应该更喜欢information_schema次观看。

答案 1 :(得分:12)

您会发现psql -E有助于您完成这些查询 它显示psql在执行反斜杠命令时使用的查询 - 如\df+ myfunc,以获取有关此函数的详细信息。

答案 2 :(得分:3)

以下是使用pg_get_functiondef的完整示例查询:

WITH funcs AS (
  SELECT
    n.nspname AS schema
    ,proname AS sproc_name
    ,proargnames AS arg_names
    ,t.typname AS return_type
    ,d.description
    ,pg_get_functiondef(p.oid) as definition
  FROM pg_proc p
    JOIN pg_type t on p.prorettype = t.oid
    JOIN pg_description d on p.oid = d.objoid
    JOIN pg_namespace n on n.oid = p.pronamespace
  WHERE n.nspname = 'some_schema_name_here'
)
SELECT *
FROM funcs
;;

注意,您应该明确指定架构名称,(如果您使用该架构,则为“public”)