1Dirty Reads
While your transaction is running but not yet committed, can other users read the temporary data? This depends on the 'Isolation Level'. By default in Postgres (Read Committed), other users will only see the old data until you hit COMMIT. This prevents 'Dirty Reads'.
