PGCES-02試験の対策に必要なものを、CertJukenなら一か所でそろえられます。PostgreSQL-CE PostgreSQL CE 8 Silverの145問の練習問題から無料サンプル、更新サービスまで、受験準備のすべてをまとめて提供します。
PostgreSQL-CE PGCES-02 試験概要:
| 認定ベンダー: | PostgreSQL-CE (SRA OSS / PostgreSQL CE プログラムによるコミュニティ認定) |
|---|---|
| 試験名: | PostgreSQL CE 8 Silver |
| 試験番号: | PGCES-02 |
| 関連資格: | PostgreSQL CE Gold |
| 出題数: | 142 |
| 対応言語: | 英語 |
| 試験形式: | 多肢選択式 |
| サンプル問題: | ![]() |
| 受験方法: | CBT(コンピュータベース試験)/ 歴史的にはテストセンター経由(旧PostgreSQL CEプログラム) |
| 前提条件: | 公式な前提条件の記載なし |
| 公式シラバスのURL: | https://www.postgresql.org/about/news/postgresql-ce-8-silver-release-676/ |
PostgreSQL-CE PGCES-02 試験シラバストピック:
| セクション | 目標 |
|---|---|
| 高度な機能 | - 全文検索とプロシージャ言語 - パーティショニング、JSON/JSONBの使用 |
| データベース管理 | - ユーザー/ロール管理 - バックアップとリカバリの基本 |
| データ定義と操作 | - テーブル、インデックス、ビュー - ストアドプロシージャ、DMLコマンド |
| SQLクエリと最適化 | - クエリプランとパフォーマンス - クエリの記述と結合 |
| PostgreSQLの基本 | - データベースアーキテクチャとコアコンセプト - SQLの基本と演算子 |
| 高可用性とセキュリティ | - レプリケーションとフェイルオーバーの基本 - 認証とアクセス制御 |
PGCES-02試験で受験者がよく抱く疑問
PGCES-02は、PostgreSQL-CEが実施する「PostgreSQL-CE-Certifications」を取得するための認定試験です。認定レベルはシルバーで、実務に即した知識とスキルが問われます。PostgreSQL CE Goldなどの関連認定へのステップとしても位置づけられており、キャリアアップを目指す方に広く選ばれています。CertJukenの練習問題を活用すれば、試験の全体像を把握しながら計画的に対策を進められます。
はい。CertJukenではPGCES-02練習問題の無料サンプル(PDFデモ)を用意しており、内容や使い勝手を確かめてから購入を判断できます。購入後は365日間の無料更新が付き、更新期間の終了後は50%割引で継続更新を利用できます。
CertJukenでは「返金保証」を用意しています。購入後60日以内にPGCES-02試験を受験して不合格だった場合、受験票の写しと公式のスコアレポート(Score Report)のPDFを試験後2日以内に提出すれば、7日以内に全額返金の手続きが完了します。なお、受験者名と購入時の支払者名が一致している必要があり、購入から3日以内の受験や、実際に受験しなかった場合は対象外です。返金の代わりに、同等の試験対策教材2つを無料で受け取り、購入済み製品の更新サービスを継続する選択も可能です。商品は購入後すぐにダウンロードでき、メールでも1分以内にお届けします。2時間経っても届かない場合はカスタマーサポートまでご連絡ください。インストールできるパソコンの台数に制限はありません。
PGCES-02試験の出題範囲は6の分野に分かれています。主な分野はデータベース管理、高可用性とセキュリティ、PostgreSQLの基本です。各分野の詳細な出題項目は、このページ上部の出題範囲一覧で確認できます。
PostgreSQL-CE PostgreSQL CE 8 Silver 認定 PGCES-02 試験問題:
A table is defined as follows:
CREATE TABLE t (id INT, val TEXT);
Select two correct statements from below about the function "get_head" defined below. CREATE
FUNCTION get_head(BOOLEAN)
RETURNS TEXT LANGUAGE sql CALLED ON NULL INPUT
AS 'SELECT val FROM t WHERE $1 OR id > 0 ORDER BY id LIMIT 1;';
- A. There are cases where this function returns multiple lines.
- B. Even if this function is passed the same parameter value and executed multiple times, the returned values will not necessarily also be the same value.
- C. This function is defined using PL/pgSQL.
- D. When NULL is passed for the argument and the function is executed, NULL is returned.
- E. If a function with the same name and with type BOOLEAN as the parameter is already defined, an error occurs.
正解:B、E 🗳️
You want to create a cursor that will SELECT the "customer" table. The created cursor must be able to move in any direction and reference data even after the end of the transaction.
Select one answer containing the correct keyword(s) to fill in the underlined blank below.
DECLARE cursor1 __________ FOR SELECT * FROM customer;
- A. CURSOR
- B. SCROLL CURSOR WITH HOLD
- C. INSENSITIVE CURSOR
- D. CURSOR WITHOUT HOLD
- E. NO SCROLL CURSOR WITH HOLD
正解:B 🗳️
The table "t1" is defined by the following SQL statement: CREATE TABLE t1 (id integer, name
varchar(20));
You want to increase the execution speed of the SQL statement below:
SELECT id, name FROM t1 WHERE id < 123 AND upper(name) = 'MAMMOTH'; Select the most
suitable SQL statement to create an index.
- A. ALTER TABLE ADD INDEX ON t1 (id, name);
- B. CREATE INDEX t1_idx ON t1 USING HASH (id);
- C. CREATE INDEX t1_idx ON t1 (name);
- D. CREATE INDEX t1_idx ON t1 (id,upper(name));
- E. ALTER TABLE ADD INDEX ON t1 (id,upper(name));
正解:D 🗳️
Select two suitable statements regarding creating a new table.
- A. A newly created table is empty and has 0 rows.
- B. The row name must be within 16 characters.
- C. There is no upper limit to the number of columns in a table.
- D. You can only use alphabetic characters for a table name.
- E. The SQL 'CREATE TABLE' statement is used to create a new table.
正解:A、E 🗳️
Which normal form has the constraint that there must be no tables with duplicate column values in the same row?
- A. Boyce/Codd normal form
- B. Third normal form
- C. Second normal form
- D. First normal form
- E. Fourth normal form
正解:D 🗳️




Yamaguchi
白石**
Takeda
永井**
