sql server, is it possible to determine how much s...
# sql
w
sql server, is it possible to determine how much storage a particular column in a table is consuming (rather than the table as a whole)?
p
Yea I believe its
SELECT DATALENGTH(yourcolumn) AS daSize
w
thanks, was hoping there was a dmv for it
the table is 15gigs and most of it is in one col
s
is it a json column?
w
varchar(max) but used for json storage. not json datatype per se