单项选择题
The following triggers were defined for table TAB1 in the order shown:CREATE TRIGGER trig_a AFTER UPDATE ON tab1 FOR EACH ROW UPDATE sale_tab SET sale_date = CURRENT DATE; CREATE TRIGGER trig_b AFTER UPDATE ON tab1 FOR EACH STATEMENT UPDATE invoice_tab SET invoice_date = CURRENT DATE; CREATE TRIGGER trig_c AFTER UPDATE ON tab1 FOR EACH ROW UPDATE shipping_tab SET ship_date = CURRENT DATE; CREATE TRIGGER trig_d AFTER UPDATE ON tab1 FOR EACH STATEMENT UPDATE billing_tab SETbilling_date = CURRENT DATE;If an event occurs that causes all of them to activate, which trigger will be activated first?()
A.TRIG_A
B.TRIG_B
C.TRIG_C
D.TRIG_D
相关考题
-
单项选择题
Which of the following strings can be inserted into an XML column using XMLPARSE?()
A."<employee/>"
B."<?xml version='1.0' encoding='UTF-8' ?>"
C."<!DOCTYPE hello SYSTEM 'hello_world.dtd'>"
D."<x xmlns:ibmcert='http://www.ibm.com/certify'>" -
单项选择题
What is the maximum size that can be specified when creating an XML column in a DB2 table?()
A.No size is specified
B.The buffer pool size
C.The page size for the table space
D.The extent size for the table space -
单项选择题
If a unique constraint is defined on column COL1 of table TAB1, what are the characteristics of COL1?()
A.COL1 will accept NULL values and can be referenced in another table's foreign key specification.
B.COL1 will not accept NULL values and cannot be referenced in another tables foreign key specification.
C.COL1 will not accept NULL values and can be referenced in another tables foreign key specification.
D.COL1 will accept NULL values and cannot be referenced in another tables foreign key specification.
