Should I create a text field or a different type of field? Is there anything else I should know before writing the insertion script? ...Or the select scripts?
A:
You can also use CLOB (Character Large Object). Depends upon the length of data you are storing.
Faisal Feroz
2010-09-20 07:28:24
A:
It's a good idea to store large sections of text in a separate table. This second table only needs an id and a text columns. Do all of your selects on your "meta information" table and then select the text blobs you need from your second table once you have a list of ids.
joebert
2010-09-20 09:59:56