安装数据的时候报错:
查看操作系统参数设置:
[root@single1 ~]# vi /etc/sysctl.conf
# Kernel sysctl configuration file for Red Hat Linux
#
# For binary values, 0 is disabled, 1 is enabled. See sysctl(8) and
# sysctl.c...
分类:
数据库 时间:
2016-01-15 13:00:23
阅读次数:
190
用队列维护一下即可#include#include#include#includeusing namespace std;const int maxn=500000+10;int n,k;int a[maxn];int tot[1000000+10];struct Node{ int id; ...
分类:
其他好文 时间:
2016-01-14 15:48:35
阅读次数:
139
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 in...
分类:
其他好文 时间:
2016-01-12 06:37:35
阅读次数:
328
这里使用的是mysql Ver 14.14 Distrib 5.6.19, for Linux (i686) using EditLine wrapper一、mysql目录文件ibdata1:系统表空间 包含数据字典、回滚日志/undolog等(insert buffer segment/doubl...
分类:
数据库 时间:
2016-01-10 22:34:14
阅读次数:
357
# 常见汇编代码 #1. 编写程序:比较AX,BX,CX中带符号数的大小,将最大的数放在AX中 code segment assume cs:code mov ax,32 mov bx,74 mov cx,23 sort: cmp ax,bx jge X ;如果ax大于等于bx就跟cx比较 ...
分类:
其他好文 时间:
2016-01-08 00:19:54
阅读次数:
138
这道题也有点新意,就是须要记录最小值段和最大值段,然后成段更新这个段,而不用没点去更新,达到提快速度的目的。本题过的人非常少,由于大部分都超时了,我严格依照线段树的方法去写。一開始竟然也超时。然后修补了两个地方就过了,详细改动的地方请參看程序。知道最大值段和最小值段,然后修补一下就能过了。不是特别难...
分类:
其他好文 时间:
2016-01-07 16:06:19
阅读次数:
137
欸 这不是做过的原题吗qwq顺手码一码欸怎么各种不对啊哦以前基本没用过get_segment基本都是split的嗯 就是这个东西 要开个tmp保存一下结果不然会出奇奇怪股的事情 1 #include 2 #include 3 #include 4 #include 5 #include ...
分类:
Web程序 时间:
2016-01-07 13:27:48
阅读次数:
232
原本在9i上可以顺利完成的CTAS脚本,迁移到10g后运行总是报“ORA-1652: unable to extend temp segment by 128 in tablespace TS_HQY1_TEMP “无法扩展临时表空间的错误。应用人员表示该脚本涉及的数据量在迁移前后变化不大,而且令人...
分类:
其他好文 时间:
2016-01-07 13:17:31
阅读次数:
181
本文章由vector03原创, 转载请注明出处.邮箱地址: mmzsmm@163.com, 欢迎来信讨论.3.4 sys_allocsys_alloc是dlmalloc中向系统获取内存的主要接口.因为涉及到mmap, top-most segment, top chunk的交互,相对要更复杂. 我们...
分类:
其他好文 时间:
2016-01-05 18:55:41
阅读次数:
197
linux 安装jdk1.6后,运行java -version,没有出现相关的版本信息,而是出现了以下错误:dl failure on line 685Error: failed /usr/local/jdk1.6.0_10/jre/lib/i386/client/libjvm.so, becaus...
分类:
编程语言 时间:
2016-01-03 00:26:37
阅读次数:
185