SQL Server – Feldname und Feldtyp aller Tabellen

select TABLE_NAME, COLUMN_NAME, data_type
from INFORMATION_SCHEMA.COLUMNS
order by TABLE_NAME, ORDINAL_POSITION

Die Kommentare sind geschlossen.