• Or you could do something like....

    SELECTi.rows

    FROM[linkedserver].[linkeddb].dbo.sysindexes i

    INNER JOIN [linkedserver].[linkeddb].dbo.sysobjects o ON i.id = o.id

    WHEREo.name = 'HereGoesTheTable'

    AND i.indid < 2

    --Ramesh