The operation col1.retainAll(col2) will not modify the col1 object.
The operation col1.removeAll(col2) will not modify the col2 object.
The operation col1.addAll(col2) will return a new collection object, containing elements from both col1 and col2.
The operation col1.containsAll(Col2) will not modify the col1 object.
第1题:
对于表A(col1 int,col2 char(1)),表B(col1 int,col2char(1)),为确保表A的数据全部被保留,下面正确的联接方式是()
第2题:
存在两个结构相同的数据库表T1(col1,col2,col3)、T2(col1,col2,col3),写出一SQL语句将所有T1数据导入到T2表()
第3题:
Given two collection objects referenced by col1 and col2,which of these statements are true?()
第4题:
Which of the following statements are true regarding the Recycle Bin?()
第5题:
你正在SQL SERVER 2005 服务器上一个名为DB1的数据库上进行着工作。你发现由于对DB1中Table1表的扫描导致了查询执行缓慢。已知,Table是一个使用频繁而且非常巨大的表,同时你又确定了查询中包含如下的语句:SELECT col1,col2 FROM table1 WHERE col3 =
第6题:
The equals() method determines if reference values refer to the same object.
The == operator determines if the contents and type of two separate objects match.
The equals() method returns true only when the contents of two objects match.
The class File overrides equals() to return true if the contents and type of two separate objects match.
第7题:
A inner join B
A left join B
A right join B
Across join B
第8题:
更新DB1数据库中表Table1的所有统计信息
在DB1数据库中,使用CREATE STATISTICS 语句为表Table1的列col3创建缺少的统计信息
设置优先值提升选项的值为1
执行如下语句:USE DB1 GO CREATE INDEX index1 ON table1(col3) INCLUDE(col1, col2) WITH (ONLINE = ON) GO
执行如下语句 USE DB1GOCREATE INDEX index1 ON table1(col3, col2,col1)
第9题:
update table A setcol2=’N’ where col1=1
modify table A setcol2=N where col1=1
update A set col2=’N’ where col1=1
modify A set col2=N where col1=1
第10题:
The class implements java.lang.Comparable.
The class implements java.util.Comparator.
The interface used to implement sorting allows this class to define only one sort sequence.
The interface used to implement sorting allows this class to define many different sort sequences.
第11题:
The IDS is in the traffic path.
The IDS can send TCP resets to the source device.
The IDS can send TCP resets to the destination device.
The IDS listens promiscuously to all traffic on the network.
Default operation is for the IDS to discard malicious traffic.
第12题:
The Junos OS supports client, server, and symmetric modes of NTP operation.
Synchronized time on all network devices makes log messages more useful for troubleshooting.
Authentication methods are not supported.
The Junos OS must be used as the primary time reference.
第13题:
对于表A(col1 int,col2 char(1))更新col1=1的数据col2值为N,下面语句正确的是()
第14题:
The following statements: CREATE TABLE t1 (col1 INT NOT NULL, PRIMARY KEY(col1)); CREATE TABLE t2 (col1 INT NOT NULL, col2 CHAR(1) NOT NULL, PRIMARY KEY (col1, col2), FOREIGN KEY (col1) REFERENCES t1 (col1) ON DELETE CASCADE ON UPDATE RESTRICT); CREATE TABLE t3 (col1 INT NOT NULL, col2 INT NOT NULL, PRIMARY KEY (col1, col2),FOREIGN KEY (col1) REFERENCES t1 (col1) ON DELETE NO ACTION ON UPDATE RESTRICT);INSERT INTO t1 VALUES (1), (2); INSERT INTO t2 VALUES (1, 'a'), (1, 'b'), (2,'c'); INSERT INTO t3 VALUES (1, 100), (2, 200), (2,300); How many rows will be deleted by the following DELETE statement? DELETE FROM t1 WHERE col1= 1;()
第15题:
You plan to execute the following command to perform a Flashback Database operation in your database: SQL> FLASHBACK DATABASE TO TIMESTAMP (SYSDATE -5/24); Which two statements are true about this?()
第16题:
Which two statements are true regarding the Oracle Data Pump export and import operations()
第17题:
You work with a database named DB1, which is located on a SQL Server 2005 computer. You discover that a table scan on Table1 in DB1 causes a slow query. Table1 is a very large table that is used frequently. You ascertain that the query contains the following statement. SELECT col1, col2 FROM table1 WHERE col3 =
第18题:
The database must have multiplexed redo log files
The database must be in the MOUNT state to execute the command
The database must be in the NOMOUNT state to execute the command
The database must be opened in RESTRICTED mode before this operation
The database must be opened with the RESETLOGS option after the flashback operation
第19题:
You cannot export data from a remote database.
You can rename tables during an import operation.
You can overwrite existing dump files during an export operation.
You can compress the data during export but not the metadata because it is not supported.
第20题:
The Recycle Bin is a physical storage area for dropped objects.
The Recycle Bin is a logical container for dropped objects.
The Recycle Bin stores the results of a Flashback Drop operation.
The objects in the Recycle Bin are stored in the tablespace in which they were created.
第21题:
Flashback Table can be performed on system tables.
Flashback Table operation does not shrink the segments.
Flashback Table uses log mining to extract SQL_REDO and SQL_UNDO statements.
Flashback Table operation acquires exclusive data manipulation language (DML) locks.
第22题:
The Costa Concordia is three times the weight of the Titanic.
Engineers in Italy have successfully righted the wrecked Concordia after an operation that lasted around 12 hours.
The salvage operation went ahead despite bad weather conditions.
As a common means of righting wrecked ships, parbuckling had never been carried out on a vessel of the Concordia’s size.
第23题:
You cannot export data from a remote database.
You can rename tables during an import operation.
You can overwrite existing dump files during an export operation.
You can compress the data during export but not the metadata because it is not supported