如果把数据库从11g 升级到12c,或者在12c中创建的,就是NON CDB,那么这样的数据库就是普通的单实例,和12c 之前的数据库没有区别,但12c 的特点就是CDB 管理,所以既然上12c,还是要切换成CDB 进行管理。 所以下面的测试步骤,就是把NON CDB 切换成CDB的步骤。 1.当前 ...
分类:
数据库 时间:
2019-11-05 21:20:09
阅读次数:
620
基本概念: DW (Data Warehouse) 是一个面向主题的(Subject Oriented), 集成的(Integrated), 相对稳定的(Non Volatile), 反映历史变化(Time Variant)的数据集合,用于支持管理决策(Decision Making Support ...
分类:
其他好文 时间:
2019-11-05 13:41:06
阅读次数:
65
题目描述: Given a string s1, we may represent it as a //分割 binary tree by partitioning it to two non-empty substrings recursively. Below is one possible r ...
分类:
其他好文 时间:
2019-11-04 11:23:35
阅读次数:
77
链接: https://vjudge.net/problem/POJ 2891 题意: Elina is reading a book written by Rujia Liu, which introduces a strange way to express non negative integ ...
分类:
其他好文 时间:
2019-11-04 00:09:48
阅读次数:
138
Given an array of non-negative integers, you are initially positioned at the first index of the array. Each element in the array represents your maxim ...
分类:
其他好文 时间:
2019-11-03 18:43:54
阅读次数:
92
You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contai ...
分类:
其他好文 时间:
2019-11-03 12:24:14
阅读次数:
83
Given a non-empty string s and a dictionary wordDict containing a list of non-empty words, add spaces in s to construct a sentence where each word is ...
分类:
数据库 时间:
2019-11-03 01:01:14
阅读次数:
140
# JVM原理 # JVM->java虚拟机,解释器,负责将程序员编写的.java文件编译为多平台通用的字节码(.class)文件,最终将字节码解释给计算机执行 [JVM内存区域主要划分为“线程共享区”“非线程共享区”,比如,Method Area(方法区,non-heap)与Heap(堆),Dir ...
分类:
其他好文 时间:
2019-11-02 15:54:46
阅读次数:
63
variant和gene expression是生物信息中两个非常重要的核心站点(根据中心法则,还有表观、3D genome、isoform、蛋白),这也是两个最能被准确测量的维度,在Post-GWAS,它们两的关系是我们研究的重点。 显然variant主要分为两类: coding noncodin ...
分类:
其他好文 时间:
2019-11-01 22:24:37
阅读次数:
119
不重叠的区间。这题又是用到扫描线的思想。题意是给了一组intervals,求至少需要删除几个interval就能使得最后的结果集中没有重叠。 既然是找是否有重叠,那么可以根据每个interval的end对input进行排序。排序之后遍历intervals,记录不重叠的interval一共有几个(记为 ...
分类:
移动开发 时间:
2019-11-01 12:50:16
阅读次数:
106