Chinaunix首页 | 论坛 | 博客
  • 博客访问: 289329
  • 博文数量: 469
  • 博客积分: 2510
  • 博客等级: 少校
  • 技术积分: 5200
  • 用 户 组: 普通用户
  • 注册时间: 2008-06-03 16:15
文章分类

全部博文(469)

文章存档

2011年(82)

2010年(284)

2009年(69)

2008年(34)

我的朋友

分类:

2010-03-13 11:00:15

1z0-007的考试相关的信息。在这里我就说明一下我所知道的情况,供考友们参考一下子的啊。其中oracle 中的一项重要的科目就是1z0-007

 

以下是我从killtest 题库网上拉的资料

考试号:1Z0-007

认证名称:Introduction to Oracle9i: SQL
考题数目:129

1. What does the FORCE option for creating a view do?

A.creates a view with constraints

B.creates a view even if the underlying parent table has constraints

C.creates a view in another schema even if you don't have privileges

D.creates a view regardless of whether or not the base tables exist

Answer: D

2. What are two reasons to create synonyms? (Choose two.)

A.You have too many tables.

B.Your tables are too long.

C.Your tables have difficult names.

D.You want to work on your own tables.

E.You want to use another schema's tables.

F.You have too many columns in your tables.

Answer: CE

3. The STUDENT_GRADES table has these columns:

STUDENT_ID NUMBER(12)

SEMESTER_END DATE

GPA NUMBER(4,3)

The registrar requested a report listing the students' grade point averages (GPA) sorted from highest

grade point average to lowest.

Which statement produces a report that displays the student ID and GPA in the sorted order requested by

the registrar?

A.SELECT student_id, gpa

FROM student_grades

ORDER BY gpa ASC;

B.SELECT student_id, gpa

FROM student_grades

SORT ORDER BY gpa ASC;

C.SELECT student_id, gpa

FROM student_grades

SORT ORDER BY gpa;

D.SELECT student_id, gpa

FROM student_grades

ORDER BY gpa;

 E.SELECT student_id, gpa

FROM student_grades

SORT ORDER BY gpa DESC;

F.SELECT student_id, gpa

FROM student_grades

ORDER BY gpa DESC;

Answer: F

4. In which three cases would you use the USING clause? (Choose three.)

A.You want to create a nonequijoin.

B.The tables to be joined have multiple NULL columns.

C.The tables to be joined have columns of the same name and different data types.

D.The tables to be joined have columns with the same name and compatible data types.

E.You want to use a NATURAL join, but you want to restrict the number of columns in the join condition.

Answer: CDE

5. The CUSTOMERS table has these columns:

CUSTOMER_ID NUMBER(4) NOT NULL

CUSTOMER_NAME VARCHAR2(100) NOT NULL

STREET_ADDRESS VARCHAR2(150)

CITY_ADDRESS VARCHAR2(50)

STATE_ADDRESS VARCHAR2(50)

PROVINCE_ADDRESS VARCHAR2(50)

COUNTRY_ADDRESS VARCHAR2(50)

POSTAL_CODE VARCHAR2(12)

CUSTOMER_PHONE VARCHAR2(20)

The CUSTOMER_ID column is the primary key for the table.

You need to determine how dispersed your customer base is. Which expression finds the number of different countries represented in the CUSTOMERS table?

A.COUNT(UPPER(country_address))

B.COUNT(DIFF(UPPER(country_address)))

C.COUNT(UNIQUE(UPPER(country_address)))

D.COUNT DISTINCT UPPER(country_address)

E.COUNT(DISTINCT (UPPER(country_address)))

Answer: E

   如果还想要下载更多的题库资料,你可以登录 进行下载,具体的情况还是那的情况为准!!!

阅读(159) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~