Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在特定时间找出所有表中的行数(不取决于任何列值)?
谢谢!
try:
select sum(num_rows) from user_tables;
user_tables is a timesten table with useful information about the tables in the schema. It has a num_rows attribute that will give you what you are looking for.