Forum Discussion
If the source is MSSQL then you can use SQL Execute snap and run below query
select object_name(object_id) as [table name], sum(row_count) as [row count]
from sys.dm_db_partition_stats
where index_id < 2
– and object_name(object_id) in (‘tbl1’,‘tbl2’,‘tbl3’)
group by object_name(object_id)
Related Content
- 2 years ago
- 2 years ago
- 3 years ago
- 4 years ago