From the course: Data Quality: Transactions, Ingestions, and Storage

Unlock this course with a free trial

Join today to access over 24,900 courses taught by industry experts.

Transaction code exploration

Transaction code exploration

- [Instructor] Similar to the previous chapter, I want you to take a moment to explore the code yourself to have a deeper understanding. But before you do that, I want to give you a few hints. So, we want to go to "data_platform", "transactions", and "concurrency_simulator". Now, I already have it pulled up and there's specifically a function that I want you to check out, and it's "set_isolation_level". And you see right here we have "set session characteristic"... Let me rephrase. We have "set session characteristics as transaction", "isolation level", and then we set it to what we want. Now, if you looked at the documents from PostgreSQL that I showed earlier, you can see this exact command. So, for set transaction, you have "set session characteristics as transaction" and you have the transaction mode. We have the various isolation levels right here. Now, I also want to highlight the other documentation again. We have…

Contents