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. pg_catalog schema is used to store system catalog tables?

2 / 20

2. Each Database has its own System Catalog?

3 / 20

3. Each tablespaces can only be assigned for use by one database

4 / 20

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

5 / 20

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

6 / 20

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

7 / 20

7. Tablespaces are used to define physical data layout?

8 / 20

8. TOAST tables reside in a seperate schema?

9 / 20

9. What is the purpose of wal writer?

10 / 20

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

11 / 20

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

12 / 20

12. A single Postgres Instance can server only one database?

13 / 20

13. Users should not modify the template0 database

14 / 20

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

15 / 20

15. How many rows in a page does Postgres aim to have before considering TOAST?

16 / 20

16. Which fork contains the actual table data?

17 / 20

17. What is another name for the postgres process?

18 / 20

18. Files are logically split into pages?

19 / 20

19. The default Page size is 2k?

20 / 20

20. What is the purpose of the visibility map?

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. What is the acronym used for the attributes that ensure Data consistency, integrity and durability?

2 / 10

2. Lost updates are forbidden by the standard at all isolation levels?

3 / 10

3. Snapshot isolation is preferred but increases the number of required locks?

4 / 10

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

5 / 10

5. The SQL standard specifies three isolation levels?

6 / 10

6. Which parameters sets the database default isolation level?

7 / 10

7. What are some of database features we can use to avoid a non repeatable read?

Select more than 1 answer below:

8 / 10

8. Which of the below are valid Isolations Levels?

choose 2

9 / 10

9. A phantom read anomaly occurs when?

10 / 10

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

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. Each page has a layer that usually consists of?

choose 2

2 / 10

2. Information about subtransactions is stored under?

3 / 10

3. The page header stores checksum and the sizes of the other parts of the page?

4 / 10

4. CLOG contains how many bits for each transaction?

5 / 10

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

6 / 10

6. Which 2 of the below represent transaction IDs used for row versioning?

7 / 10

7. If a transaction is read only which kind of Transaction ID is it allocated?

8 / 10

8. index row headers like table row headers contain xmin and xmax fields?

9 / 10

9. When a row is created, its xmin value is set to the transaction ID of which command?

10 / 10

10. The page Special Space is located at the start of the page with highest address

Your score is

0%