sdetable -o export -f c:\temp\dbtune.txt -i sde:oracle11g -u sde -p sde@orcl
sdetable -o import -f c:\temp\dbtune.txt -i sde:oracle11g -u sde -p sde@orcl
I am experiencing similar issue when creating attribute field with field length - 5000 but with SQL Server 2016 not oracle. For some reason, the SQL Server sets the type - navchar(max) displaying field length of 1073741822.
Can this fixed by applying the same fix?
Nevermind. I got my answer here - https://pro.arcgis.com/en/pro-app/latest/help/data/geodatabases/manage-sql-server/data-types-sqlserv...
It seems like I can do this by exporting and import database configuration keyword table. The UNICODE_STRING needs set to false "FALSE". This way I can create the text field with field length up to 8000 characters.