1Z0-051は上級者向け試験ので、難易度が高くなりますと思います。
1Z0-051試験範囲を確認すれば、どんな勉強をすればいいですか?
1Z0-051試験の勉強方法をご紹介します。
研修講座などのルートを通じないと1Z0-051試験に合格するのが比較的に難しい、一回に合格率非常に低いです。
研修トレーニングに参加しない場合、PassexamのOracle Database 11g認定1Z0-051練習問題集をお勧めします。
他のお客様の1Z0-051受験記で、ご参照ください。
【試験コード】
1Z0-051
【受験日】
2016/07/05
【合格点】
60%
【取得点】
78%
【受験回数】
1回目
【学習期間】
3weeks
【参考にしたテキスト/Webサイト】
黒本、Passexamの練習問題集
【学習方法】
学校で講師の話を聞きながら教科書を読み進めていった。
3週間で問題を解きながら教科書を1周して、残りの3週間はPassexamの試験対策を行った。
【試験の感想】
1Z0-051問題集を購入しました。
内容が理解できなくても忘れてしまっていても模擬試験を繰り返し学習し解答の手順を確認していけば、高合格点を取得しました。
1Z0-051認定試験情報:
試験番号:1Z0-051
試験名称:11g SQL基礎I [11g SQLI]
関連資格:ORACLE MASTER Bronze Oracle Database 11g
ORACLE MASTER Silver Oracle PL/SQL Developer
バージョン:Oracle Database 11g
試験時間:120分
出題数: 66問
合格ライン:60%
出題形式:単一選択,複数選択
試験料(税抜き): 13600 円
Oracle Database 11g認定
1Z0-051試験は円滑な情報システムの設計?構築?運営に必要となるOracle Database 11g に関する体系だった知識と経験を保持していることを証明します。
弊社のOracle Database 11g認定1Z0-051試験対策はよくアップデートするので、貴方の持って問題集は最新版を保障されてます。
弊社のOracle Database 11g認定1Z0-051学習資料と真実の1Z0-051試験問題がよく似ています。一目でわかる最新の1Z0-051出題傾向でわかりやすい解説と充実の補充問題があります。
1. You need to extract details of those products in the SALES table where the PROD_ID column
contains the string '_D123'.
Which WHERE clause could be used in the SELECT statement to get the required output?
A. WHERE prod_id LIKE '%_D123%' ESCAPE '_'
B. WHERE prod_id LIKE '%\_D123%' ESCAPE '\'
C. WHERE prod_id LIKE '%_D123%' ESCAPE '%_'
D. WHERE prod_id LIKE '%\_D123%' ESCAPE '\_'
Answer: B
2. Which two statements are true regarding single row functions? (Choose two.)
A. They a ccept only a single argument.
B. They c an be nested only to two levels.
C. Arguments can only be column values or constants.
D. They a lways return a single result row for every row of a queried table.
E. They c an return a data type value different from the one that is referenced.
Answer: DE
3. Which SQL statements would display the value 1890.55 as $1,890.55? (Choose three .)
A. SELECT TO_CHAR(1890.55,'$0G000D00')
FROM DUAL;
B. SELECT TO_CHAR(1890.55,'$9,999V99')
FROM DUAL;
C. SELECT TO_CHAR(1890.55,'$99,999D99')
FROM DUAL;
D. SELECT TO_CHAR(1890.55,'$99G999D00')
FROM DUAL;
E. SELECT TO_CHAR(1890.55,'$99G999D99')
FROM DUAL;
Answer: ADE
4. Examine the structure of the SHIPMENTS table:
name Null Type
PO_ID NOT NULL NUMBER(3)
PO_DATE NOT NULL DATE
SHIPMENT_DATE NOT NULL DATE
SHIPMENT_MODE VARCHAR2(30)
SHIPMENT_COST NUMBER(8,2)
You want to generate a report that displays the PO_ID and the penalty amount to be paid if the
SHIPMENT_DATE is later than one month from the PO_DATE. The penalty is $20 per day.
Evaluate the following two queries:
SQL> SELECT po_id, CASE
WHEN MONTHS_BETWEEN (shipment_date,po_date)>1 THEN
TO_CHAR((shipment_date - po_date) * 20) ELSE 'No Penalty' END PENALTY
FROM shipments;
SQL>SELECT po_id, DECODE
(MONTHS_BETWEEN (po_date,shipment_date)>1,
TO_CHAR((shipment_date - po_date) * 20), 'No Penalty') PENALTY
FROM shipments;
Which statement is true regarding the above commands?
A. Both execute successfully and give correct results.
B. Only the first query executes successfully but gives a wrong result.
C. Only the first query executes successfully and gives the correct result.
D. Only the second query executes successfully but gives a wrong result.
E. Only the second query executes successfully and gives the correct result.
Answer: C
5. Which two statements are true regarding the USING and ON clauses in table joins? (Choose two.)
A. Both USING and ON clauses can be used for equijoins and nonequijoins.
B. A maximum of one pair of columns can be joined between two tables using the ON clause.
C. The ON clause can be used to join tables on columns that have different names but compatible data
types.
D. The WHERE clause can be used to apply additional conditions in SELECT statements containing the
ON or the USING clause.
Answer: CD
PR