Is it possible to make third step in PostgreSQL?
- Make changes X to DB.
- Make changes Y to DB that are based on changes X.
- Rollback changes X.
If yes, please describe.
Is it possible to make third step in PostgreSQL?
If yes, please describe.
No. Committing changes Y will commit also changes X. Think about it: If X was rolled back then relational consistency rules might break. Regardless of database engine.