Submitting forms on the support site are temporary unavailable for schedule maintenance. If you need immediate assistance please contact technical support. We apologize for the inconvenience.
Error : Poster: [SP-OPX01001] Errors on target table "OWNER"."TABLE_NAME" at seqno/offset 1687/98643072. error=0 state=22001 msg=[Microsoft][ODBC SQL Server Driver]String data, right truncation. Please see event_log and open target log files for more details. See 'http://advice.shareplex.com/SP-OPX01001' for additional advice and support.
원인
Data Definition Issue:
A data column is defined as number without precision on source (Oracle) and the open target column is defined as numeric(18,0) ( MSSQL) which does not take decimal.
해결 방안
WORKAROUND
Modify the target column to be numeric(18,2), allowing a decimal value.
If the scale is higher, then the Target column scale will need to be increased accordingly.
The best practice is to have the source column define the precision and scale to match the target, otherwise the source allows a wide range of values and the target column will need to accommodate these.