Reputation: 8548
I have a table where fields are 40 varchars long, but from time to time I would have to store text ( 250-1000 characters long ) there. What would be the best solution, to try and fit it into the table or just make a separate text file associated with each table?
Thanks!
Upvotes: 0
Views: 928
Reputation: 36092
Better to keep everything in the database, then you don't have to jump through loops when accessing the database remotely ( or when doing backups )
Upvotes: 3