37、You are planning a software installation for both Oracle Database 11g Release 1 and Release 2. You plan to have at lease one database for each rele ...
分类:
其他好文 时间:
2018-09-07 14:00:00
阅读次数:
212
38、Which two are true about data dictionary and dynamic performance views (v$ views)? A) All database users have access to ALL_* views. B) Data dictio ...
分类:
其他好文 时间:
2018-09-07 13:52:34
阅读次数:
174
35、Which is true about the SYSTEM and SYSAUX tablespaces? A) The SYSAUX tablespace can be made read-only but the SYSTEM tablespace cannot. B) Both tab ...
分类:
其他好文 时间:
2018-09-06 12:36:36
阅读次数:
141
34、Which is true about invalid PL/SQL objects? A) They are automatically recompiled against the new definition of a referenced object at the same time ...
分类:
其他好文 时间:
2018-09-06 12:35:55
阅读次数:
210
26、Your database Is open in ARCHIVELOG mode. ? LOG_ARCHIVE_DEST Is set to Fast Recovery Area (FRA) and it Is 100% full when a log switch takes place. ...
分类:
其他好文 时间:
2018-09-03 13:35:04
阅读次数:
186
25、Examine this LISTENER. ORA file: LISTENER = (DESCRIPTION_LIST = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP) (HOST = srvl.example.com ...
分类:
其他好文 时间:
2018-09-03 12:13:52
阅读次数:
175
23、Which three are true about the Automatic Database Diagnostic Monitor (ADDM)? A) Its findings are accessible only by using Oracle Enterprise Manager ...
分类:
其他好文 时间:
2018-08-31 17:17:26
阅读次数:
209
封装 enclosure 封装是指隐藏类的实现细节,方便其他人的调用。 封装的目的: 让使用者可以通过间接调用方法或属性操作对象。 所以Python使用封装时,必会使用私有属性和方法。 私有属性和方法: 以‘__’双下划线开头,不以双下滑线结尾的表示符为私有成员, 私有成员只能使用该类的方法,来进行 ...
分类:
编程语言 时间:
2018-08-30 02:10:47
阅读次数:
268
14、Which command is used to display files that no longer conform to the backup retention policy? A) REPORT OBSOLETE B) SHOW DATAFILE BACKUP COPIES C) ...
分类:
其他好文 时间:
2018-08-27 18:35:37
阅读次数:
252
1、单一职责原则(srp) 每一个对象或者类只有一个职责。高内聚、底耦合。 2、开闭原则(ocp) 对扩展开放,对修改关闭。使用性,灵活性,扩展性,稳定性延续性,重复、维护 3、里氏替换原则(lsp) 在继承体系中利用抽象和多态静态改为动态。,也就是说任何父类出现的地方都可以用他的子类来替换,不影响 ...
分类:
编程语言 时间:
2018-08-27 18:27:56
阅读次数:
199