I currently am trying to synchronize a remote FoxPro database with a local SQL Server 2000 database. I am running across a memo (binary) data type in the FoxPro database. Up until today I have been using the SQL command "Convert(varchar(8000),CONVERT(varbinary(8000),frm_data))" and this is fine if the memo field isn't longer than 8000 characters. Well, today I ran across one that was 2,000 characters. My little work around so far has been to bring it into my .NET application and convert each byte into a character and then save those to a string. Is there a better way to do this using an SQL statement

FoxPro Image to SQL Char