<?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: How do I copy a geodatabase to a different location using arcpy? in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/how-do-i-copy-a-geodatabase-to-a-different/m-p/46115#M3706</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm pretty new to Python but thanks for the input. I will have to&amp;nbsp;give that a try so I can sharpen my skills.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Jul 2018 22:40:59 GMT</pubDate>
    <dc:creator>Anonymous User</dc:creator>
    <dc:date>2018-07-30T22:40:59Z</dc:date>
    <item>
      <title>How do I copy a geodatabase to a different location using arcpy?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-i-copy-a-geodatabase-to-a-different/m-p/46111#M3702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm wanting to make a copy of a geodatabase from one location on our network to another. Can anyone help?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2018 22:03:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-i-copy-a-geodatabase-to-a-different/m-p/46111#M3702</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2018-07-30T22:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: How do I copy a geodatabase to a different location using arcpy?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-i-copy-a-geodatabase-to-a-different/m-p/46112#M3703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I started writing out some code, but check this:&amp;nbsp;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/10.5/tools/data-management-toolbox/copy.htm" title="http://desktop.arcgis.com/en/arcmap/10.5/tools/data-management-toolbox/copy.htm"&gt;Copy—Help | ArcGIS Desktop&lt;/A&gt;&amp;nbsp; &amp;nbsp;it's pretty easy...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2018 22:09:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-i-copy-a-geodatabase-to-a-different/m-p/46112#M3703</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2018-07-30T22:09:21Z</dc:date>
    </item>
    <item>
      <title>Re: How do I copy a geodatabase to a different location using arcpy?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-i-copy-a-geodatabase-to-a-different/m-p/46113#M3704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the help. Below is my final script I came up with that has been tested and works.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; arcpy
&lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; arcpy &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; env
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;overwriteOutput &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token boolean"&gt;True&lt;/SPAN&gt;

env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;workspace &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"M:\GIS Geodatabases"&lt;/SPAN&gt;
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Copy_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Cadastral.gdb"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"T:\pl\Planning Geodatabases\Cadastral.gdb"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Cadastral.gdb Copy Complete"&lt;/SPAN&gt;

env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;workspace &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"M:\GIS Geodatabases"&lt;/SPAN&gt;
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Copy_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Transportation.gdb"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"T:\pl\Planning Geodatabases\Transportation.gdb"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Transportation.gdb Copy Complete"&lt;/SPAN&gt;

env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;workspace &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"M:\GIS Geodatabases"&lt;/SPAN&gt;
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Copy_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"AdminBoundaries.gdb"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"T:\pl\Planning Geodatabases\AdminBoundaries.gdb"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"AdminBoundaries.gdb Copy Complete"&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;/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;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;/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>Fri, 10 Dec 2021 21:48:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-i-copy-a-geodatabase-to-a-different/m-p/46113#M3704</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-12-10T21:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: How do I copy a geodatabase to a different location using arcpy?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-i-copy-a-geodatabase-to-a-different/m-p/46114#M3705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good job; you only need to set your workspace once, so lines 10 &amp;amp; 14 aren't needed. If you want to have some fun, create a list of the the database names and iterate through them in a 'for' loop....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2018 22:30:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-i-copy-a-geodatabase-to-a-different/m-p/46114#M3705</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2018-07-30T22:30:12Z</dc:date>
    </item>
    <item>
      <title>Re: How do I copy a geodatabase to a different location using arcpy?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-i-copy-a-geodatabase-to-a-different/m-p/46115#M3706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm pretty new to Python but thanks for the input. I will have to&amp;nbsp;give that a try so I can sharpen my skills.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2018 22:40:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-i-copy-a-geodatabase-to-a-different/m-p/46115#M3706</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2018-07-30T22:40:59Z</dc:date>
    </item>
    <item>
      <title>Re: How do I copy a geodatabase to a different location using arcpy?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-i-copy-a-geodatabase-to-a-different/m-p/46116#M3707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stick with it and have some fun.&amp;nbsp; Anytime you need to do something more than a couple of times, script it.&amp;nbsp; There is only one way to get into python, and that's to get into python!&amp;nbsp; A year ago I couldn't spell python...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2018 00:23:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-i-copy-a-geodatabase-to-a-different/m-p/46116#M3707</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2018-07-31T00:23:22Z</dc:date>
    </item>
  </channel>
</rss>

