최신 DB2 A2090-730 무료샘플문제:
1. Which of the following products must be installed on an AIX server in order to build an application for AIX that will access a DB2 for z/OS database?
A) DB2 Universal DatabaseEnterprise Edition and DB2 Connect Enterprise Edition
B) DB2 Universal Developer's Edition
C) DB2Enterprise Server Edition
D) DB2 Personal Developer's Edition
2. Given the following statements:
CREATE TABLE table1 (col1 INTEGER, col2 CHAR(3)); CREATE VIEW view1 AS SELECT col1, col2 FROM table1 WHERE col1 < 100 WITH LOCAL CHECK OPTION;
Which of the following INSERT statements will execute successfully?
A) INSERT INTO view1 VALUES (50,abc)
B) INSERT INTO view1VALUES(100, abc)
C) INSERT INTO view1VALUES(100, 'abc')
D) INSERT INTO view1VALUES(50, 'abc')
3. Which of the following modes, when used with the LOCK TABLE statement, will cause the DB2 Database Manager to acquire a table-level lock that prevents other concurrent transactions from accessing data stored in the table while the owning transaction is active?
A) SHARE MODE
B) EXCLUSIVE MODE
C) RESTRICT MODE
D) ISOLATED MODE
4. Which of the following will provide user USER1 and all members of the group GROUP1 with the ability to perform DML, but no other operations on table TABLE1?
A) GRANT INSERT, UPDATE, DELETE, SELECT ON TABLE table1 TO user1 AND group1
B) GRANT INSERT, UPDATE, DELETE, SELECT ON TABLE table1 TO USER user1, GROUP group1
C) GRANT ALL PRIVILEGES EXCEPT ALTER, INDEX, REFERENCES ON TABLE table1 TO USER user1, GROUP group1
D) GRANT CONTROL ON TABLE table1 TO user1 AND group1
5. Which of the following will allow user USER1 to change the comment associated with a table named TABLE1?
A) GRANT ALTER ON TABLE table1 TO user1
B) GRANT UPDATE ON TABLE table1 TO user1
C) GRANT CONTROL ON TABLE table1 TO user1
D) GRANT REFERENCES ON TABLE table1 TO user1
질문과 대답:
질문 # 1 정답: B | 질문 # 2 정답: D | 질문 # 3 정답: B | 질문 # 4 정답: B | 질문 # 5 정답: A |