Specifications

Data Export
Known Data Export Anomalies in SPECTRUM 6.0.2
SPECTRUM Software Release Notes Page 66
the SDE_OUTPUT_MODEL_LEN variable in the dtxscript) and the ensuing
export contains models with names longer than the previous default, the
export will likely fail with an Oracle error indicating that the insert value
was too large for the column.
Solution: Manually drop the existing table and then perform the export.
This will establish the column width to the value specified in the dtxscript.
Problem 7: Statistical exports fail to SQL databases because of an
incorrect echo statement in the scripts that when run perform database
insertions.
Solution: In the echo_no_cr() function, there is a case statement with
the following line:
AIX|SunOS|ULTRIX) # berkeley; use -n option
The above statement should be changed to:
AIX|SunOS|ULTRIX|Windows_NT # berkeley; use -n option
In addition, the following two lines:
# append \c
echo Ò$*\cÓ
should be changed to:
# append -n
echo -n Ò$*Ó