<?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 with Spatial ETL Tool in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/python-error-with-spatial-etl-tool/m-p/188983#M6452</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have a script for automating a Spatial ETL Tool that I have developed. This worked fine in 9.3.1, but when I run it in 10 I get an error. Any ideas?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jane&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;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.DailyJW_Jane("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;SPAN&gt;print "Finished"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Traceback (most recent call last):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; File "Z:\ESRI\Data\Replication\arcgis10_testing\dailyetl.py", line 39, in &amp;lt;module&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.DailyJW_Jane("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;SPAN&gt;AttributeError: Object: Tool or environment &amp;lt;s&amp;gt; not found&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Aug 2010 22:58:45 GMT</pubDate>
    <dc:creator>JaneWickers</dc:creator>
    <dc:date>2010-08-16T22:58:45Z</dc:date>
    <item>
      <title>Python error with Spatial ETL Tool</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/python-error-with-spatial-etl-tool/m-p/188983#M6452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have a script for automating a Spatial ETL Tool that I have developed. This worked fine in 9.3.1, but when I run it in 10 I get an error. Any ideas?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jane&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;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.DailyJW_Jane("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;SPAN&gt;print "Finished"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Traceback (most recent call last):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; File "Z:\ESRI\Data\Replication\arcgis10_testing\dailyetl.py", line 39, in &amp;lt;module&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.DailyJW_Jane("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;SPAN&gt;AttributeError: Object: Tool or environment &amp;lt;s&amp;gt; not found&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Aug 2010 22:58:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/python-error-with-spatial-etl-tool/m-p/188983#M6452</guid>
      <dc:creator>JaneWickers</dc:creator>
      <dc:date>2010-08-16T22:58:45Z</dc:date>
    </item>
  </channel>
</rss>

