Partitioning is a performance strategy whereby you divide possibly very large groups of data into some number of smaller groups of data.

learn more… | top users | synonyms

0
votes
0answers
4 views

MySQL Partitioning Unique Key

I am following this article: http://www.chrismoos.com/2010/01/31/mysql-partitioning-tables-with-millions-of-rows But when I run my query to partition my product table (that contains 500,000 rows) I ...
-1
votes
0answers
16 views

Windows 7 doesn't loads after Solaris attempted install [migrated]

I got two hard disks, one of 40gb and another one with 1tb. The 40gb has windows 7 installed on it, taking all the space of this hdd, and in the 1tb disk i got few logic and extended partitions; in ...
-1
votes
0answers
23 views

Mountain Lion won't install on partition [closed]

So my boss asked me to install mountain lion onto a mac mini server. On it was an install of lion that would hang while loading and an install of windows 7. After using the disk utility tool to delete ...
0
votes
2answers
46 views

MongoDB fast deletion best approach

My application currently use MySQL. In order to support very fast deletion, I organize my data in partitions, according to timestamp. Then when data becomes obsolete, I just drop the whole partition. ...
0
votes
0answers
8 views

Tradeoff about using primary key for MySQL 5.5 partitioning

Following query #1 works well: CREATE TABLE `ex1` ( `id` INT(10) NOT NULL, `written_time` TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00', `subject` VARCHAR(40) NOT NULL, `writer` ...
1
vote
0answers
31 views

“Partition by” functionality in Python

Is there a library to achieve the functionality of 'partition by' analytic clause provided in SQL(E.x.: Oracle) for use in Python? We are dealing with huge amount of data and though we can achieve ...
1
vote
2answers
67 views

Recommend a NoSQL database to replace this MySQL database containing large objects and many attributes

I'm looking for an alternative database for MySQL (Engine = MyISAM). My Java application stores large objects with 250 - 300 attributes each. There are about 500 millions objects on a single MySQL ...
0
votes
1answer
27 views

tsql query not working in mysql

I currently have the following script working fine in TSQL: select v.ratings as [Rating], COUNT(*) as 'total', CAST(count(*)*100.0/tot as decimal(12,1)) as 'percent' from (select (case when ...
0
votes
0answers
16 views

MySQL poor order by performance on partitioned table [migrated]

I have to store some sequence numbered data in MySQL. I have about 300,000 data items per day for about a 10 year span. Let's say the table structure is just sequence number (a big int) and data (a ...
0
votes
0answers
27 views

delete multiple split partitions on usb-stick [closed]

i got this 8GB USB-Stick and through writing an image on the stick for linux-testings (using Win32DiskImager) i had problems using this USB-stick on my computers and put it back to my windows-mashine ...
0
votes
1answer
37 views

Mathematica: part assignment

I'm trying to implement an algorithm to build a decision tree from a dataset. I wrote a function to calculate the information gain between a subset and a particular partition, then I try all the ...
1
vote
1answer
49 views

How can I ensure that a partition has representative observations from each level of a factor?

I wrote a small function to partition my dataset into training and testing sets. However, I am running into trouble when dealing with factor variables. In the model validation phase of my code, I ...
0
votes
0answers
13 views

Dual boot Redhat and Ubuntu

I have had my new pc with "Red hat v6" installed. The thing that I would like to have is dual-boot installation with "Ubuntu 12.04". I have learned that each of two uses different constraints in their ...
0
votes
0answers
21 views

Alter A Partitioned Table Column DataType

My existing database is on SQL Server 2005 - Version 9.0.5000. Migrating to SQL Server 2008 R2 We have a huge table of 500+ million rows of data. A column PriceListDate is defined as varchar(8) and ...
0
votes
0answers
24 views

how to implement solr index partitioning

I want solr to create indexes based on a specific field. For e.g. I have a field in schema.xml, createDate (which might be of value 2012/2013/etc). Now while indexing if the value of that specific ...
0
votes
0answers
35 views

Partition section of qsort

So im trying to partition this array of integers for a qsort function, im having difficulty trying to loop through the array, im not sure what to put for the while loop to keep the process going, I ...
0
votes
1answer
23 views

Looking for data in a table through colums with categories/state values

Say we have a fruits that that is having a high number of reads but also inserts though almost not update nor delete. We have 2 columns that stores values that have a small number of options. Lets ...
1
vote
0answers
26 views

How to decide varchar partition RNAGE in MySQL 5.5?

Backgroud I have a very big table, the table is just like this CREATE TABLE tb_doc ( did mediumint(8) unsigned NOT NULL auto_increment, title varchar(80) NOT NULL default '', ..., PRIMARY KEY ...
0
votes
0answers
85 views

SOLVED Create flexible mtd partitions

I would like to populate partitions depend on its content. During system boot I would like to check if the flash area contain any data. If true - make it visible read-only, or rewritable. I would ...
0
votes
0answers
32 views

tools/apis for partitioning large graphs

I am looking for a graph partitioning tool/api. It should be able to handle large graphs of around 50 million vertices and 80 million edges. It should do vertex partitioning and be able to group ...
-1
votes
0answers
19 views

How to restore changes made with disks program ubuntu live cd [closed]

Ok guys, really need your help on this one. Here is what happen: I tried to install ubuntu on my computer (never did it before, but I thoguht to give it a try). I've had some problems with it, the ...
3
votes
2answers
78 views

PostgreSQL partition query by date optimization

We have a table that has approximately one billion records per month. Considering 18 months of history we are talking about 18 billion records. This table is partitioned weekly by date (so we have ...
0
votes
0answers
38 views

can't use partition compare in drop partition

I create a table in Hive like this create table test (one string , two string) partitioned by (dt string); then I load two files into this table ,and seperated to two partitions dt="1" and dt="2" ...
0
votes
1answer
19 views

Why is Ubuntu partitioning my flash drive? [closed]

A couple months ago I got into Ubuntu Linux. This is a recurring problem for me, so I need help. I installed Ubuntu 12.04 LTS on my flash drive so I could boot from it. My flash drive is 16GB. After a ...
0
votes
1answer
64 views

Postgres partition by week

I can imagine table partition by a date (in particular for logs) is something widely used, but I am not able to find a good answer to my problem. I want to create a table partition by week (the ...
0
votes
0answers
16 views

Need Best Approaches for Horizantal Table Partition

I would like to do Table Partition on table which we are using from last 8 years.Looking for the Best Approaches for Table Partition a .Without losing the existing data b. Without losing ...
0
votes
1answer
46 views

Table Partition Function - 2008

I have created a new database with a secondary file as fallows: CREATE DATABASE XYZ_Dimensions_DW ON PRIMARY (NAME='DBForPartitioning_1', FILENAME= 'E:\Program Files\Microsoft SQL ...
0
votes
0answers
28 views

Joining Back to a Partitioned MySQL table multiple times

I have a very large innodb table that consists of roughly 300 million records having 126 columns, and I'm trying to determine if partitioning would be the best direction to go. Our application uses ...
0
votes
1answer
62 views

How to deal with “too many columns” in mysql

I have 1800 columns and approximately 4 million rows in a tab delimited file. I am trying to load it as mysql relation. Mysql is giving me ERROR 1117 (HY0000): Too many columns. I checked on web and ...
1
vote
2answers
41 views

Use Partition By to return the MAX record from Join SQL

I am trying to use and learn Partition By to return the max step number of a one-to-many relationship. Basically, I have one companyID, which is unique in company table. The company has certain ...
0
votes
0answers
32 views

SPSS modeler neural network

Hi I have a dataset that I want to analyze using neural network. there's 7 dependent variables and 27 independent variables but I'm not sure how to use SPSS Modeler. The stream i have right now ...
0
votes
1answer
18 views

preserving data for timespan column while partitioning table into multiple disks

I need to partition a table into multiple files over multiple disks. Below is the create table. The challenge we are having is that, while partitioning this huge table, ts timestamp data will be lost ...
1
vote
0answers
15 views

Logical Volume Partition

I have created logical volumes, using already existing /home /var directories...the process for creating the logical volumes was no issue, however after I create the logical volumes, all of the ...
0
votes
1answer
78 views

How to partition a hard drive using C#

I am familiar with the WMI method of formatting a partition but what if I wanted to create a partition programmatically? Is this possible and if so, can someone point me in the right direction because ...
0
votes
0answers
13 views

MySQL partitioning considerations

I have a table that will eventually have about 1.4 billion records in it, 11 columns, 3 primary keys. I've populated about the first 1/3 of the table and the query times are already quite slow. I've ...
1
vote
1answer
45 views

Retrieving entries from a partition in Hazelcast

Is it possible to retrieve the entries from a Partition when the Partition-id is given? For example : If I enter the Partition-id as 3 , Can I get the entries in that particular partition only? ...
1
vote
1answer
22 views

MySQL Partition Pruning PARTITION BY LIST

I have created a MySQL table which is partitioned by the months of a date column like this: CREATE TABLE `my_big_table` ( `some_id` varchar(60) COLLATE utf8_unicode_ci NOT NULL, `some_value` ...
0
votes
1answer
22 views

sort and partition using random fields not just the first k fields

I'm using hadoop streaming to do some job, and I encounter a problem, here it is. The input file to mapper has, say 3 fields, in each line. I know that mapper's output will be sorted and partitioned ...
0
votes
0answers
31 views

How do i move all partitions of a partition scheme to different filegroup

Im using mssql 2008. I have a table created with a parition scheme TEST_PS on filegroup TEST (partition is made on date column). I want to move my partitions to new filegroup TEST1. I can do it by ...
1
vote
0answers
71 views

How is Partitioning done in Hazelcast

I am using Hazelcast v2.5. I have a few doubts related to partitioning in a cluster. How are the partitions identified ? When a m.get request is made how does Hazelcast identify in which partition ...
0
votes
1answer
41 views

Efficient querying of partition master PostgreSQL table

I'm talking about this feature. I have master table: logstore=# \d history_log Table "public.history_log" Column | Type | ...
0
votes
1answer
59 views

Failure in using alter table to add partition

ref_I have a table having structure as below: CREATE TABLE `child_table` ( `id` int(11) NOT NULL AUTO_INCREMENT, `value` int, `ref_id` int, PRIMARY KEY (`id`), KEY `ref_id` ...
0
votes
0answers
42 views

How to use php readfile() across partitions?

I've been struggling to get PHP readfile() to work properly. After drilling down all options, it turns out that I can not get this to work when I am trying to open a file that is located on another ...
1
vote
1answer
68 views

How to partition MySQL table with two indexes

I have a table game_log with fields id, game_id and several varchar fields. id is primary key and game_id is non-unique key. There're two frequent queries: SELECT * FROM game_log ORDER BY id DESC ...
0
votes
1answer
57 views

MySQL Partitioning. The partition function return wrong type

What incorrect in this? Thanks! CREATE TABLE `tbl_user_geolocation` ( `id` INT(11) NOT NULL AUTO_INCREMENT COMMENT 'Идентификатор', `user_id` VARCHAR(100) NOT NULL COMMENT 'ID ...
0
votes
1answer
65 views

HOW TO Create new databases or database instances on the application for each user?

As you know when you have an application like a blog, users can post articles, galleries, create static pages, editors edit them... You have tables like: Articles Authors Editors Galleries Static ...
1
vote
1answer
102 views

JAVA - Dividing int array into n sets with minimum difference

So I am trying to figure out an algorithm for a program that would use recursion for taking an int array of x numbers and dividing it into n sets. These numbers can be both positive and negative. The ...
-1
votes
1answer
80 views

Second hard-drive on Linux Ubuntu /dev/hdc1 formatting and mounting [closed]

i just added a new S-ATA 2TB to my linux machine. Now found as /dev/hdc1 How should it be formatted when i dont need any more booting partions or smaller ons? Afterwards i want the data from ...
-5
votes
2answers
67 views

Install Ubuntu12.10 alongside Win7 on a certain partition [closed]

I have Win7 installed on my PC, with three Hard Disk partition (C,D,E). On C and D I have windows stuff(C -windows, D- documents, movies etc). On E partition I want to install Ubuntu 12.10. On Ubuntu ...
-3
votes
2answers
110 views

Error when implementing Quick Sort : 'Partition': identifier not found [closed]

Im trying to write a function to implement quick sort for an assignment. We have to implement it the same way she did in class with her pseudocode, or else we don't get credit. Im getting an error ...

1 2 3 4 5 12