The cursor is only protected from updates and deletes by concurrent applications.
The row is only protected from positioned updates and deletes that reference another cursor of the same application.
The cursor is protected from positioned updates and deletes that reference another cursor of a different application.
The row is protected from updates and deletes by the current application and from positioned updates and deletes that reference another cursor of the same application.
第1题:
Which of the following will help protect an operating system from vulnerability?()
第2题:
Which of the following is TRUE for the DB2 isolation level Cursor Stability (CS)?()
第3题:
A customer wants to have employees work from remote locations as well as in the office. All communications must be secure and files must be protected from access by unauthorized people. The employee’s applications (database inserts and reads) are only accessed with a web browser. Which of the following capabilities is necessary?()
第4题:
Which two statements are correct regarding the Flashback Versions Query feature?()
第5题:
Consider this syntax: MERGE INTO t1 USING t2 ON (join predicate)….. What does the MERGE syntax do?()
第6题:
SELECT*FROM读者INTO CURSOR one
SELECT*FROM读者TO CURSOR one
SELECT*FROM读者INTO CURSOR DBF one
SELECT*FROM读者TO CURSOR DBF one
第7题:
VTP updates are ignored and forwarded out all ports.
VTP updates are ignored and forwarded out trunks only.
VTP updates are made to the VLAN database and are forwarded out trunks only.
VTP updates are ignored and are not forwarded.
第8题:
DELETE ALL FROM tab01 FOR CURRENT OF csr01
DELETE FROM tab01 FOR CURRENT csr01 WITH RS
DELETE * FROM tab01 WHERE CURRENT csr01 WITH CS
DELETE FROM tab01 WHERE CURRENT OF csr01 WITH RR
第9题:
It performs a merge join of the row from T2 only if it doesn’t exist in the T1 table.
It creates a natural join of tables T1 and T2 for all columns that have the same name.
It creates a Cartesian product of table T1 and table T2 for all columns that have the same name.
For each row from T2, it updates the row if it exists within table T1, otherwise it inserts the row into T1.
第10题:
DELETE ALL FROM tab01 FOR CURRENT OF csr01
DELETE FROM tab01 FOR CURRENT csr01 WITH RS
DELETE * FROM tab01 WHERE CURRENT csr01 WITH CS
DELETE FROM tab01 WHERE CURRENT OF csr01 WITH RR
第11题:
Alternators
Wave guides
Exciters
Amplidynes
第12题:
It shows the total size of the index row
It shows how many columns in the index are examined
It shows the number of characters indexed in the key
It shows how many bytes will be used from each index row
第13题:
The opening of cursor CSR01 produces the following result set: STUDENT LASTNM FIRSTNM CLASSNO 123 Brown John T100 213 Bailey James T100 312 Carter Arlene T210 465 Chas Devon T305 546 Davis Steven T405 If this Fetch statement is executed: FETCH csr01 INTO :studnum, :firstname, :lastname, :class Which of the following DELETE statements will cause this row to be deleted?()
第14题:
Which of the following best describes the lock protection provided by DB2 for the current row of a cursor?()
第15题:
Which of the following best describes how locks are used in DB2?()
第16题:
Which two statements about subqueries are true?()
第17题:
Which two statements are true regarding single row functions?()
第18题:
To maintain control of updated rows for commit processing
To ensure only committed changes are altered by another application
To allow two applications to update the same row of data simultaneously
To prevent multiple applications from accessing the same data simultaneously
第19题:
Download free anti-virus programs from the Internet.
Perform updates from the manufacturers website regularly.
Using the operating systems email program only to open attachments.
Monitoring what is displayed on the screen.
第20题:
VTP updates are ignored and forwarded out all ports.
VTP updates are ignored and forwarded out trunks only.
VTP updates are made to the VLAN database and are forwarded out trunks only.
VTP updates are ignored and are not forwarded.
第21题:
A single row subquery can retrieve data from only one table.
A SQL query statement cannot display data from table B that is referred to in its subquery, unless table B is included in the main query's FROM clause.
A SQL query statement can display data from table B that is referred to in its subquery, without including B in its own FROM clause.
A single row subquery can retrieve data from more than one table.
A single row subquery cannot be used in a condition where the LIKE operator is used for comparison.
A multiple-row subquery cannot be used in an INSERT statement to insert multiple rows at a time.
第22题:
SSL
PGP
File encryption program
Public key encryption
第23题:
An application process acquires at least a share lock on the current row of every cursor.
Any row that is read during a unit of work cannot be changed by other application processes until the unit of work is complete.
Any row changed by another application process can be read, even if the change has not been committed by that application process.
An application process that issues the same query more than once in a unit of work will not see additional rows caused by other application processes appending new information to the database.