<?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: Error 000433 in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/error-000433/m-p/588125#M46096</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Resolved: I had inadvertently changed the path of the identified workspace by one letter e.g.,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;arcpy.env.workspace = r"D:\WildlifeHealth\CWD_2017\GIS\RandomLocWork\Processing.gdb" vs&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;arcpy.env.workspace = r"D:\WildlifeHealth\CWD_2017\GIS\RandomLocsWork\Processing.gdb".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am still curious about the error message though. I have never seen it before and was unable to find any reference to it.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Bob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Nov 2017 20:29:58 GMT</pubDate>
    <dc:creator>bobwright</dc:creator>
    <dc:date>2017-11-16T20:29:58Z</dc:date>
    <item>
      <title>Error 000433</title>
      <link>https://community.esri.com/t5/python-questions/error-000433/m-p/588123#M46094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Greetings. I am getting this error when I do a Select_analysis on a polygon feature class. I scoured the web and cannot find a reference to what this means. Trying to write to a feature class that already exists? Below is the code and message. It is crashing on the last line of the code. Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;print "Creating subset of matching input polys..."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Select_analysis(InputPolysAll,LocResPolysTemp,"Year = "+Year)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Dissolve_management(LocResPolysTemp,LocResPolys,"LocRes")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddField_management(LocResPolys,"KEEP","SHORT")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.CalculateField_management(LocResPolys,"KEEP","0","PYTHON")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.MakeTableView_management(LocResPolys,"LocResPolysAsTableView")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddJoin_management("LocResPolysAsTableView","LocRes",LocResTableUnique,"LocRes","KEEP_COMMON")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.CalculateField_management("LocResPolysAsTableView","KEEP","1","PYTHON")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.RemoveJoin_management("LocResPolysAsTableView")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Select_analysis(LocResPolys,LocResPolysMatch, "KEEP = 1")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print ""&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Executing: Select InputPolys_LocRes_YBDTRRS_2017 D:\Users\rowright\Documents\ArcGIS\Default.gdb\MatchPolys_LocRes_YBDTRRS_2017 "KEEP = 1"&lt;/P&gt;&lt;P&gt;Start Time: Thu Nov 16 09:08:24 2017&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small;"&gt;ERROR 000433&lt;/SPAN&gt;&lt;SPAN style="color: #e60000; font-size: small;"&gt;: The output must be the same as input&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Failed to execute (Select).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2017 15:47:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000433/m-p/588123#M46094</guid>
      <dc:creator>bobwright</dc:creator>
      <dc:date>2017-11-16T15:47:59Z</dc:date>
    </item>
    <item>
      <title>Re: Error 000433</title>
      <link>https://community.esri.com/t5/python-questions/error-000433/m-p/588124#M46095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;could you try to emulate what is shown in the &lt;A href="http://desktop.arcgis.com/en/arcmap/latest/tools/analysis-toolbox/select.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;&lt;STRONG&gt;help topic&lt;/STRONG&gt;&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;where_clause &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'"CLASS" = \'4\''&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;# perhaps&lt;/SPAN&gt;

where_clause &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'"KEEP" = \'1\''&lt;/SPAN&gt;
&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 01:15:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000433/m-p/588124#M46095</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2021-12-12T01:15:58Z</dc:date>
    </item>
    <item>
      <title>Re: Error 000433</title>
      <link>https://community.esri.com/t5/python-questions/error-000433/m-p/588125#M46096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Resolved: I had inadvertently changed the path of the identified workspace by one letter e.g.,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;arcpy.env.workspace = r"D:\WildlifeHealth\CWD_2017\GIS\RandomLocWork\Processing.gdb" vs&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;arcpy.env.workspace = r"D:\WildlifeHealth\CWD_2017\GIS\RandomLocsWork\Processing.gdb".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am still curious about the error message though. I have never seen it before and was unable to find any reference to it.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Bob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2017 20:29:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000433/m-p/588125#M46096</guid>
      <dc:creator>bobwright</dc:creator>
      <dc:date>2017-11-16T20:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: Error 000433</title>
      <link>https://community.esri.com/t5/python-questions/error-000433/m-p/588126#M46097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My guess, if it was suppose to read/write from the same folder, and the output was defaulting to the env.workspace (which it couldn't find, so it tried the default .gdb) and the input maybe was explicitly set....it didn't like it.&amp;nbsp; Typos can cause strange errors if it can't find the path/gdb.&amp;nbsp; my 2 cents.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2017 21:09:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000433/m-p/588126#M46097</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2017-11-16T21:09:41Z</dc:date>
    </item>
  </channel>
</rss>

