1、oracle内存结构:sga + pga ; 2、oracle数据库体系结构: 3、oracle工作原理: a.在数据库服务器上启动oracle实例; b.应用程序在客户端的用户进程中运行,启动oralce网络服务驱动器与服务器创建连接; c.服务器运行oralce网络服务驱动器,创建专用的服务
分类:
数据库 时间:
2016-02-01 09:40:58
阅读次数:
202
For an integer array (index from 0 to n-1, where n is the size of this array), in the corresponding SegmentTree, each node stores an extra attribute m
分类:
其他好文 时间:
2016-02-01 09:41:38
阅读次数:
167
1、 进入苹果操作系统后,请点击如下mail的图标; 2、 进入Mail,点击“邮件”,从下拉菜单中选择“添加帐户”; 3、 在选取要添加的邮件帐户页选择“添加其它邮件帐户”,点击“继续” 4、 输入您要配置的姓名、电子邮件地址及密码,电子邮箱地址请输入完整,例如:test@abc.com,点击“创
分类:
系统相关 时间:
2016-02-01 09:41:33
阅读次数:
220
尊贵的邮箱客户,您好!企业邮箱可以代收任何其他的邮箱账号,如果设置不成功,建议咨询被代收邮箱客服是否支持或者设置是否正确。如果设置不成功,建议在网页设置“自动转发”。其他邮箱设置代收企业邮,接收服务器为pop-ent.21cn.com 端口为110 。代收设置提示成功后即时生效,但接收邮件的快慢受两
分类:
其他好文 时间:
2016-02-01 09:40:42
阅读次数:
174
1、根据您企业邮箱的线路,选择合适的POP/SMTP/IMAP服务。 中国大陆 海外 POP3 pop-ent.21cn.com pop-enthk.21cn.com SMTP smtp-ent.21cn.com smtp-enthk.21cn.com IMAP imap-ent.21cn.com
分类:
其他好文 时间:
2016-02-01 09:41:25
阅读次数:
152
1、菜单栏中选择"工具—帐号管理"进行帐号添加;2、点击"新建",在弹出的对话框中填写邮箱地址,然后点击"下一步"。3、邮箱类型选择POP3和IMAP,填写邮箱密码后点击"下一步";4、在帐号建立完成页面,点击: "修改服务器"。5、选择POP3或IMAP服务后,填写POP3/IMAP、SMTP服务
分类:
其他好文 时间:
2016-02-01 09:38:25
阅读次数:
161
One way to serialize a binary tree is to use pre-oder traversal. When we encounter a non-null node, we record the node's value. If it is a null node,
分类:
其他好文 时间:
2016-02-01 09:39:10
阅读次数:
174
The structure of Segment Tree is a binary tree which each node has two attributes start and end denote an segment / interval. start and end are both i
分类:
其他好文 时间:
2016-02-01 09:39:40
阅读次数:
172
Heka 的参数配置跟Elasticsearch的参数没有关系,Heka只负责按照配置发送数据,所以索引的优化主要在 Elaticsearch端来完成。 下面是Elasticsearch的一些相关概念和知识点: 一些概念 在Elasticsearch中,文档归属于一种类型(type),而这些类型存在...
分类:
其他好文 时间:
2016-02-01 09:37:58
阅读次数:
298
一直对image crop很困惑,总算是看到了一篇描述较为简洁的说明:图像crop就是指从图像中移除不需要的信息,只保留需要的部分
分类:
其他好文 时间:
2016-02-01 09:38:21
阅读次数:
224
sorting 应该是最容易被考到的东西,自己老是学了背,背了忘。为了方便复习,这里进行总结 1. Bubble Sort 定义:每两个两个比较,每扫完一次,当前扫过的最大值放在了末尾。 for i = (n-1) to 1 for j = 0 to i-1 if(A[j] > A[j+1]) sw
分类:
其他好文 时间:
2016-02-01 09:36:50
阅读次数:
242
Given a matrix of m x n elements (m rows, n columns), return all elements of the matrix in ZigZag-order. Have you met this question in a real intervie
分类:
其他好文 时间:
2016-02-01 09:37:05
阅读次数:
111
Regular Expression Character Classes define a group of characters we can use in conjunction with quantifiers. var str = `cat bat mat Hat 0at ?at`; var
分类:
其他好文 时间:
2016-02-01 09:38:24
阅读次数:
133
A题:偶数直接加进去,奇数排序后去掉最小的即可。 /* ID: NotPassedCET4 PROG: #341 LANG: C++ */ #include<bits/stdc++.h> #define REP(i,a,b) for(int i=a;i<=b;i++) #define MS0(a)
分类:
其他好文 时间:
2016-02-01 09:37:44
阅读次数:
230
I got lost totally - it is a whole range of numbers! Actually, we can check each number within the range and pick it greedily. https://leetcode.com/di
分类:
其他好文 时间:
2016-02-01 09:37:37
阅读次数:
155
前言 将代码拆分了一下, 如果处理更多的消息也不怕看的眼花 SDK编程就是对各种Windows消息的处理 实验工程 [cpp] view plaincopy /// @file exam_1.cpp /// @brief 查阅本地MSDN, 手工写SDK程序 #include "common.h"
分类:
其他好文 时间:
2016-02-01 09:38:22
阅读次数:
375
Regular Expression Quantifiers allow us to identify a repeating sequence of characters of minimum and maximum lengths. In this lesson we'll use Regula
分类:
其他好文 时间:
2016-02-01 09:36:15
阅读次数:
216