I'm using arcpy.da.SearchCursor to read a csv that has a column with preceding zeros, e.g.:
myCSVColumn01245781259804589012568...When using the arcpy.da.SearchCursor it returns the value w/o the preceding zeros:
12457812598458912568In addition, when using Table to Table method it returns the same result. Does anyone know a workaround for this besides opening the csv with python and parsing through it to get the values?
أكثر...
myCSVColumn01245781259804589012568...When using the arcpy.da.SearchCursor it returns the value w/o the preceding zeros:
12457812598458912568In addition, when using Table to Table method it returns the same result. Does anyone know a workaround for this besides opening the csv with python and parsing through it to get the values?
أكثر...