Hi, I need to retreive the detailed structure for a given table (field_name, type, length and isnull ?).
I have this query that gives me the columns names:
select Column_name = isnull(c.name, 'NULL'),
Type = isnull(convert(char(30), x.xtname),
isnull(convert(char(30)...