在postgres中查找模式中所有表行的计数

时间:2014-12-18 06:22:52

标签: postgresql

我使用以下命令获取oracle 11g中架构中每个表行的计数。要在postgres中做同样的事情,应该做出哪些改变? D6是模式名称

查询:

select
table_name,
to_number(
   extractvalue(
      xmltype(
         dbms_xmlgen.getxml('select count(*) D6 from '||table_name))
,'/ROWSET/ROW/D6')) count
from user_tables;


Error:

ERROR:  relation "user_tables" does not exist
LINE 8: from user_tables;
             ^


********** Error **********

ERROR: relation "user_tables" does not exist
SQL state: 42P01
Character: 163

显示以下错误。应该做些什么改变?

0 个答案:

没有答案