<?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 Re: Cannot insert features into SDE Geodatabase in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/cannot-insert-features-into-sde-geodatabase/m-p/223356#M12647</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try increasing the size of the tablespace and check if that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, you can check whether Auto-extend is on or not using the below SQL:&lt;/P&gt;&lt;P&gt;--------------------&lt;/P&gt;&lt;P&gt;select file_name,tablespace_name,autoextensible from dba_data_files&lt;/P&gt;&lt;P&gt;where tablespace_name=’&lt;STRONG&gt;SDE_TBS&lt;/STRONG&gt;’;&lt;/P&gt;&lt;P&gt;--------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can turn Autoextend on using something like this:&lt;/P&gt;&lt;P&gt;----------------------&lt;/P&gt;&lt;P&gt;alter database datafile&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; '&lt;STRONG&gt;C:\APP\PRODUCT\11.2.0\DBHOME_1\DATABASE\SDE_TBS&lt;/STRONG&gt;'&lt;/P&gt;&lt;P&gt;autoextend on&lt;/P&gt;&lt;P&gt;maxsize unlimited;&lt;/P&gt;&lt;P&gt;---------------------&lt;/P&gt;&lt;P&gt;The ones in &lt;STRONG&gt;Bold&lt;/STRONG&gt; are the ones that you need to change as per your environment&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Jun 2015 16:55:44 GMT</pubDate>
    <dc:creator>AsrujitSengupta</dc:creator>
    <dc:date>2015-06-26T16:55:44Z</dc:date>
    <item>
      <title>Cannot insert features into SDE Geodatabase</title>
      <link>https://community.esri.com/t5/data-management-questions/cannot-insert-features-into-sde-geodatabase/m-p/223350#M12641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;Can you help me solve a problem which has the following symptoms please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I export a feature class from our ArcSDE Enterprise Geodatabase to a local file geodatabase (using FeatureClassToFeatureClass) and then I want to import the feature class back from the local file geodatabase to the SDE geodatabase (using FeatureClassToFeatureClass) as a new feature class with a new name but I get the following kind of response (with a point feautre class):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;Executing: FeatureClassToFeatureClass C:\dt\tmp.gdb\fc "Database Connections\THEDB.sde" fc_import # "ID "ID" true true false 4 Long 0 0 ,First,#,C:\dt\tmp.gdb\fc,ID,-1,-1;SRC_ID "SRC_ID" true true false 4 Long 0 0 ,First,#,C:\dt\tmp.gdb\fc,SRC_ID,-1,-1;NAME "NAME" true true false 50 Text 0 0 ,First,#,C:\dt\tmp.gdb\fc,NAME,-1,-1;COUNTRY_CODE "COUNTRY_CODE" true true false 30 Text 0 0 ,First,#,C:\dt\tmp.gdb\fc,COUNTRY_CODE,-1,-1;EASTING "EASTING" true true false 4 Long 0 0 ,First,#,C:\dt\tmp.gdb\fc,EASTING,-1,-1;NORTHING "NORTHING" true true false 4 Long 0 0 ,First,#,C:\dt\tmp.gdb\fc,NORTHING,-1,-1;HYDROMETRIC_AREA "HYDROMETRIC_AREA" true true false 2 Short 0 0 ,First,#,C:\dt\tmp.gdb\fc,HYDROMETRIC_AREA,-1,-1;ELEVATION "ELEVATION" true true false 8 Double 0 0 ,First,#,C:\dt\tmp.gdb\fc,ELEVATION,-1,-1;GEOG_PATH "GEOG_PATH" true true false 50 Text 0 0 ,First,#,C:\dt\tmp.gdb\fc,GEOG_PATH,-1,-1;FIRST_DAY "FIRST_DAY" true true false 8 Date 0 0 ,First,#,C:\dt\tmp.gdb\fc,FIRST_DAY,-1,-1;FIRST_YEAR "FIRST_YEAR" true true false 2 Short 0 0 ,First,#,C:\dt\tmp.gdb\fc,FIRST_YEAR,-1,-1;LATEST_DAY "LATEST_DAY" true true false 8 Date 0 0 ,First,#,C:\dt\tmp.gdb\fc,LATEST_DAY,-1,-1;LATEST_YEAR "LATEST_YEAR" true true false 2 Short 0 0 ,First,#,C:\dt\tmp.gdb\fc,LATEST_YEAR,-1,-1" #
Start Time: Thu Jun 25 10:23:17 2015
WARNING 000597: Failed to insert input record with FeatureID 3966.
WARNING 000595: C:\foo\bar.fid contains the full list of features not able to be copied.
WARNING 000597: Failed to insert input record with FeatureID 3967.
...
WARNING 000597: Failed to insert input record with FeatureID 4000.
ERROR 000224: Cannot insert features
ERROR 000224: Cannot insert features
Failed to execute (FeatureClassToFeatureClass).
Failed at Thu Jun 25 10:23:27 2015 (Elapsed Time: 10.80 seconds)
&lt;/PRE&gt;&lt;P&gt;It has happened with more than one feature class but it does not happen with every feature class. Everything I found about this problem suggests that this problem can occur if the feature that is being inserted has a geometry or attribute value that is not suitable for the data type in the output geodatabase but I cannot find any mismatch (or don't know how to find it) and I would expect ArcGIS to handle this when it's a transfer "from ArcGIS to ArcGIS". &lt;/P&gt;&lt;P&gt;Some features get inserted OK. I looked at some of the features listed in the warning messages but I cannot see anything wrong with them.&lt;SPAN style="line-height: 1.5;"&gt;I tried CopyFeatures but it produced the same result.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;All parts are at version 10.2.2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any hint welcome!&lt;/P&gt;&lt;P&gt;Filip.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 10:52:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/cannot-insert-features-into-sde-geodatabase/m-p/223350#M12641</guid>
      <dc:creator>FilipKrál</dc:creator>
      <dc:date>2021-12-11T10:52:05Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot insert features into SDE Geodatabase</title>
      <link>https://community.esri.com/t5/data-management-questions/cannot-insert-features-into-sde-geodatabase/m-p/223351#M12642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which DBMS are you using?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you check the reported features for any invalid attributes?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just a hunch, is there any DATE field in that fc? If yes, check if the dates are valid.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2015 15:55:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/cannot-insert-features-into-sde-geodatabase/m-p/223351#M12642</guid>
      <dc:creator>AsrujitSengupta</dc:creator>
      <dc:date>2015-06-25T15:55:21Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot insert features into SDE Geodatabase</title>
      <link>https://community.esri.com/t5/data-management-questions/cannot-insert-features-into-sde-geodatabase/m-p/223352#M12643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&amp;nbsp; create a new, empty feature class of the same geometry type as the one in your FGDB; use the FGDB as the basis of the projection properties and attribute table.&amp;nbsp; Use the simple data loader to 'move' your FGDB features into your new SDE feature class. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The results should tell you something:&amp;nbsp; if it all goes well, Asrujit is spot on.&amp;nbsp; If it doesn't go well, there's more to this than we are thinking...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2015 19:08:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/cannot-insert-features-into-sde-geodatabase/m-p/223352#M12643</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2015-06-25T19:08:47Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot insert features into SDE Geodatabase</title>
      <link>https://community.esri.com/t5/data-management-questions/cannot-insert-features-into-sde-geodatabase/m-p/223353#M12644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;The underlying DBMS is Oracle 11g (11.2.0.4.0 - 64 bit).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are some dates in the feature class but they are valid dates or null.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Joe, I tried your suggestions and I get the following error roughly at the the point where the loading could reach the first failing feature.&lt;/P&gt;&lt;P&gt;&lt;CODE class="jive-code" style="font-weight: inherit; font-style: inherit;"&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/113568_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;Does it make any sense to you? Have I run out of space? That would seem odd.&lt;/P&gt;&lt;P&gt;Filip.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jun 2015 08:41:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/cannot-insert-features-into-sde-geodatabase/m-p/223353#M12644</guid>
      <dc:creator>FilipKrál</dc:creator>
      <dc:date>2015-06-26T08:41:32Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot insert features into SDE Geodatabase</title>
      <link>https://community.esri.com/t5/data-management-questions/cannot-insert-features-into-sde-geodatabase/m-p/223354#M12645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Filip- I'm not an Oracle guy, but it sure sounds like something is amiss with it. Perhaps Vince Angelo will notice this thread and chime in. In the mean time, I would google some of the key words in the error message and see what you find.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Edited moments later: I just googled the phrase ' oracle unable to extend table space and found a treasure trove.&amp;nbsp;&amp;nbsp; This is first return:&lt;A href="https://community.oracle.com/thread/436959?tstart=0" title="https://community.oracle.com/thread/436959?tstart=0"&gt;-1653: ORA-01653: unable to extend table | Oracle Community&lt;/A&gt;&amp;nbsp; ]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jun 2015 13:18:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/cannot-insert-features-into-sde-geodatabase/m-p/223354#M12645</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2015-06-26T13:18:59Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot insert features into SDE Geodatabase</title>
      <link>https://community.esri.com/t5/data-management-questions/cannot-insert-features-into-sde-geodatabase/m-p/223355#M12646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rather than import, have you tried copying and pasting from the FGDB to your SDE?&amp;nbsp; I've seen where this works better at times.&amp;nbsp; I've never dug deep into the reasons but it has gotten me by in a pinch.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jun 2015 13:44:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/cannot-insert-features-into-sde-geodatabase/m-p/223355#M12646</guid>
      <dc:creator>MelissaNorthey</dc:creator>
      <dc:date>2015-06-26T13:44:24Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot insert features into SDE Geodatabase</title>
      <link>https://community.esri.com/t5/data-management-questions/cannot-insert-features-into-sde-geodatabase/m-p/223356#M12647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try increasing the size of the tablespace and check if that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, you can check whether Auto-extend is on or not using the below SQL:&lt;/P&gt;&lt;P&gt;--------------------&lt;/P&gt;&lt;P&gt;select file_name,tablespace_name,autoextensible from dba_data_files&lt;/P&gt;&lt;P&gt;where tablespace_name=’&lt;STRONG&gt;SDE_TBS&lt;/STRONG&gt;’;&lt;/P&gt;&lt;P&gt;--------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can turn Autoextend on using something like this:&lt;/P&gt;&lt;P&gt;----------------------&lt;/P&gt;&lt;P&gt;alter database datafile&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; '&lt;STRONG&gt;C:\APP\PRODUCT\11.2.0\DBHOME_1\DATABASE\SDE_TBS&lt;/STRONG&gt;'&lt;/P&gt;&lt;P&gt;autoextend on&lt;/P&gt;&lt;P&gt;maxsize unlimited;&lt;/P&gt;&lt;P&gt;---------------------&lt;/P&gt;&lt;P&gt;The ones in &lt;STRONG&gt;Bold&lt;/STRONG&gt; are the ones that you need to change as per your environment&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jun 2015 16:55:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/cannot-insert-features-into-sde-geodatabase/m-p/223356#M12647</guid>
      <dc:creator>AsrujitSengupta</dc:creator>
      <dc:date>2015-06-26T16:55:44Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot insert features into SDE Geodatabase</title>
      <link>https://community.esri.com/t5/data-management-questions/cannot-insert-features-into-sde-geodatabase/m-p/223357#M12648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Indeed, you have run out of space, though there are multiple possible definitions of "space".&amp;nbsp; It looks like you've followed best practice, and created at least one tablespace in which to store user data.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The complexity comes from whether the tablespace is able to be extended -- &lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Available space on disk&lt;/LI&gt;&lt;LI&gt;Blocksize of tablespace&lt;/LI&gt;&lt;LI&gt;Whether BIGFILE keyword was used in tablespace creation&lt;/LI&gt;&lt;LI&gt;Whether backup policy mandates a fixed maximum on file data file size&lt;/LI&gt;&lt;LI&gt;The way the growth pattern was defined on both the tablespace and table.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Often an ORA-01653 occurs for simple reasons, and has simple solutions, but it sometimes means a major misconfiguration of the database (and/or DBTUNE scheme), so a review is necessary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- V&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jun 2015 17:28:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/cannot-insert-features-into-sde-geodatabase/m-p/223357#M12648</guid>
      <dc:creator>VinceAngelo</dc:creator>
      <dc:date>2015-06-26T17:28:35Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot insert features into SDE Geodatabase</title>
      <link>https://community.esri.com/t5/data-management-questions/cannot-insert-features-into-sde-geodatabase/m-p/223358#M12649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Our sys admin has increased the table space size (it was 32GB in size but only 198MB free, 99% used) and everything seems to work now. He's kicking himself for misreading the error message &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;P&gt;Thank you all for your help.&lt;/P&gt;&lt;P&gt;Filip.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jul 2015 13:30:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/cannot-insert-features-into-sde-geodatabase/m-p/223358#M12649</guid>
      <dc:creator>FilipKrál</dc:creator>
      <dc:date>2015-07-03T13:30:13Z</dc:date>
    </item>
  </channel>
</rss>

