

Every script I've tried isn't able to copy the feature dataset in the top image to the bottom feature dataset (in an SDE).
It's probably something simple, but is there a known function for this? I can't change anything in the SDE as I don't have administrative rights to it.
I've tried Copy_management. But, here the in_data and out_data variables must have the same file extension to work properly.
I've also tried CopyFeatures_management. Here's the syntax and error message for that:
<SPAN class="comment token"># Import modules</SPAN>
<SPAN class="keyword token">import</SPAN> os
<SPAN class="keyword token">import</SPAN> arcpy
<SPAN class="comment token"># set workspace</SPAN>
env<SPAN class="punctuation token">.</SPAN>workspace <SPAN class="operator token">=</SPAN> r<SPAN class="string token">"T:\Departments\E911\Transfer Files\E911WeeklyUpdate\E911WeeklyUpdate.gdb"</SPAN>
<SPAN class="comment token">#create a list of feature classes in the current workspace</SPAN>
fclist <SPAN class="operator token">=</SPAN> arcpy<SPAN class="punctuation token">.</SPAN>ListFeatureClasses<SPAN class="punctuation token">(</SPAN><SPAN class="punctuation token">)</SPAN>
<SPAN class="comment token">#copy each feature class to a fgdb </SPAN>
<SPAN class="keyword token">for</SPAN> fc <SPAN class="keyword token">in</SPAN> fclist<SPAN class="punctuation token">:</SPAN>
fcdesc <SPAN class="operator token">=</SPAN> arcpy<SPAN class="punctuation token">.</SPAN>Describe<SPAN class="punctuation token">(</SPAN>fc<SPAN class="punctuation token">)</SPAN>
arcpy<SPAN class="punctuation token">.</SPAN>CopyFeatures_management<SPAN class="punctuation token">(</SPAN>fc<SPAN class="punctuation token">,</SPAN> os<SPAN class="punctuation token">.</SPAN>path<SPAN class="punctuation token">.</SPAN>join<SPAN class="punctuation token">(</SPAN>"Database Connections\
Jared to plainfield<SPAN class="punctuation token">.</SPAN>sde\gisedit<SPAN class="punctuation token">.</SPAN>DBO<SPAN class="punctuation token">.</SPAN>MGU_Will"<SPAN class="punctuation token">,</SPAN> fcdesc<SPAN class="punctuation token">.</SPAN>basename<SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN></SPAN>
