<?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 Python error (arcgis10): SpatialETLTool not found in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/python-error-arcgis10-spatialetltool-not-found/m-p/141493#M4824</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've been successfully running the following python script which runs a Spatial ETL Tool that I have created in a custom toolbox.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# ---------------------------------------------------------------------------&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;# daily_etl_repln.py&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;# Created on: Mon Mar 30 2009 02:38:54 PM&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;#&amp;nbsp;&amp;nbsp; (generated by ArcGIS/ModelBuilder)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;# ---------------------------------------------------------------------------&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Import system modules&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import sys, string, os, arcgisscripting&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Create the Geoprocessor object&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp = arcgisscripting.create()&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Load required toolboxes...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.AddToolbox("Z:/ESRI/Data/Replication/Replication.tbx")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.AddToolbox("C:/Program Files/ArcGIS/Desktop10.0/ArcToolbox/Toolboxes/Data Management Tools.tbx")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.AddToolbox("C:/Program Files/ArcGIS/Desktop10.0/ArcToolbox/Toolboxes/Analysis Tools.tbx")&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.CheckOutExtension("DataInteroperability")&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.overwriteoutput = 1 &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Local variables...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase_ = "Z:\\ESRI\\Data\\test_Basemap.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase___2_ = "Z:\\ESRI\\Data\\Basemap.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase___3_ = "Z:\\ESRI\\Data\\Community_Facilities_Services.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase___4_ = "Z:\\ESRI\\Data\\Surveying.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase___5_ = "Z:\\ESRI\\Data\\Water_Reticulation.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase___6_ = "Z:\\ESRI\\Data\\Infrastructure.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase___7_ = "Z:\\ESRI\\Data\\Stormwater.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase___8_ = "Z:\\ESRI\\Data\\Sewer_Reticulation.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase___9_ = "Z:\\ESRI\\Data\\LEP2000_Gazetted.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase___10_ = "Z:\\ESRI\\Data\\DCP_Consolidated.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase___11_ = "Z:\\ESRI\\Data\\Planning_Section94.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase___12_ = "Z:\\ESRI\\Data\\Draft_LEP09_CEN.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase___13_ = "Z:\\ESRI\\Data\\Draft_LEP08_Constraints.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase___14_ = "Z:\\ESRI\\Data\\Draft_LEP08.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;### Process: DAILY: Oracle to FGDB Replication...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.toolbox = "Z:/ESRI/Data/Replication/Replication.tbx";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.SpatialETLTool("gisp", Destination_Geodatabase_, Destination_Geodatabase___2_, Destination_Geodatabase___3_, Destination_Geodatabase___4_, Destination_Geodatabase___5_, Destination_Geodatabase___6_, Destination_Geodatabase___7_, Destination_Geodatabase___8_, Destination_Geodatabase___9_, Destination_Geodatabase___10_, Destination_Geodatabase___11_, Destination_Geodatabase___12_, Destination_Geodatabase___13_, Destination_Geodatabase___14_,"gisp")&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;print "ETL Tool finished"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have updated the paths for the system toolboxes for arcGIS 10.0, but still get the following error:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Traceback (most recent call last):&lt;BR /&gt;&amp;nbsp; File "C:\Python26\ArcGIS10.0\Lib\site-packages\pythonwin\pywin\framework\scriptutils.py", line 325, in RunScript&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; exec codeObject in __main__.__dict__&lt;BR /&gt;&amp;nbsp; File "Z:\ESRI\Data\Replication\daily_etl_repln_arcgis10.py", line 41, in &amp;lt;module&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.SpatialETLTool("gisp", Destination_Geodatabase_, Destination_Geodatabase___2_, Destination_Geodatabase___3_, Destination_Geodatabase___4_, Destination_Geodatabase___5_, Destination_Geodatabase___6_, Destination_Geodatabase___7_, Destination_Geodatabase___8_, Destination_Geodatabase___9_, Destination_Geodatabase___10_, Destination_Geodatabase___11_, Destination_Geodatabase___12_, Destination_Geodatabase___13_, Destination_Geodatabase___14_,"gisp")&lt;BR /&gt;AttributeError: Object: Tool or environment &amp;lt;s&amp;gt; not found.&lt;BR /&gt;&lt;BR /&gt;Any ideas?&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;/STRONG&gt;&lt;SPAN&gt;Jane&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 Jul 2010 01:09:31 GMT</pubDate>
    <dc:creator>JaneWickers</dc:creator>
    <dc:date>2010-07-14T01:09:31Z</dc:date>
    <item>
      <title>Python error (arcgis10): SpatialETLTool not found</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/python-error-arcgis10-spatialetltool-not-found/m-p/141493#M4824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've been successfully running the following python script which runs a Spatial ETL Tool that I have created in a custom toolbox.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# ---------------------------------------------------------------------------&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;# daily_etl_repln.py&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;# Created on: Mon Mar 30 2009 02:38:54 PM&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;#&amp;nbsp;&amp;nbsp; (generated by ArcGIS/ModelBuilder)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;# ---------------------------------------------------------------------------&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Import system modules&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import sys, string, os, arcgisscripting&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Create the Geoprocessor object&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp = arcgisscripting.create()&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Load required toolboxes...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.AddToolbox("Z:/ESRI/Data/Replication/Replication.tbx")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.AddToolbox("C:/Program Files/ArcGIS/Desktop10.0/ArcToolbox/Toolboxes/Data Management Tools.tbx")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.AddToolbox("C:/Program Files/ArcGIS/Desktop10.0/ArcToolbox/Toolboxes/Analysis Tools.tbx")&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.CheckOutExtension("DataInteroperability")&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.overwriteoutput = 1 &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Local variables...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase_ = "Z:\\ESRI\\Data\\test_Basemap.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase___2_ = "Z:\\ESRI\\Data\\Basemap.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase___3_ = "Z:\\ESRI\\Data\\Community_Facilities_Services.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase___4_ = "Z:\\ESRI\\Data\\Surveying.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase___5_ = "Z:\\ESRI\\Data\\Water_Reticulation.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase___6_ = "Z:\\ESRI\\Data\\Infrastructure.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase___7_ = "Z:\\ESRI\\Data\\Stormwater.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase___8_ = "Z:\\ESRI\\Data\\Sewer_Reticulation.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase___9_ = "Z:\\ESRI\\Data\\LEP2000_Gazetted.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase___10_ = "Z:\\ESRI\\Data\\DCP_Consolidated.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase___11_ = "Z:\\ESRI\\Data\\Planning_Section94.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase___12_ = "Z:\\ESRI\\Data\\Draft_LEP09_CEN.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase___13_ = "Z:\\ESRI\\Data\\Draft_LEP08_Constraints.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination_Geodatabase___14_ = "Z:\\ESRI\\Data\\Draft_LEP08.gdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;### Process: DAILY: Oracle to FGDB Replication...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.toolbox = "Z:/ESRI/Data/Replication/Replication.tbx";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.SpatialETLTool("gisp", Destination_Geodatabase_, Destination_Geodatabase___2_, Destination_Geodatabase___3_, Destination_Geodatabase___4_, Destination_Geodatabase___5_, Destination_Geodatabase___6_, Destination_Geodatabase___7_, Destination_Geodatabase___8_, Destination_Geodatabase___9_, Destination_Geodatabase___10_, Destination_Geodatabase___11_, Destination_Geodatabase___12_, Destination_Geodatabase___13_, Destination_Geodatabase___14_,"gisp")&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;print "ETL Tool finished"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have updated the paths for the system toolboxes for arcGIS 10.0, but still get the following error:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Traceback (most recent call last):&lt;BR /&gt;&amp;nbsp; File "C:\Python26\ArcGIS10.0\Lib\site-packages\pythonwin\pywin\framework\scriptutils.py", line 325, in RunScript&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; exec codeObject in __main__.__dict__&lt;BR /&gt;&amp;nbsp; File "Z:\ESRI\Data\Replication\daily_etl_repln_arcgis10.py", line 41, in &amp;lt;module&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.SpatialETLTool("gisp", Destination_Geodatabase_, Destination_Geodatabase___2_, Destination_Geodatabase___3_, Destination_Geodatabase___4_, Destination_Geodatabase___5_, Destination_Geodatabase___6_, Destination_Geodatabase___7_, Destination_Geodatabase___8_, Destination_Geodatabase___9_, Destination_Geodatabase___10_, Destination_Geodatabase___11_, Destination_Geodatabase___12_, Destination_Geodatabase___13_, Destination_Geodatabase___14_,"gisp")&lt;BR /&gt;AttributeError: Object: Tool or environment &amp;lt;s&amp;gt; not found.&lt;BR /&gt;&lt;BR /&gt;Any ideas?&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;/STRONG&gt;&lt;SPAN&gt;Jane&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jul 2010 01:09:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/python-error-arcgis10-spatialetltool-not-found/m-p/141493#M4824</guid>
      <dc:creator>JaneWickers</dc:creator>
      <dc:date>2010-07-14T01:09:31Z</dc:date>
    </item>
  </channel>
</rss>

