Spring Sale Special Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: buysanta

Exact2Pass Menu

PostgreSQL Essentials Certification v13

Last Update 20 hours ago Total Questions : 116

The PostgreSQL Essentials Certification v13 content is now fully updated, with all current exam questions added 20 hours ago. Deciding to include PostgreSQL-Essentials practice exam questions in your study plan goes far beyond basic test preparation.

You'll find that our PostgreSQL-Essentials exam questions frequently feature detailed scenarios and practical problem-solving exercises that directly mirror industry challenges. Engaging with these PostgreSQL-Essentials sample sets allows you to effectively manage your time and pace yourself, giving you the ability to finish any PostgreSQL Essentials Certification v13 practice test comfortably within the allotted time.

Question # 21

Which of the following system functions can be used to track the status of the vacuum process?

A.

pg_stat_vacuum

B.

pg_stat_vacuumdb

C.

pg_stat_user_vacuum

D.

pg_stat_progress_vacuum

Question # 22

Which of the following statements is true about PostgreSQL 13?

A.

ALTER SYSTEM writes the setting to a file called postgresql.auto.conf

B.

ALTER SYSTEM writes the setting to a file called postgresql.conf

C.

ALTER CLUSTER writes the setting to a file called postgresql.auto.conf

D.

ALTER CLUSTER writes the setting to a file called postgresql.conf

Question # 23

Which psql meta-command is used to list all databases in the cluster?

A.

\list

B.

\l

C.

\databases

D.

Both A and B

Question # 24

Which configuration parameter limits the total number of connections available for your database cluster?

A.

log_connection

B.

max_connections

C.

tcp_keepalives_count

D.

superuser_reserved_connection

Question # 25

Which psql meta-command is used to describe a table including its structure, columns, and constraints?

A.

\dt tablename

B.

\d tablename

C.

\describe tablename

D.

\show tablename

Question # 26

In PostgreSQL, archiving can be enabled for hot backups. During recovery, all the archive logs can be played on the restored backup and Point-in-Time Recovery can be performed. Which of the following parameters directly influences Mean Time to Recovery and is also used to control the size of the WAL area?

A.

wal_level

B.

wal_size

C.

checkpoint_timeout

D.

max_wal_size

Question # 27

Which command displays the current search path in PostgreSQL?

A.

SELECT search_path;

B.

SHOW search_path;

C.

GET search_path;

D.

\path

Question # 28

Autocommit occurs in which of the following situations?

A.

All DML statements

B.

All DDL statements

C.

On DML and DDL statements

D.

None of the above

Question # 29

Examine the following SQL:

CREATE VIEW vw_emp_details AS SELECT ename, sal, sal*12 AS annsal FROM emp;

After creating the above view, what will be the result of the following query?

UPDATE vw_emp_details SET annsal = annsal + 100;

A.

Error: Views cannot be updated

B.

Error: Cannot update column annsal

C.

Statement executes successfully but none of the rows of emp table are modified

D.

Statement executes successfully and all the rows of emp table are modified

Question # 30

Which pg_dump option allows you to dump only the data without schema definitions?

A.

-d

B.

--data-only

C.

-D

D.

--no-schema

Go to page: