SAP V1 V2 V3 JOBS
![Image](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEidP01Ze3rcGfNPLL8ODB4wm8xzdQd2J7y_RWw_5tjkFBuMoJb7TBTkmhLZOJ0NDfTOCi2BSlI36S7DHEvMmt_00aHt6Oh9Lm8CRaV44uKbkHpPzc09vE0jJll19v6BGDshyphenhyphenBHYCuZogQ1p/s1600/Untitled.png)
Before starting with V-series jobs, lets review some fundamentals. Data base LUW: It consists of sequence of DB operations(INSERT,UPDATE,DELETE) that needs to be committed to either all or none to keep DB in consistent state. COMMIT will be executed when all DB operations were successfully executed, once COMMITTED these changes can't be ROLLED BACK. This is part of traditional ACID property of any RDBMS. If a failure happens while executing the LUW(will be mostly technical like memory crunch,integrity violation or data base crashed,power failure) and when DB is restarted, DB will be ROLLed BACK to previous state. Which is nothing but the state when last COMMIT was happened. In other words, when ROLL BACK happens DB will be safely brought to previous COMMIT state. DB maintains log of actions performed since last COMMIT and as part of recovery process, all these actions will be reversed. All RDBMS will have in-built locking/multi concurrency control such that dirty READ-WRITE ope...