1)获取指定表空间下表数量(这是包含了此表空间下的所有用户的表)
select count(1) from all_tables where tablespace_name = '表空间名称';
2)获取指定表空间下,指定用户的表数量
select count(1) from all_tables where tablespace_name = '表空间名称' and owner = '用户名称';
3)如果将count(1)换成星号,就可以查询表空间下的所有表名信息等等
ngnix ./configure: error: the HTTP rewrite module requires the PCRE library.
2022-08-15