You can get SQL Server table columns and sizes with this query. Just change “___TABLE___NAME___” value with your table name.
CREATE TABLE #temp
(
colname varchar(50) NULL,
collen int NULL
)
INSERT INTO #temp (colname, collen)
SELECT column_name, character_maximum_length
FROM INFORMATION_SCHEMA.COLUMNS
WHERE table_name = ‘___TABLE___NAME___’
and data_type in(‘varchar’,’char’,’nvarchar’,’nchar’)
SELECT * FROM #temp
DROP TABLE #temp