Table to Geodatabase — Import text fields as NVARCHAR2, not NCLOB (Oracle)

189
1
10-28-2024 01:01 PM
Status: Open
Labels (1)
Bud
by
Esteemed Contributor

ArcGIS Pro 2.9.5; Oracle 18c 10.7.1 EGDB:

The Table to Geodatabase GP tool imports .CSV text fields as NCLOB (1073741822 characters). That's too many characters.

It would help to have the option to import text fields as NVARCHAR2(255) instead.

https://community.esri.com/t5/arcgis-pro-questions/get-maximum-text-value-length-of-multiple-text/m-...

 

1 Comment
DavidSolari

CSV files have an effectively unbound length per field which is why dumping them straight to your EGDB picks that data type. You'd be better off extracting the data to an intermediate table in a File or Mobile Geodatabase where you can clean up the data and schema before loading it into your EGDB. If you're genuinely concerned about database performance you'll want to prep your schemas by hand, then use Append to transform the CSVs into the new format.