I found out there is a limitation of 10 characters for field names if you output arcpy.ExcelToTable() to a "in_memory" table.
Why? Is it because dbf format is used?
I dont have this limitation when I use "in_memory" with other tools such arcpy.CopyFeatures_management().
arcpy<SPAN class="punctuation token">.</SPAN>ExcelToTable_conversion<SPAN class="punctuation token">(</SPAN><SPAN class="string token">"C:\\temp\\input.xlsx"</SPAN><SPAN class="punctuation token">,</SPAN> <SPAN class="string token">"in_memory\table"</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN></SPAN>
Is there a way to use get rid of this limitation with arcpy.ExcelToTable() and "in_memory"?