|
Attempting to Cleanup after ABORT raised in stage。这个问题其实很简单。问题出现在最后一个stage上。The oracle OCI stage reads from any ascential datastage stage into an Oracle database.It also writes data to any Ascential datastage stage from an Oracle database.
从上面可知,你的最后一个oracle OCI stage要实现:write data to any datastage stage from an Oracle database.而oracle_OCI_8i的general中 Update action默认为:Insert rows without clearing.故报上面的错误。将之改为:update existing rows or insert new rows。就OK了。仅供参考! |
|