I have a table with a varchar(max) column that stores text ~4-10KB in size. Data is just being added - never modified, it is a log. My problem is that a table grows too large in size - I would like to keep about 1000000 rows in this table.
I am limited to SQL Server Express and hit the limit on database size. Compression is not available in SQL Server Express and I am afraid that Filestream may not be appropriate and the number of files would be too big.
What is the best solution in this case?