Both tables have NULL values.
You want all unmatched data from one table.
You want all matched data from both tables.
You want all unmatched data from both tables.
One of the tables has more data than the other.
You want all matched and unmatched data from only one table.
第1题:
Redo log files are multiplexed in your database. The disk in which you have one of the redo log members is highly fragmented. In the process of defragmentation you lose the redo log member, which is not a member of the current group. How would you recover from the loss of the redo log member?()
第2题:
In which two cases would you use an outer join? ()
第3题:
下列连接中能自动删除重复的列是()。
第4题:
Which command (without options) would you use to display how much space is available on all mounted partitions?()
第5题:
Which of the following commands would you run to add your machine to an NT4 domain?()
第6题:
In which case would you use the Flashback Database feature to perform a recovery?()
第7题:
use automatic extent allocation
disable threshold for the tablespace
use freelists to manage the free space
use automatic segment space management
create the tablespace as a bigfile tablespace
use the RESIZE clause while creating the tablespace
enable AUTOEXTEND for at least one of the data files in the tablespace
第8题:
EAP
Chap
Ms-Chap
PPTP
PAP
SPAP
第9题:
You cannot use IN operator in a condition that involves an outerjoin.
You use (+) on both sides of the WHERE condition to perform an outerjoin.
You use (*) on both sides of the WHERE condition to perform an outerjoin.
You use an outerjoin to see only the rows that do not meet the join condition.
In the WHERE condition, you use (+) following the name of the column in the table without matching rows, to perform an outerjoin.
You cannot link a condition that is involved in an outerjoin to another condition by using the OR operator.
第10题:
&
ACCEPT
PROMPT
&&
第11题:
SMON would automatically restore the lost file.
You would need to restore the whole database from the last backup.
You would need to restore the file from the last full database backup.
You would need to use flashback technology to restore the lost redo log member.
You would need to use Recovery Manager (RMAN) to restore the lost redo log member.
You would need to restore the missing log file by copying one of the remaining files from the same group.
第12题:
Both tables have NULL values.
You want all unmatched data from one table.
You want all matched data from both tables.
You want all unmatched data from both tables.
One of the tables has more data than the other.
You want all matched and unmatched data from only one table.
第13题:
You want the size of the tablespace to increase when it is full. Which option would you use?()
第14题:
Which three are true regarding the use of outer joins? ()
第15题:
以下哪两组联接关键字可以创建这样一个联接,该联接包括SELECT语句中指定的第一个表中的不匹配行?()
第16题:
Which of the following tools would be BEST to use to pry open the case of a laptop?()
第17题:
Very soon you will be performing maintenance operations. You would have several jobs to run as soon as the maintenance period starts. Which method would you use to create jobs without specifying the time period when the job should be run?()
第18题:
Which substitution variable would you use if you want to reuse the variable without prompting the user each time?()
第19题:
net rpc join -S PDC -UAdministrator%password
net ads join -s PDC -UAdministrator%password
net rpc join -s PDC -UAdministrator%password
net ads join -W PDC -nAdministrator%password
第20题:
use DBMS_IJOB package
use Oracle Scheduler
use DBMS_JOB package
use Oracle Data Pump Export and Import
第21题:
You want to create a nonequijoin.
The tables to be joined have multiple NULL columns.
The tables to be joined have columns of the same name and different data types.
The tables to be joined have columns with the same name and compatible data types.
You want to use a NATURAL join, but you want to restrict the number of columns in the join condition.
第22题:
The tables being joined have NOT NULL columns.
The tables being joined have only matched data.
The columns being joined have NULL values.
The tables being joined have only unmatched data.
The tables being joined have both matched and unmatched data.
Only when the tables have a primary key-foreign key relationship.
第23题:
SELECT last_name, department_name FROM employees NATURAL JOIN departments;
SELECT last_name, department_name FROM employees JOIN departments ;
SELECT last_name, department_name FROM employees e JOIN departments d ON (e.department_id = d.department_id);
SELECT last_name, department_name FROM employees e RIGHT OUTER JOIN departments d ON (e.department_id = d.department_id);
SELECT last_name, department_name FROM employees FULL JOIN departments ON (e.department_id = d.department_id);
SELECT last_name, department_name FROM employees e LEFT OUTER JOIN departments d ON (e.department_id = d.department_id);
第24题:
to recover a dropped tablespace
to recover data from a truncated table
to recover a data file that has been shrunk
to recover a database to the state that existed before the RESETLOGS operation