Hello everyone,
We are using Oracle 11 G.
The Append and Delete versioned tables form one feature class have a text field with a length smaller than the same field in the feature class. the reason isthat I run an Oracle script to alter this field size on the feature class.
Is there a way to resize this same field in the table Annnn and Dnnnn with an SDE command?
Can I run in Oracle:
ALTER TABLE
Annnn
MODIFY
(
[myfield] nvarchar2(80)
);
commit;