码迷,mamicode.com
首页 >  
搜索关键字:partition by    ( 2821个结果
ORA-01688错误解决
性能测试过程中发现导入话单数据时报ORA-01688错误,话单数据导入失败。 ORA-01688: unable to extend table VMSREPORT.VMS_DEPOSIT_MSG_SDR partition VDMS_PART_0825 by 8192 in tablespace VMS_REPORT  查询下ora-01688的错误说明: oracle@n...
分类:其他好文   时间:2015-03-11 17:18:01    阅读次数:183
[LeetCode]Partition List
Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x.You should preserve the o...
分类:其他好文   时间:2015-03-11 16:21:43    阅读次数:115
sqlserver2005使用row_number() over分页的实现方法
sqlserver2005使用row_number() over分页的实现方法sqlserver2005使用row_number() over分页的实现方法,需要的朋友可以参考下。语法:ROW_NUMBER() OVER(PARTITION BY COLUMN ORDER BY COLUMN) 例子...
分类:数据库   时间:2015-03-10 22:48:39    阅读次数:255
EASEUS Partition Manager 最好的硬盘分区工具
可以删除或者格式化分区,还可以重新设置大小以及移动你的分区。如果你没有了任何自由的磁盘空间,你可以减小现有分区的尺寸,然后使用未分配的磁盘空间创建新的或者扩大分区以便更好地管理你的数据。此外,你可以浏览磁盘和分区的属性,设置一个活动分区,改变盘符等。EASEUS Partition Manager 可以从Windows 内部运行,并且还包括一个用于创建可启动光盘的选项,允许你在 Windows...
分类:其他好文   时间:2015-03-10 19:27:32    阅读次数:145
Kafka深度解析
背景介绍 Kafka简介   Kafka是一种分布式的,基于发布/订阅的消息系统。主要设计目标如下: 以时间复杂度为O(1)的方式提供消息持久化能力,即使对TB级以上数据也能保证常数时间的访问性能高吞吐率。即使在非常廉价的商用机器上也能做到单机支持每秒100K条消息的传输支持Kafka Server间的消息分区,及分布式消费,同时保证每个partition内的消息顺序传输同时支持离线数据...
分类:其他好文   时间:2015-03-10 17:19:03    阅读次数:197
CAP定理
from wikipedia CAP定理CAP定理(CAP theorem),又被称作布鲁尔定理(Brewer's theorem),它指出对于一个分布式计算系统来说,不可能同时满足以下三点:一致性(Consistency)可用性(Availability)容忍网络分区(Partition tole...
分类:其他好文   时间:2015-03-10 13:49:04    阅读次数:139
Interview Common Sample Codes
1. Quick Sort:int partition(int A[], int p, int r){ int x = A[r]; // Pivot element int i = p - 1; // Index of last element that not larger than pivo.....
分类:其他好文   时间:2015-03-09 10:47:36    阅读次数:119
[LeetCode] Partition List 划分链表
Given a linked list and a valuex, partition it such that all nodes less thanxcome before nodes greater than or equal tox.You should preserve the origi...
分类:其他好文   时间:2015-03-08 09:17:20    阅读次数:169
[转] mysql分区性能初探
本文转自:http://www.cnblogs.com/acpp/archive/2010/08/09/1795464.html一, 分区概念分区允许根据指定的规则,跨文件系统分配单个表的多个部分。表的不同部分在不同的位置被存储为单独的表。MySQL从5.1.3开始支持Partition。分区和手动...
分类:数据库   时间:2015-03-07 14:06:07    阅读次数:227
在Linux中划分partition 并格式化为文件系统
在Linux中划分partition 并格式化为文件系统...
分类:系统相关   时间:2015-03-06 15:53:52    阅读次数:159
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!