<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Best way to publish data from a Micrososft Access Memo field to ArcGIS in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/best-way-to-publish-data-from-a-micrososft-access/m-p/574012#M32508</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have a user that is editing an Access database, and that table has a memo field, which apparently can hold up to 64,000 characters.&amp;nbsp; What is best way to convert that access table to exist as a feature class and maintain all the data in the memo field.&amp;nbsp; I am an ArcGIS person and I'm not totally familiar with all the special field types in oracle like nvarchar2, or varchar2, etc.&amp;nbsp; I know they exist, but how do I create a feature class with fields of these types?&amp;nbsp; or does ESRI even support that?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Something else to note, this access database regularly gets new records, so I'd also need a way to load in new records to SDE from Access, so its not just a one time process.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you for any help&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-Andrew&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 May 2010 18:46:19 GMT</pubDate>
    <dc:creator>AndrewRudin</dc:creator>
    <dc:date>2010-05-04T18:46:19Z</dc:date>
    <item>
      <title>Best way to publish data from a Micrososft Access Memo field to ArcGIS</title>
      <link>https://community.esri.com/t5/data-management-questions/best-way-to-publish-data-from-a-micrososft-access/m-p/574012#M32508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have a user that is editing an Access database, and that table has a memo field, which apparently can hold up to 64,000 characters.&amp;nbsp; What is best way to convert that access table to exist as a feature class and maintain all the data in the memo field.&amp;nbsp; I am an ArcGIS person and I'm not totally familiar with all the special field types in oracle like nvarchar2, or varchar2, etc.&amp;nbsp; I know they exist, but how do I create a feature class with fields of these types?&amp;nbsp; or does ESRI even support that?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Something else to note, this access database regularly gets new records, so I'd also need a way to load in new records to SDE from Access, so its not just a one time process.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you for any help&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-Andrew&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 May 2010 18:46:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/best-way-to-publish-data-from-a-micrososft-access/m-p/574012#M32508</guid>
      <dc:creator>AndrewRudin</dc:creator>
      <dc:date>2010-05-04T18:46:19Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to publish data from a Micrososft Access Memo field to ArcGIS</title>
      <link>https://community.esri.com/t5/data-management-questions/best-way-to-publish-data-from-a-micrososft-access/m-p/574013#M32509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;sorry, forgot to mention, our SDE uses Oracle10g.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 May 2010 18:47:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/best-way-to-publish-data-from-a-micrososft-access/m-p/574013#M32509</guid>
      <dc:creator>AndrewRudin</dc:creator>
      <dc:date>2010-05-04T18:47:33Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to publish data from a Micrososft Access Memo field to ArcGIS</title>
      <link>https://community.esri.com/t5/data-management-questions/best-way-to-publish-data-from-a-micrososft-access/m-p/574014#M32510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You don't say which version of ArcSDE you're using, but SE_CLOB_TYPE and SE_NCLOB_TYPE&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;columns would be the moral equivalents&amp;nbsp; of a MEMO field (STRING and NSTRING are limited&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;to 4000 bytes, so they couldn't hold a full 64k memo).&amp;nbsp; CLOBs would be half the storage of&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;NCLOBs if you have limited non-ASCII data in them , or they could be 2-3 times larger if&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;you were storing all non-ASCII .&amp;nbsp; Then again, if you know the memos only contain 400 &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;character strings, you can use the VARCHAR types.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Given the Access source, ArcObjects is going to be your easiest tool for extracting the data&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;and transferring to the business table, but you still have some work to engineer a solution&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;to maintain the table after edit.&amp;nbsp; The ways to accomplish this&amp;nbsp; are legion, but the best method&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;is dependent on the frequency of update, number of rows (total and changed), and whether&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;you want this to be an automated process.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;- V&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 May 2010 20:53:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/best-way-to-publish-data-from-a-micrososft-access/m-p/574014#M32510</guid>
      <dc:creator>VinceAngelo</dc:creator>
      <dc:date>2010-05-04T20:53:32Z</dc:date>
    </item>
  </channel>
</rss>

