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. Which fork keeps track of available space within pages?

2 / 20

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

3 / 20

3. What is the purpose of wal writer?

4 / 20

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

5 / 20

5. What is the purpose of the postgres database?

6 / 20

6. System Catalog tables begin with which prefix?

7 / 20

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

8 / 20

8. Users should not modify the template0 database

9 / 20

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

10 / 20

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

11 / 20

11. Which fork contains the actual table data?

12 / 20

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

13 / 20

13. It is the postmasters job to listener for incoming connections?

14 / 20

14. Tablespaces can be used to segregate data based on performance needs?

15 / 20

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

16 / 20

16. The information_schema schema provides information on Postgres release notes?

17 / 20

17. What is the point of the pg_global tablespace?

18 / 20

18. What is another name for the postgres process?

19 / 20

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

20 / 20

20. Some System Catalog tables are common to all databases in the 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. What are some of database features we can use to avoid a non repeatable read?

Select more than 1 answer below:

2 / 10

2. What is the default Isolation Level?

3 / 10

3. The SQL standard specifies three isolation levels?

4 / 10

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

5 / 10

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

6 / 10

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

7 / 10

7. Which parameters sets the database default isolation level?

8 / 10

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

9 / 10

9. non-repeatable read anomaly occurs when?

10 / 10

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

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. A page along with its tuples is read into the buffer cache with compression transformations to enhance cache efficiency?

2 / 10

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

3 / 10

3. Information about subtransactions is stored under?

4 / 10

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

5 / 10

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

6 / 10

6. Which 2 items does a Virtual XID consist of?

7 / 10

7. status of a subtransaction is written into CLOG?

8 / 10

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

9 / 10

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

10 / 10

10. indexes do not use row versioning?

Your score is

0%