There is no such thing. Assuming that you are sending a batch request, all commands are executed with a single transaction. This means that either they all succeed (and Job.Success = True) or they all fail.
I have this case.
Let say that I want to transfer 10 records to MSSQL Server.
Job.Success return true as you say but with a simple
select I find out like that only 8 records inserted on SQL table.
There is no such thing. Assuming that you are sending a batch request, all commands are executed with a single transaction. This means that either they all succeed (and Job.Success = True) or they all fail.