Table TAB1 was created using the following statement: CREATE TABLE tab1 (c1 INT, c2 INT, c3 INT, c4 INT, c5 INT); If column C1 is unique and queries typically access columns C1 and C2 together, which statement(s) will create index(es) that will provide optimal query performance? ()
第1题:
A.CREATE TABLE tab1 OF myOBJ
B.CREATE TABLE myOBJ OF tab1
C.CREATE TABLE tab1 AS myOBJ
D.CREATE TABLE tab1 TYPE OF myOBJ
第2题:
tr的英文全称是()。
第3题:
If a unique constraint is defined on column COL1 of table TAB1, what are the characteristics of COL1?()
第4题:
Which of the following statements is used to prevent user TOM from adding and deleting data in table TAB1?()
第5题:
Which action(s) will cause a compression dictionary to be removed from a table?()
第6题:
COL1 will accept NULL values and can be referenced in another table's foreign key specification.
COL1 will not accept NULL values and cannot be referenced in another tables foreign key specification.
COL1 will not accept NULL values and can be referenced in another tables foreign key specification.
COL1 will accept NULL values and cannot be referenced in another tables foreign key specification.
第7题:
SELECT TAB1.* FROM TAB1 WHERE TAB1.简历Like篮球
SELECT TAB1.* FROM TAB1 WHERE TAB1.简历Like*篮球
SELECT TAB1.* FROM TAB1 WHERE TAB1.简历Like*篮球*
SELECT TAB1.* FROM TAB1 WHERE TAB1.简历Like*篮球*
第8题:
GRANT ADD ON TABLE tab1 TO John
GRANT INSERT ON tab1 TO John
GRANT ADD ON TABLE tab1 TO USER John
GRANT INSERT ON TABLE tab1 TO USER John
第9题:
GRANT ADD DATA ON TABLE tab1 TO GROUP tom appgrp
GRANT INSERT TO USER tom, GROUP appgrp ON TABLE tab1
GRANT INSERT ON TABLE tab1 TO USER tom, GROUP appgrp
GRANT ADD DATA ON TABLE tab1 TO USER appgrp, GROUP tom
第10题:
ALTER TABLE SPLIT PARTITION
ALTER TABLE MERGE PARTITION
ALTER TABLE TRUNCATE PARTITION
ALTER TABLE ADD PARTITION
ALTER TABLE DROP PARTITION
ALTER TABLE MOVE PARTITION
第11题:
Create a view on the table.
Create an index on the table.
Create a synonym on the table.
Add a virtual column to the table.
Update the table using the UPDATE statement.
Delete rows in the table using the DELETE command
第12题:
ALTER TABLE table_name ENABLE constraint_name;
ALTER TABLE table_name STATUS = ENABLE CONSTRAINT constraint_name;
ALTER TABLE table_name ENABLE CONSTRAINT constraint_name;
ALTER TABLE table_name STATUS ENABLE CONSTRAINT constraint_name;
ALTER TABLE table_name TURN ON CONSTRAINT constraint_name;
第13题:
A. In the routing table only.
B. In the neighbor table only.
C. In the topology table only.
D. In the routing table and neighbor table.
E. In the routing table and topology table.
F. In the topology table and neighbor table.
第14题:
In what location are EIGRP successor routes stored?()
第15题:
Which syntax turns an existing constraint on?()
第16题:
Given the following statements: CREATE TABLE tab1 (col1 INT); CREATE TABLE tab2 (col1 INT); CREATE TRIGGER trig1 AFTER UPDATE ON tab1 REFERENCING NEW AS new1 FOR EACH ROW MODE DB2SQL INSERT INTO tab2 VALUES(new1.col1); INSERT INTO tab1 VALUES(2),(3); What is the result of the following query? SELECT count(*) FROM tab2;()
第17题:
Given the following two tables: TAB1 C1 C2 A 11 B 12 C 13 TAB2 CX CY A 21 C 22 D 23 The following results are desired: C1 C2 CX CY A 11 A 21 C 13 C 22 -- --D 23 Which of the following queries will yield the desired results?()
第18题:
In the routing table only.
In the neighbor table only.
In the topology table only.
In the routing table and neighbor table.
In the routing table and topology table.
In the topology table and neighbor table.
第19题:
CREATE UNIQUE INDEX xtab1 ON tab1 (c1); CREATE INDEX xtab2 ON tab1 (c2) INCLUDE (c3)
CREATE UNIQUE INDEX xtab1 ON tab1 (c1) INCLUDE (c2, c3)
CREATE UNIQUE INDEX xtab1 ON tab1 (c3, c2, c1)
CREATE UNIQUE INDEX xtab1 ON tab1 (c2) INCLUDE (c1, c3)
第20题:
TRIG_A
TRIG_B
TRIG_C
TRIG_D
第21题:
CREATE TABLE tab1 OF myOBJ
CREATE TABLE myOBJ OF tab1
CREATE TABLE tab1 AS myOBJ
CREATE TABLE tab1 TYPE OF myOBJ
第22题:
Create a view on the table.
Create an index on the table.
Create a synonym on the table.
Add a virtual column to the table.
Update the table using the UPDATE statement.
Delete rows in the table using the DELETE command.
第23题:
INSERT INTO tab1 SELECT cx, cy FROM tab2
INSERT INTO tab1 VALUES (tab2.cx, tab2.cy)
INSERT INTO tab1 VALUES (SELECT cx, cy FROM tab2)
INSERT INTO tab1 (c1, c2) VALUES (SELECT cx, cy FROM tab2)