Among other fields, there are seven in my table that could potentially contain 8,000 characters each and I am concerned about the memory size that any given row will take. I don't want to go over the memory limit. I understand that the Text datatype actually uses multiple data pages in the database and only appears to be saved in the table, but I have also heard that it still packs on the memory. I really don't want to break those seven fields out into another table unless I have to.
I guess there are two questions: First, how can I find the maximum memory currently used by a row? Second, which uses more table/row memory: Text or Varchar(8000)?
Thanks!
I guess there are two questions: First, how can I find the maximum memory currently used by a row? Second, which uses more table/row memory: Text or Varchar(8000)?
Thanks!