You don't say which version of ArcSDE you're using, but SE_CLOB_TYPE and SE_NCLOB_TYPE
columns would be the moral equivalents of a MEMO field (STRING and NSTRING are limited
to 4000 bytes, so they couldn't hold a full 64k memo). CLOBs would be half the storage of
NCLOBs if you have limited non-ASCII data in them , or they could be 2-3 times larger if
you were storing all non-ASCII . Then again, if you know the memos only contain 400
character strings, you can use the VARCHAR types.
Given the Access source, ArcObjects is going to be your easiest tool for extracting the data
and transferring to the business table, but you still have some work to engineer a solution
to maintain the table after edit. The ways to accomplish this are legion, but the best method
is dependent on the frequency of update, number of rows (total and changed), and whether
you want this to be an automated process.
- V