There's no place like sysindexes in Teradata which keeps the rowcount.
You need to run multplie SELECTs like
SELECT
(SELECT COUNT(*) FROM tab1) as cnt1,
(SELECT COUNT(*) FROM tab2) as cnt2,
...
Or you extract tha info from the stats, it's not exact, but if stats are mantained regularily it might be good enough.
Dieter
There's no place like sysindexes in Teradata which keeps the rowcount.
You need to run multplie SELECTs like
Or you extract tha info from the stats, it's not exact, but if stats are mantained regularily it might be good enough.
Dieter