Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

29
votes
3answers
32k views

Oracle “Partition By” Keyword

Can someone please explain what the "partition by" keyword does and give a simple example of it in action, as well as why one would want to use it? I have a SQL query written by someone else and I'm ...
15
votes
2answers
394 views

Doctrine2 and MySQL Partitioning

Does anybody has experience of using partitioning feature in conjunction with the Doctrine2 library? The first problem is that Doctrine creates foreign keys for association columns, anybody knows how ...
14
votes
8answers
520 views

Is partitioning easier than sorting?

This is a question that's been lingering in my mind for some time ... Suppose I have a list of items and an equivalence relation on them, and comparing two items takes constant time. I want to return ...
14
votes
8answers
1k views

Algorithm for finding nearby points?

Given a set of several million points with x,y coordinates, what is the algorithm of choice for quickly finding the top 1000 nearest points from a location? "Quickly" here means about 100ms on a home ...
13
votes
6answers
1k views

LINQ Partition List into Lists of 8 members

How would one take a List (using LINQ) and break it into a List of Lists partitioning the original list on every 8th entry? I imagine something like this would involve Skip and/or Take, but I'm still ...
12
votes
3answers
312 views

which algorithm can do a stable in-place binary partition with only O(N) moves?

I'm trying to understand this paper: Stable minimum space partitioning in linear time. It seems that a critical part of the claim is that Algorithm B sorts stably a bit-array of size n in ...
11
votes
5answers
187 views

Need an algorithm to split a series of numbers

After a few busy nights my head isn't working so well, but this needs to be fixed yesterday, so I'm asking the more refreshed community of SO. I've got a series of numbers. For example: 1, 5, 7, ...
11
votes
3answers
393 views

Database - Designing an “Events” Table

After reading the tips from this great Nettuts+ article I've come up with a table schema that would separate highly volatile data from other tables subjected to heavy reads and at the same time lower ...
11
votes
7answers
5k views

What is the best way to partition large tables in SQL Server?

In a recent project the "lead" developer designed a database schema where "larger" tables would be split across two separate databases with a view on the main database which would union the two ...
10
votes
3answers
5k views

what is a good way to horizontal shard in postgresql

what is a good way to horizontal shard in postgresql 1. pgpool 2 2. gridsql which is a better way to use sharding also is it possible to paritition without changing client code It would be great ...
10
votes
9answers
7k views

MySQL Partitioning / Sharding / Splitting - which way to go?

We have an InnoDB database that is about 70 GB and we expect it to grow to several hundred GB in the next 2 to 3 years. About 60 % of the data belong to a single table. Currently the database is ...
8
votes
2answers
156 views

“Deinterlacing” a list in Scala

I have a list of bytes that represent raw samples read in from an audio interface. Depending on the use case and H/W, each sample can be anywhere from 1 to 4 bytes long, and the total number of ...
8
votes
3answers
304 views

How to design data storage for partitioned tagging system?

How to design data storage for huge tagging system (like digg or delicious)? There is already discussion about it, but it is about centralized database. Since the data is supposed to grow, we'll need ...
7
votes
1answer
143 views

Mysql, handlersocket and partitioning?

Is handlersocket plugin aware of possible partitioning on a table? I haven't find mentions on the documentations of this, I don't even know if partitioning is transparent to the handler socket or it's ...
7
votes
3answers
173 views

Can MySQL parallelize UNION subqueries (or anything at all)?

I use a partitioned table with a large amount of data. According to MySQL docs, it is on the ToDo list that: Queries involving aggregate functions such as SUM() and COUNT() can easily be ...
7
votes
1answer
179 views

Why use a bitwise AND here?

I was reading through the hadoop code and found this line in a partitioner. (key.hashCode() & Integer.MAX_VALUE) % numReduceTasks Why are they using the bitwise AND?
6
votes
8answers
306 views

Puzzle: Need an example of a “complicated” equivalence relation / partitioning that disallows sorting and/or hashing

From the question "Is partitioning easier than sorting?": Suppose I have a list of items and an equivalence relation on them, and comparing two items takes constant time. I want to return a ...
6
votes
10answers
722 views

history rows management in database

As in many databases, i am designing a database that should keep record of previous versions of the rows changed in each table. The standard solution to this problem is to keep a history table for ...
5
votes
2answers
195 views

How do I minimise the maximum aspect ratio of two subpolygons?

I'd like to cut a convex polygon into two with a given ratio of areas using a straight line, such that the larger aspect ratio of the two subpolygons is minimised. My approach at the moment involves ...
5
votes
2answers
507 views

Recursive-backtracking algorithm for solving the partitioning problem

Hey, i'm looking for some help to find an algorithm which divides an array of positive numbers into k-parts so that each part has the (approximately) the same sum ... let's say we have ...
5
votes
3answers
1k views

Table with 80 million records and adding an index takes more than 18 hours (or forever)! Now what?

A short recap of what happened. I am working with 71 million records (not much compared to billions of records processed by others). On a different thread, someone suggested that the current setup of ...
5
votes
6answers
515 views

What is table partitioning?

In which case we should use table partitioning?
5
votes
9answers
540 views

Do indexes suck in SQL?

Say I have a table with a large number of rows and one of the columns which I want to index can have one of 20 values. If I were to put an index on the column would it be large? If so, why? If I ...
5
votes
4answers
671 views

Does it makes sense to partition a dedicated server hard drive?

I am going to install Debian on our new dedicated server and I have a chance to set up hard drive partitions. The server has two 750GB drives configured as RAID 1. We are going to have 10 Postgresql ...
5
votes
8answers
5k views

Move rows between tables in SQL

I have 2 tables, an active table and an inactive table. I want to move rows from the active to the inactive table. My first thought was insert into inactive select * from active where ... delete from ...
4
votes
2answers
78 views

How to persist community information in a graph

I have some graph databases (friends networks, purchasing history, etc.) that I persist with Neo4j. I plan to analyze these with community detection algorithms such as Girvan Newman. These algorithms ...
4
votes
6answers
142 views

Extracting regions from a Scala Array

I don't really know how to describe what I'm doing, but this example should help: val vals = Array( (0, true), (1, true), (2,true), (3,true), ...
4
votes
1answer
158 views

partition of a list using dynamic programming

I have posted a bit here related to a project I have been trying to work on and I keep hitting design problems and have to design from scratch. So I'm wondering if I can post what I'm trying to do ...
4
votes
2answers
117 views

What is a good size (# of rows) to partition a table to really benefit?

I.E. if we have got a table with 4 million rows. Which has got a STATUS field that can assume the following value: TO_WORK, BLOCKED or WORKED_CORRECTLY. Would you partition on a field which will ...
4
votes
6answers
404 views

Clojure partition by filter

In Scala, the partition method splits a sequence into two separate sequences -- those for which the predicate is true and those for which it is false: scala> List(1, 5, 2, 4, 6, 3, 7, 9, 0, ...
4
votes
1answer
36 views

Partitioning requests in code among several servers

I have several forum servers (what they are is irrelevant) which stores posts from users and I want to be able to partition requests among these servers. I'm currently leaning towards partitioning ...
4
votes
2answers
407 views

Foreign keys vs partitioning

Since foreign keys are not supported by partitioned mySQL databases for the moment, I would like to hear some pro's and con's for a read-heavy application that will handle around 1-400 000 rows per ...
4
votes
3answers
2k views

Dynamic table partitioning in Oracle

I'm in the process of building a database storage for my app consisting on a single table with a huge data volume (hundreds of millions of records). I'm planning on having an index on the date field, ...
4
votes
3answers
220 views

What is better: to have many similar databases or one database with similar tables or one database with one table?

I need to work with several data samples, to say, N. The samples represent similar data but from different origins. For example, history of order in different shops. So the structure of all the ...
4
votes
1answer
568 views

PostgreSQL: UPDATE implies move across partitions

(Note: updated with adopted answer below.) For a PostgreSQL 8.1 (or later) partitioned table, how does one define an UPDATE trigger and procedure to "move" a record from one partition to the other, ...
4
votes
3answers
1k views

How to partition Mysql across MULTIPLE SERVERS?

I know that horizontal partitioning...you can create many tables. How can you do this with multiple servers? This will allow Mysql to scale. Create X tables on X servers? Does anyone care to ...
4
votes
1answer
1k views

Is a globally partitioned index better (faster) than a non-partitioned index?

I'm interested to find out if there is a performance benefit to partitioning a numeric column that is often the target of a query. Currently I have a materialized view that contains ~50 million ...
4
votes
4answers
934 views

how to restrict or filter database access according to application user attributes

I've thought about this too much now with no obviously correct solution. It might be a real wood-for-the-trees situation, so I need stackoverflow's help. I'm trying to enforce database filtering on ...
4
votes
5answers
572 views

looking for a good summary of SQL 2005 Partitioning

I'm looking at this as a baseline explanation of the SQL 2005 Enterprise partitioning. Is there a resource that goes deeper into fine points and considerations of this issue. Some more examples would ...
3
votes
1answer
27 views

How to detach a partition from a table and attach it to another in oracle?

I have a table with huge data( say millions of records, its just a case study though!) of 5 years, with a partition for each year. Now i would want to retain the last 2 years data, and transfer the ...
3
votes
1answer
166 views

Dynamic programming: Linear Partitioning. Please help grok

I'm struggling to understand the dynamic programming solution to linear partitioning problem. I am reading the The Algorithm Design Manual and the problem is described in section 8.5. I've read the ...
3
votes
3answers
125 views

Dropping a table partition avoiding the error ORA-00054

I need your opinion in this situation. I’ll try to explain the scenario. I have a Windows service that stores data in an Oracle database periodically. The table where this data is being stored is ...
3
votes
1answer
111 views

mysql partition not working

Ok, I have 2 million rows. Each has a billing date. i'm trying to partition this out by that date. I've made partitions. I've checked /var/lib/mysql and the files are there, all of an appropriate ...
3
votes
2answers
353 views

How does one azure table storage table with many partition keys compare to many tables with fewer partition keys?

I have a Windows Azure application in which all read queries of TableA are executed on single partitions for a range of rowkeys. The Partition Keys that facilitate this storage scheme are actually ...
3
votes
4answers
401 views

How many table partitions is too many in Postgres?

I'm partitioning a very large table that contains temporal data, and considering to what granularity I should make the partitions. The Postgres partition documentation claims that "large numbers of ...
3
votes
1answer
440 views

Trigger based partition creation

I have a list partitioned table on a foreign key. So if I want to insert a new entity the missing partition throws an exception on insert. I thought I am a cool duke and use a trigger to create new ...
3
votes
1answer
238 views

digraph partitioning to subgraphs

Given a DAG with |V| = n and has s sources we have to present subgraphs such that each subgraph has approximately k1=√|s| sources and approximately k2=√|n| nodes. If we define the height of the DAG ...
3
votes
1answer
786 views

Mysql Partition : how to deal with month and hash

I have a specific question on mysql sub-partitioning using hash on a date/datetime column. I have partitioned by site_id, and I want now to subpartitioned by month (1 to 12), so the partitions number ...
3
votes
1answer
351 views

Oracle Partition Pruning with bind variables

I have a large (150m+ row) table, which is partitioned into quarters using a DATE partition key. When I query the table using something like... SELECT * FROM LARGE_TABLE WHERE THE_PARTITION_DATE ...
3
votes
1answer
271 views

Optimizing a Partition Function

Here is the code, in python: # function for pentagonal numbers def pent (n): return int((0.5*n)*((3*n)-1)) # function for generalized pentagonal numbers def gen_pent (n): return ...

1 2 3 4 5 7