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. How does Postgres know which schema to use if not specified?

2 / 20

2. Each Database has its own System Catalog?

3 / 20

3. Which fork is specific for unlogged tables?

4 / 20

4. TOAST tables reside in a seperate schema?

5 / 20

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

6 / 20

6. To be able to restore data consistency, Postgres maintains

7 / 20

7. What is the purpose of the postgres database?

8 / 20

8. Which fork contains the actual table data?

9 / 20

9. What is the name of the catalog that stores metadata for all cluster objects?

10 / 20

10. What 3 files/forks as a minimum make up a table on disk?

11 / 20

11. What is the purpose of the template1 database?

12 / 20

12. Postgres by default has built in connection pooling abilities?

13 / 20

13. What is the process first launched at server start?

14 / 20

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

15 / 20

15. What column in system catalogs servers as the Primary Key

16 / 20

16. What is the name of the system catalog table for relations?

17 / 20

17. What is the purpose of the template0 database?

18 / 20

18. What is the name of the 2 default tablespaces created after initialization?

choose 2

19 / 20

19. What is the point of the pg_global tablespace?

20 / 20

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

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. At any moment the database system can contain several versions of one and the same row?

2 / 10

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

Select more than 1 answer below:

3 / 10

3. Which parameters sets the database default isolation level?

4 / 10

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

5 / 10

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

6 / 10

6. Which isolation level in theory could mean an application does not have to consider isolation anomalies?

7 / 10

7. What is the default Isolation Level?

8 / 10

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

9 / 10

9. non-repeatable read anomaly occurs when?

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. The page header is located in the highest address?

2 / 10

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

3 / 10

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

4 / 10

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

5 / 10

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

6 / 10

6. A page along with its tuples is read into the buffer cache with compression transformations to enhance cache efficiency?

7 / 10

7. What does an Item Pointer contain?

choose 3

8 / 10

8. When a transaction is committed Postgres uses a special <replace with answer> structure?

9 / 10

9. Page free space can often become fragmented?

10 / 10

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

Your score is

0%