位置:首页 > 题库频道 > 其它分类 > 计算机其它 > 专业技术初级资格程序员基础知识DB2

手机扫码关注微信
随时随地刷题

专业技术初级资格程序员基础知识DB2

推荐等级:
  • 卷面总分:0分
  • 试卷类型:模拟试题
  • 测试费用:¥5.00
  • 试卷答案:
  • 练习次数:0
  • 作答时间:0分钟

试卷介绍

试卷预览

  • 51Which SQL statement will allow user USER1 to create a view on a table named EMPLOYEE、

    A.GRANT CREATETAB ON DATABASE TO user1

    B.GRANT SELECT ON TABLE employee TO user1

    C.GRANT CREATEVIEW ON DATABASE TO user1

    D.GRANT REFERENCES ON TABLE employee TO user1

    开始考试练习点击查看答案
  • 52A new user named USER1 needs to retrieve information from a database named MYDB. Whatauthority must be granted to user USER1、

    A.DBCTRL authority

    B.SQLADM authority

    C.DATAACCESS authority

    D.ACCESSCTRL authority

    开始考试练习点击查看答案
  • 53Which privilege is required to invoke a user defined function、

    A.CALL

    B.USAGE

    C.EXECUTE

    D.REFERENCES

    开始考试练习点击查看答案
  • 54Which statement is true about an index that is used to support a UNIQUE constraint、

    A.It must not contain more than one column.

    B.It cannot be used in a referential constraint.

    C.It must be defined with the UNIQUE attribute.

    D.It must be defined as UNIQUE WHERE NOT NULL.

    开始考试练习点击查看答案
  • 55Which statement regarding triggers is true、

    A.Only one INSERT, UPDATE, or DELETE trigger can be defined per table.

    B.Triggers cannot be modified, they must be dropped and recreated with new definitions.

    C.Adding a trigger to a table that already has rows in it will cause triggered actions to be fire

    D.D. Triggers can only be fired one time per statement irrespective of the number of rows affected.

    开始考试练习点击查看答案
  • 56A table named STATES was created as follows:  CREATE TABLE states  (state_cd     CHAR(2) NOT NULL,   state_desc   CHAR(20)); CREATE UNIQUE INDEX indx1 ON states (state_cd); What will happen、

    A.An error will be returned and the operation will fail.

    B.A warning will be returned and the unique index INDX1 will become the index for the primary key.

    C.The primary key will be successfully added and the unique index INDX1 will be dropped and recreatedas the primary key index.

    D.The primary key will be successfully added, the unique index INDX1 will be dropped, and a new indexwill be created for the primary key.

    开始考试练习点击查看答案
  • 57When an application using a temporary table terminates or disconnects from the databaseunexpectedly, what happens to the temporary table and any data stored in it、

    A.The data in the table is deleted and the table persists.

    B.The data in the table is deleted and the table is implicitly dropped.

    C.The temporary table is converted to a base table and the data is delete

    D.D. The temporary table is converted to a base table and the data is persistent.

    开始考试练习点击查看答案
  • 58When a user-defined function (UDF) is created and no schema is specified, what schema is used to store the UDF、

    A.The SYSIBM schema.

    B.The SYSFUN schema.

    C.A schema with the name of the UDF.

    D.A schema with the userid of the UDF definer.

    开始考试练习点击查看答案
  • 59Which statement about triggers is true、

    A.A trigger is designed to return specific types of values and contains executable code.

    B.A trigger is designed to return specific types of values but contains no executable code.

    C.A trigger performs actions to capture details about an activity like a join operation against multiple tables.

    D.A trigger performs actions in response to an event like an INSERT, UPDATE or DELETE operation on a tabl

    开始考试练习点击查看答案
  • 60Which two statements are true about foreign key constraints、 (Choose two.)

    A.The foreign key constraint columns must be supported by an index.

    B.The foreign key constraint columns must be defined as NOT NULL.

    C.The number and data types of foreign key constraint columns must match the parent key.

    D.The columns of one foreign key constraint cannot be used in another foreign key constraint.

    E.To define a foreign key constraint there must be an associated primary key or unique key in the same or different table.

    开始考试练习点击查看答案
 6/14   首页 上一页 4 5 6 7 8 9 下一页 尾页
返回顶部