pgces-02 Exam : PostgreSQL CE 8 Silver
Exam Number/Code : pgces-02
Exam Name : PostgreSQL CE 8 Silver
Questions and Answers : 149 Q&As
Price : $ 125.00
Update Time : 2010-05-05
- Free Demo: pgces-02 practice exam
World NO.1 Microsoft Certification Exams Provider
Home > PostgreSQL CE > PostgreSQL CE Certifications > pgces-02
Exam Number/Code : pgces-02
Exam Name : PostgreSQL CE 8 Silver
Questions and Answers : 149 Q&As
Price : $ 125.00
Update Time : 2010-05-05
microsoft braindumps has assembled to take you through 120 Q&As to your pgces-02 Exam preparation. In the pgces-02 exam resources, you will cover every field and category in pgces-02 helping to ready you for your successful Juniper Certification.
microsoft braindumps Practice Exams for PostgreSQL CE pgces-02 are written to the highest standards of technical accuracy, using only certified subject matter experts and published authors for development.
If you prepare for the exam using our microsoft braindumps testing engine, we guarantee your success in the first attempt. If you do not pass the PostgreSQL CE Certifications pgces-02 exam (PostgreSQL CE 8 Silver) on your first attempt we will give you a FULL REFUND of your purchasing fee AND send you another same value product for free.
Our Exam pgces-02 Preparation Material provides you everything you will need to take your pgces-02 Exam. The pgces-02 Exam details are researched and produced by Professional Certification Experts who are constantly using industry experience to produce precise, and logical. You may get questions from different web sites or books, but logic is the key. Our Product will help you not only pass in the first try, but also save your valuable time.
We are all well aware that a major problem in the IT industry is that there is a lack of quality study materials. Our Exam Preparation Material provides you everything you will need to take a certification examination. Like actual certification exams, our Practice Tests are in multiple-choice (MCQs)
Our PostgreSQL CE PostgreSQL CE Certifications pgces-02 Exam will provide you with exam questions with verified answers that reflect the actual exam. These questions and answers provide you with the experience of taking the actual test. High quality and Value for the pgces-02 Exam:100% Guarantee to Pass Your PostgreSQL CE Certifications exam and get your PostgreSQL CE Certifications Certification.
Exam : PostgreSQL CE pgces-02
Title : PostgreSQL CE 8 Silver
1. PostgreSQL can use an index to access a table. Select two incorrect statements about indexes.
A. An index is created by 'CREATE INDEX', and deleted by 'DROP INDEX'.
B. By using an index effectively, searching and sorting performs faster.
C. There are B-tree, Hash, R-tree and GiST index types.
D. By creating an index, performance always improves.
E. Creating an unused index does not affect the performance of a database at all.
Answer: DE
2. Select two suitable statements regarding the data types of PostgreSQL.
A. One field can handle up to 1GB of data.
B. 'n' in CHARACTER(n) represents the number of bytes.
C. Only the INTEGER type can be declared as an array.
D. There is a non-standard PostgreSQL data type, called Geometric data type, which handles 2-dimensional data.
E. A large object data type can be used to store data of unlimited size.
Answer: AD
3. Select two incorrect statements regarding 'DOMAIN'.
A. When defining a domain, you can add a default value and constraints to the original data.
B. Domain is a namespace existing between databases and objects such as tables.
C. A domain is created by 'CREATE DOMAIN'.
D. A domain can be used as a column type when defining a table.
E. To define a domain, both input and output functions are required.
Answer: BE
4. Select two suitable statements regarding the following SQL statement:
CREATE TRIGGER trigger_1 AFTER UPDATE ON sales FOR EACH ROW
EXECUTE PROCEDURE write_log();
A. It is defining a trigger "trigger_1".
B. Every time 'UPDATE' is executed on the "sales" table, the "write_log" function is called once.
C. The "write_log" function is called before 'UPDATE' takes place.
D. 'UPDATE' is not executed if "write_log" returns NULL.
E. 'DROP TRIGGER trigger_1 ON sales;' deletes the defined trigger.
Answer: AE
5. Select two transaction isolation levels supported in PostgreSQL.
A. DIRTY READ
B. READ COMMITTED
C. REPEATABLE READ
D. PHANTOM READ
E. SERIALIZABLE
Answer: BE
6. The table "score" is defined as follows:
gid | score
-----+-------
1 | 70
1 | 60
2 | 100
3 | 80
3 | 50
The following query was executed. Select the number of rows in the result.
SELECT gid, max(score) FROM score
GROUP BY gid HAVING max(score) > 60;
A. 1 row
B. 2 rows
C. 3 rows
D. 4 rows
E. 5 rows
Answer: C