Browse by Tags

All Tags » column length » sql server » T-sql (RSS)
Sorry, but there are no more tags available to filter with.

Maximum length of each column

How do I find out the maximum length of each column in a table? Here is the answer declare @sql varchar ( 8000 ), @table sysname select @table = 'your_table' , @sql = '' select @sql = @sql + 'select ''' + @table + '''...