PGCES-02 무료 덤프문제 온라인 액세스
| 시험코드: | PGCES-02 |
| 시험이름: | PostgreSQL CE 8 Silver |
| 인증사: | PostgreSQL-CE |
| 무료 덤프 문항수: | 145 |
| 업로드 날짜: | 2026-01-06 |
Table "t1" is defined below.
Table "t1" has a column "id" of type INTEGER, and a column "name" of type TEXT.
t1:
The following SQL is executed while client "A" is connected. BEGIN;
SELECT * FROM t1 WHERE id = 2 FOR UPDATE;
SELECT * FROM t1 WHERE id = 1 FOR UPDATE; -- (*)
While the second 'SELECT' statement, shown with (*), is being executed, a separate client "B"
connects and executes the following SQL.
Select the correct statement about the execution results.
UPDATE t1 SET name = 'turtle' WHERE id = 2;
Note: the default transaction isolation level is set to "read committed".
Select two correct statements about the command shown below. Note: $ is the command prompt. $ vacuumdb -az
Select two incorrect statements related to the command below. Note: $ is the command prompt. $ psql -U foo -c "COPY company TO stdout;" bar