多选题哪个RMAN参数控制多路复用到磁盘和磁带?
多选题Given:
2. class Chilis {
3. Chilis (String c, int h) {color = c; hotness = h; }
4. String color;
5. int hotness;
6. public boolean equals(Object o) {
7. if(this == (Chilis)o) return true;
8. return false;
9. }
10. public String toString() {return color + " " + hotness; }
11. }
If instances of class Chilis are to be used as keys in a Map, which are true? (Choose all that apply.)
多选题在如下的操作中,哪一个将造成一个用户进程与Oracle服务器建立起连接? A.退出SQL*Plus B.在SQL*Plus中执行一个SQL脚本 C.在SQL*Plus中发出一个SELECT语句 D.在SQL*Plus中发出"connect cat/miao"命令
多选题你已经在恢复目录数据库以及包含RMAN目录的表空间中丢失了最近归档的重做日志文件。此时,可以对恢复目录数据库进行不完整还原,以便还原到在恢复目录中注册目标数据库后的一个时间点。可以使用什么命令来重新同步目标数据库的元数据(及备份信息)和恢复目录数据库?
多选题Given:
1. import java.util.*;
2. public class Bucket {
3. public static void main(String[] args) {
4. Set<String> hs = new HashSet<String>();
5. Set<String> lh = new LinkedHashSet<String>();
6. Set<String> ts = new TreeSet<String>();
7. List<String> al = new ArrayList<String>();
8. String[] v = {"1", "3", "1", "2"};
9. for(int i=0; i< v.length; i++) {
10. hs.add(v[i]); lh.add(v[i]); ts.add(v[i]); al.add(v[i]);
11. }
12. Iterator it = hs.iterator();
13. while(it.hasNext()) System.out.print(it.next() + " ");
14. Iterator it2 = lh.iterator();
15. while(it2.hasNext()) System.out.print(it2.next() + " ");
16. Iterator it3 = ts.iterator();
17. while(it3.hasNext()) System.out.print(it3.next() + " ");
18. Iterator it5 = al.iterator();
19. while(itS.hasNext()) System.out.print(it5.next() + " ");
20. } }
Which statements are true? (Choose all that apply.)
多选题以下哪一个操作将造成交易的自动回滚? A.一个GRANT命令 B.一个CREATE命令 C.系统崩溃 D.没有发COMMIT命令就退出了SQL*Plus
多选题在以下有关临时数据文件(temp files)的陈述中,哪3个是正确的? A.可以重新命名(该名)一个临时(数据)文件 B.介质恢复可恢复临时文件 C.不能将一个临时文件置为只读(read-only) D.临时文件总是被设置为NOLOGGING模式 E.使用ALTER DATABASE命令可创建临时文件 F.BACKUP CONTROLFILE命令并不产生有关临时文件的任何信息
多选题假设登录数据库后,修改INVENTOPY(库存)表。当会话开始之后(连接成功之后),发出来3个UPDATE语句,然后使用ALTER table语句在这个表上添加了一个列约束。可是正在发COMMIT语句时系统崩溃了,请问以下所做的哪些变化适用于INVENTORY表?
多选题在使用RMAN基于时间的不完整恢复时,要设置哪些操作系统环境变量?
多选题Given:
2. import java.util.*;
3. public class Birthdays {
4. public static void main(String[] args) {
5. Map<Friends, String> hm=new HashMap<Friends, String>();
6. hm.put(new Friends("Charis"), "Summer 2009");
7. hm.put(new Friends("Draumur"), "Spring 2002");
8. Friends f=new Friends(args[0]);
9. System. out.println (hm.get(f));
10. }
11. }
12. class Friends {
13. String name;
14. Friends(String n) {name=n; }
15. }
And the command line invocation:
java Birthdays Draumur
What is the result?
A. null
B. Draumur
C. Spring 2002
D. Compilation fails.
E. The output is unpredictable.
F. An exception is thrown at runtime.
G Friends@XXXX (where XXXX is a representation of a hashcode)
多选题虚拟目录数据库所有者VPC1拥有CATDB2数据库上的RECOVERY_CATALOG_OWNER权限以及RMAN REGISTER DATABASE权限。11g RMAN客户端可以使用以下哪个命令集来创建虚拟目录,注册新数据库DW,并且创建完整数据库备份?
多选题为数据库创建一个块更改跟踪文件,如果运行以下命令,会出现什么情况?
RMAN>backup incremental level 1 database;
多选题可以在EM Support Workbench Incident Details页面运行以下哪些顾问程序?
多选题在SQL:999语法中,以下哪两个操作符可以用于外连接的条件中?
多选题以下哪一个操作将造成交易的自动回滚?
多选题以下是ORDER(订单)和LINE_ITEM表的结构: ORDER ------- ORDER_ID NUMBER(9) CUSTOMER_ID NUMBER(9) ORDER_DATE DATE SHIP_DATE DATE LINE_ITEM ----------- LINE_ITEM_ID NUMBER(9) ORDER_ID NUMBER(9) PRODUCT_ID NUMBER(9) QUANTITY NUMBER(5) 在LINE_ITEM表中的ORDER_ID列上有一个外键约束。该外键约束是指向ORDER表的,在如下有关完整性约束错误的陈述中,哪个是正确的? A.为了向ORDER表中插入一条记录,必须向LINE_ITEM表中插入一条记录 B.要修改ORDER表中的一条记录,主记录(Parent Record)必须已经存在于LINE_ITEM表中 C.要从LINE_ITEM表中移除这个约束,必须删除ORDER表中所有的记录 D.要删除ORDER表中的一条记录,必须删除LINE_ITEM表中的任何子记录(Child Record)
多选题在创建一个视图时,以下哪个选项是用来防止用户通过该视图更改基表中的数据行? A.分组函数(Group Function) B.GROUPBY子句 C.DISTINCT命令 D.WITH CHECK OPTION
多选题在下面的参数中,哪些是ASM实例的必需参数?
多选题Given the current directory is bigApp, and the directory structure:
bigApp
|-- classes
|-- Cloned.class
|-- com
|-- Cloned.class
|-- wickedlysmart
|-- Cloned.class
And the three files:
public class Cloned {
public static voidmain(String[] args) {System.out.println("classes"); }
}
public class Cloned {
public static void main(String[] args) {System.out.println("com"); }
}
public class Cloned {
public static void main(String[] args) {System.out.println("ws"); }
}
Have been compiled into the classes, com, and wickedlysmart directories, respectively. Which will produce the output "ws"? (Choose all that apply.)
多选题请看如下的SQL*Plus命令: COLUMN product_name HEADING 'Product Name' FORMAT A20 这个命令将完成哪些工作? A.它将使PRODUCT_NAME列的标题居中 B.它将把PRODUCT_NAME列的标题设置为'Product Name' C.它将限制PRODUCT_NAME列的标题为20个字符 D.它将把PRODUCT_NAME列的显示宽度设置为20 E.它将显示PRODUCT_NAME列的当前设置
