【问题标题】:Distribution key missing in tables greenplum database表greenplum数据库中缺少分布键
【发布时间】:2018-08-20 23:58:26
【问题描述】:

需要一个查询来在 Greenplum 的数据库中查找没有分配键的表。

【问题讨论】:

    标签: greenplum


    【解决方案1】:
    select n.nspname,
        c.relname
    from pg_class c
    join pg_namespace n on c.relnamespace = n.oid
    join gp_distribution_policy d on c.oid = d.localoid
    where c.relkind = 'r'
    and d.attrnums is null;
    

    【讨论】:

      猜你喜欢
      • 2011-12-06
      • 1970-01-01
      • 1970-01-01
      • 2015-07-14
      • 2016-01-07
      • 2021-11-11
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多