<?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: extracting data from an mxd using ModelBuilder in ModelBuilder Questions</title>
    <link>https://community.esri.com/t5/modelbuilder-questions/extracting-data-from-an-mxd-using-modelbuilder/m-p/764253#M2499</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Try this snippet of code from exporting the following tool from ModelBuilder&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Server Tools-&amp;gt;Data Extraction-&amp;gt;Extract Data Task&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Import arcpy module&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import arcpy&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Local variables:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Area_of_Interest = "in_memory\\{CD30411C-DFE5-4ACF-A010-0928C2A4B66C}"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Output_Zip_File = "%scratchworkspace%\\output.zip"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Process: Extract Data Task&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.ExtractDataTask_server("", Area_of_Interest, "File Geodatabase - GDB - .gdb", "ESRI GRID - GRID", Output_Zip_File)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Feb 2014 19:12:51 GMT</pubDate>
    <dc:creator>MichaelVolz</dc:creator>
    <dc:date>2014-02-04T19:12:51Z</dc:date>
    <item>
      <title>extracting data from an mxd using ModelBuilder</title>
      <link>https://community.esri.com/t5/modelbuilder-questions/extracting-data-from-an-mxd-using-modelbuilder/m-p/764251#M2497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I am trying to use ModelBuilder to automate a process that I do to create a personal geodatabase for our field laptops. In ArcToolBox I can't find the "Extract Data" button that is in the Distributed Geodatabase toolbar. Does any one know how to extract the layers in an MXD to a personal geodatabase using modelbuilder? Below are the steps that I am trying to automate using modelbuilder.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Steps to CreatingNew Field Laptop Data&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Open \\srvch-gisapp1\ArcGIS MXDs\ IAMS\Water Utilities\ForExtractionToLaptopRevised.mxd &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Extract data in map to: \\srv-gisapptier\CityWorks\downloads as gisdata_date.mdb (example: gisdata11_20_2011.mdb)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. Copy .loc files to from (old) geodatabase to gisdata_date.mdb&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;4. Rename gisdata.mdb to gisdatabackup&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;5. Rename gisdata_date.mdb to gisdata.mdb&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;6. Zip the new gisdata.mdb file. Hint right click and �??Send to�?� zip file&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jan 2012 18:04:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/modelbuilder-questions/extracting-data-from-an-mxd-using-modelbuilder/m-p/764251#M2497</guid>
      <dc:creator>ScottKelly</dc:creator>
      <dc:date>2012-01-17T18:04:08Z</dc:date>
    </item>
    <item>
      <title>Re: extracting data from an mxd using ModelBuilder</title>
      <link>https://community.esri.com/t5/modelbuilder-questions/extracting-data-from-an-mxd-using-modelbuilder/m-p/764252#M2498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I hate coming across posts with not even one attempt at an answer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Consolidate Map Geoprocessing tool would do part of what you're wanting to accomplish and could easily be added to your model in model builder.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Feb 2014 18:57:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/modelbuilder-questions/extracting-data-from-an-mxd-using-modelbuilder/m-p/764252#M2498</guid>
      <dc:creator>EdwardEllis</dc:creator>
      <dc:date>2014-02-04T18:57:57Z</dc:date>
    </item>
    <item>
      <title>Re: extracting data from an mxd using ModelBuilder</title>
      <link>https://community.esri.com/t5/modelbuilder-questions/extracting-data-from-an-mxd-using-modelbuilder/m-p/764253#M2499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Try this snippet of code from exporting the following tool from ModelBuilder&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Server Tools-&amp;gt;Data Extraction-&amp;gt;Extract Data Task&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Import arcpy module&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import arcpy&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Local variables:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Area_of_Interest = "in_memory\\{CD30411C-DFE5-4ACF-A010-0928C2A4B66C}"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Output_Zip_File = "%scratchworkspace%\\output.zip"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Process: Extract Data Task&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.ExtractDataTask_server("", Area_of_Interest, "File Geodatabase - GDB - .gdb", "ESRI GRID - GRID", Output_Zip_File)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Feb 2014 19:12:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/modelbuilder-questions/extracting-data-from-an-mxd-using-modelbuilder/m-p/764253#M2499</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2014-02-04T19:12:51Z</dc:date>
    </item>
    <item>
      <title>Re: extracting data from an mxd using ModelBuilder</title>
      <link>https://community.esri.com/t5/modelbuilder-questions/extracting-data-from-an-mxd-using-modelbuilder/m-p/764254#M2500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are attempting to extract data from a geodata service into a geodatabase, the relevant Extract Data Tool from the Distributed Geodatabase toolbar is apparently only available for automation with a licensed Production Mapping extension - see &lt;A href="https://community.esri.com/thread/167464"&gt;Extract Data Tool/Wizard not available in arcpy&lt;/A&gt;.&amp;nbsp; If the service contains data from a versioned SDE geodatabase, you can create a replica without the Production Mapping extension.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jun 2017 19:50:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/modelbuilder-questions/extracting-data-from-an-mxd-using-modelbuilder/m-p/764254#M2500</guid>
      <dc:creator>JustinConnerWR</dc:creator>
      <dc:date>2017-06-12T19:50:11Z</dc:date>
    </item>
  </channel>
</rss>

