We are doing a Visual Foxpro (DBF) to SQL Server conversion, but will retain the VFP GUI to now use the SQL Server database.

In several memo fields in VFP, we store a mix of ASCII characters and text.

What would be the best column datatype to store these values preferably without having to CAST?

Along these same lines, we also have times when we convert Word documents into a Memo file, for these, which field type in SQL Server would work the best?

Thanks for your help.

link|improve this question
3  
Is there a particular version of SQL Server that you are targeting? – JOpuckman Dec 7 '11 at 15:08
feedback

1 Answer

It depends on the version of SQL Server you are using. 2005 and newer support VARCHAR(MAX), which can store strings up to 2GB. Short strings are stored efficiently (in the row) while larger strings are automatically stored in a blob database area, with only a pointer to the blob stored in the row. From a developer's perspective you don't need to worry about this complexity and use VARCHAR(MAX) if your data can exceed 8000 characters.

As for your Word files, it depends if you want to store the actual file (in binary format) in the database or only the content. In the first case you could use VARBINARY(MAX) (or store the file on disk and only the path and other file meta data in SQL Server). If you want to store the actual content you will need to first convert to some suitable format (Rich Text, XML, etc.) and then store that in VARCHAR(MAX).

NOTE: use NVARCHAR instead of VARCHAR if your data contains unicode characters (rather than just ASCII)

link|improve this answer
1  
Also note page limit for Nvarchar is 4000 characters due to increased storage requirements for unicode data. – JNK Dec 7 '11 at 15:41
I appreciate the feedback so far and here is some more info that might help. I am using SQL 2008 R2 and did try using the VarChar(max) field type, but received an error when trying to add the memo text with the embedded ASCII characters. – Jeffrey Clarke Dec 7 '11 at 16:13
what was the error message? – Andrew Rosca Dec 7 '11 at 16:28
I wasn't able to save the msg and when I try to enter the SQL string in the Query Window, it will not accept the Insert code beyond where the embedded ASCII char is..I can't even paste it here. I'll try Altering to a VARBINARY and see if I have better results. – Jeffrey Clarke Dec 7 '11 at 16:39
I am not sure what you mean by "embedded ASCII." Can you elaborate? – Andrew Rosca Dec 7 '11 at 18:02
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.