sql >> Database >  >> Database Tools >> SSMS

SQL Server Management Studio - Alle niet-lege tabellen vinden

Je zou kunnen proberen met behulp van sysindexes en INFORMATION_SCHEMA.TABLES :)

SELECT 'Table Name'=convert(char(25),t.TABLE_NAME),
      'Total Record Count'=max(i.rows)
FROM sysindexes i, INFORMATION_SCHEMA.TABLES t
WHERE t.TABLE_NAME = object_name(i.id)
      and t.TABLE_TYPE = 'BASE TABLE'
GROUP BY t.TABLE_SCHEMA, t.TABLE_NAME
HAVING max(i.rows)>0
ORDER BY 'Total Record Count' DESC


  1. DBeaver 22.0

  2. Wat doen Interne Relaties in phpMyAdmin voor MyISAM-tabellen?

  3. Een query schrijven om enkele scripts te genereren om enkele kolommen in de hele database te hernoemen

  4. Hoe inline bewerken op cel uit te schakelen KLIK in PHPmyadmin