Ads

Captured Technology - Blog

Getting a List of SQL Database Tables with One Statement


SELECT 
    [TableName] = so.name, 
    [RowCount] = MAX(si.rows) 
FROM 
    sysobjects so, 
    sysindexes si 
WHERE 
    so.xtype = 'U' 
    AND 
    si.id = OBJECT_ID(so.name) 
GROUP BY 
    so.name 
ORDER BY 
    2 DESC

Blog Directory

Latest technology news.
 Patrick Stevens
 536  246405  4/17/2024

Translate

Categories

Blog Calendar