码迷,mamicode.com
首页 > 数据库 > 详细

GP数据库笔记—表结构查询,表占用空间查询

时间:2015-07-22 11:05:42      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:character   where   数据库   空间   

GP数据库中表结构查询的方法:

select d.nspname

      ,obj_description(d.oid)

      ,c.relname

      ,obj_description(c.oid)

      ,a.attnum

      ,a.attname

      ,e.data_type

      ,col_description(c.oid,a.attum)

      ,e.is_nullable

      ,case where e.data_type ~  ‘character‘

                  then e.character_maximum_length|| ‘‘

            where e.data_type ~  ‘numeric‘

                  then (((‘(‘||e.numeric_precision)||‘,‘)||e.numeric_scale)||‘)‘

            else ‘‘

       end

 from pg_class

 left join pg_acctribute a

   on a.atttypid = t.oid

 join pg_namespace d

    on d.oid = c.relnamespace

   and d.nspname not like ‘pg_%‘

  join information_schema.cloumns e

    on c.relname = e.table_name::name

   and a.attnum = e.ordinal_position

   and e.table_schema::name = d.nspname

 where c.relname !~ ‘pg|prt‘

   and a.attnum > 0

 order by d.nspname

         ,c.relname

         ,a.attnum

;


GP数据库占用表空间

select pg_size_pretty(pg_relation_size(‘schema_name.table_name‘));

select pg_size_pretty(pg_database_size(‘db_name‘));

GP数据库笔记—表结构查询,表占用空间查询

标签:character   where   数据库   空间   

原文地址:http://6666613.blog.51cto.com/6656613/1676882

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!