Postgres Quiz Archive

You have 200 seconds to answer 20 Random questions so think fast!

You will need to score 80% or over to pass!


Created by Paul Sammy

PostgreSQL 14 Internals Chapter 1

A quiz to test the knowledge of those reading and learning from Postgres 14 Internals book by Egor Rogov, covering topics in Chapter 1.

1 / 20

1. What is the name of the mechanism used to store a row bigger than a page size?

2 / 20

2. Who is the Author of the Postgres 14 Internals book?

3 / 20

3. Files are logically split into pages?

4 / 20

4. What command is used to create the Postgres cluster?

5 / 20

5. What is the purpose of the template1 database?

6 / 20

6. What is the purpose of the visibility map?

7 / 20

7. Users should not modify the template0 database

8 / 20

8. Which of the below objects can be referred to as relations?

choose 3

9 / 20

9. pg_catalog schema is used to store system catalog tables?

10 / 20

10. Which fork is specific for unlogged tables?

11 / 20

11. Which fork keeps track of available space within pages?

12 / 20

12. What is the default standard size for a fork file?

13 / 20

13. Tablespaces are used to define physical data layout?

14 / 20

14. A Postgres cluster consists of 2 or more physical servers accessing one Postgres Instance?

15 / 20

15. System Catalog tables begin with which prefix?

16 / 20

16. What is the point of the pg_global tablespace?

17 / 20

17. Each Database has its own System Catalog?

18 / 20

18. What is the name of the directory that contains the files related to the Postgres cluster?

19 / 20

19. If we create a new tablespace which directory will symbolic links be created from?

20 / 20

20. The pg_default tablespace should never be used to create user tables?

Your score is

0%

Created by Paul Sammy

PostgreSQL 14 Internals Chapter 2

A quiz to test the knowledge of those reading and learning from Postgres 14 Internals book by Egor Rogov, covering topics in Chapter 2.

1 / 10

1. non-repeatable read anomaly occurs when?

2 / 10

2. Based on Snapshot Isolation use of MVCC which of the below are permitted?

choose 3

3 / 10

3. which of the below statements will start a transaction as Read Repeatable?

4 / 10

4. The more locks a transaction acquires, the better it is isolated from other transactions?

5 / 10

5. At any moment the database system can contain several versions of one and the same row?

6 / 10

6. A phantom read anomaly occurs when?

7 / 10

7. Which of the below would best describe a dirty read?

8 / 10

8. What is the default Isolation Level?

9 / 10

9. Data Consistency is best handled at the application layer rather than at the database layer?

10 / 10

10. The SQL standard specifies three isolation levels?

Your score is

0%

Created by Paul Sammy

PostgreSQL 14 Internals Chapter 3

A quiz to test the knowledge of those reading and learning from Postgres 14 Internals book by Egor Rogov, covering topics in Chapter 3.

1 / 10

1. UPDATE can be regarded as which 2 separate operations?

2 / 10

2. Each page has a layer that usually consists of?

choose 2

3 / 10

3. If a transaction aborts, all page changes are reverted(rolled back) in place?

4 / 10

4. status of a subtransaction is written into CLOG?

5 / 10

5. Indexes values also support multi versioning with several versions of an index value existing at any point in time?

6 / 10

6. CLOG files are stored in which directory?

7 / 10

7. a transaction containing a savepoint is will still be considered as only a single transaction?

8 / 10

8. Rows of TOAST tables are handled in such a way that they are never update?

9 / 10

9. psql provides a special mode that allows you to continue a transaction after a failure?

10 / 10

10. To identify different versions of one and the same row, PostgreSQL marks each of them with which two value?

Your score is

0%