我使用以下命令获取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
显示以下错误。应该做些什么改变?