using SQL Server 2005 standard edition with SP2
I need to design a table where I will be storing a text file (~200KB) along with filename ,description and datetime.
Should we design a table where varchar(max) and varbinary(max) data should be stored in a separate table or should column of LOB data types be part of the main table?
Per this thread What is the benefit of having varbinary field in a separate 1-1 table?
there is no performance or operational benefits which I agree to some extent however I can see two benefits
- store those into a separatable table that can be stored on a separate file group
- you can not rebuild index on a table containing lob data type ONLINE
Any suggestions would be appreciated.