Interface MergeSummary
- All Superinterfaces:
- WriteSummary
Provides an informational summary of the MERGE operation producing write.
- Since:
- 4.1.0
- 
Method SummaryModifier and TypeMethodDescriptionlongReturns the number of target rows copied unmodified because they did not match any action.longReturns the number of target rows deleted.longReturns the number of target rows inserted.longReturns the number of target rows deleted by a matched clauselongReturns the number of target rows updated by a matched clause.longReturns the number of target rows deleted by a not matched by source clause.longReturns the number of target rows updated by a not matched by source clause.longReturns the number of target rows updated.
- 
Method Details- 
numTargetRowsCopiedlong numTargetRowsCopied()Returns the number of target rows copied unmodified because they did not match any action.
- 
numTargetRowsDeletedlong numTargetRowsDeleted()Returns the number of target rows deleted.
- 
numTargetRowsUpdatedlong numTargetRowsUpdated()Returns the number of target rows updated.
- 
numTargetRowsInsertedlong numTargetRowsInserted()Returns the number of target rows inserted.
- 
numTargetRowsMatchedUpdatedlong numTargetRowsMatchedUpdated()Returns the number of target rows updated by a matched clause.
- 
numTargetRowsMatchedDeletedlong numTargetRowsMatchedDeleted()Returns the number of target rows deleted by a matched clause
- 
numTargetRowsNotMatchedBySourceUpdatedlong numTargetRowsNotMatchedBySourceUpdated()Returns the number of target rows updated by a not matched by source clause.
- 
numTargetRowsNotMatchedBySourceDeletedlong numTargetRowsNotMatchedBySourceDeleted()Returns the number of target rows deleted by a not matched by source clause.
 
-