一.概述复制数据库即使用RMAN工具的DUPLICATE命令从源数据库拷贝所有或者一部分的数据到目标数据库。复制数据库技术在多种场景都是特别有用的,如创建standby数据库,创建用于不同目的地测试环境,数据库迁移等。使用DUPLICATE命令复制数据库能自动配置与源数据库不同的DBID,..
分类:
数据库 时间:
2014-10-15 21:08:42
阅读次数:
369
1、IE6 幽灵文本(Ghost Text bug)在我写本文之前,我遇到了这个bug。它相当的古怪和滑稽。一块不知哪来的重复的文本,被IE6显示在靠近原文本的下面。(译注:也可以参看Explorer 6 Duplicate Characters Bug获得bug演示)。我无法解决它,所以我搜索它,...
分类:
其他好文 时间:
2014-10-14 13:38:28
阅读次数:
203
Given a set of distinct integers, S, return all possible subsets.
Note:
Elements in a subset must be in non-descending order.The solution set must not contain duplicate subsets.
For exa...
分类:
其他好文 时间:
2014-10-12 18:17:08
阅读次数:
242
Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list.
For example,
Given 1->2->3->3->4->4->5, return 1->2->5.
Given 1->1-...
分类:
其他好文 时间:
2014-10-12 15:51:58
阅读次数:
190
1.使用 RMAN 创建数据库副本
使用 RMAN 的 DUPLICATE 命令可根据目标数据库备份创建数据库副本。
创建数据库副本:
1.创建辅助实例的 Oracle 口令文件。
2.
建立到辅助实例的 Oracle Net 连接。
3.
创建辅助实例的初始化参数文件。
4.在 NOMOUNT 模式下启动辅助实例。
5.
装载或打开目标数据库。
6.确保备份和归档...
分类:
数据库 时间:
2014-10-10 13:33:34
阅读次数:
266
[ { "Field": "event_type", "Type": "enumeration", "Description": "for event type records, this describes the actual event that occurred", "Compliance": "required for events", "Notes": "depends on s...
分类:
其他好文 时间:
2014-10-09 00:44:57
阅读次数:
269
class Solution {
public:
int removeDuplicates(int A[], int n) {
int duplicate = 0;
int i = 0;
for(i = 0; i < n - 1; i++){
if(A[i] == A[i + 1]){
dupli...
分类:
其他好文 时间:
2014-10-05 22:23:09
阅读次数:
183
Given a set of distinct integers, S, return all possible subsets.
Note:
Elements in a subset must be in non-descending order.The solution set must not contain duplicate subsets.
For example,
I...
分类:
其他好文 时间:
2014-10-03 22:24:55
阅读次数:
273
三路快排(3-way quicksort)可以提升重复元素排序的效率
分类:
其他好文 时间:
2014-10-02 14:08:22
阅读次数:
132
As another example of a user-defined type, we’ll define a class called Time that records the time of day. The class definition looks like this: ...
分类:
其他好文 时间:
2014-10-01 19:47:11
阅读次数:
245