Tagged Questions
The database-partitioning tag has no wiki summary.
7
votes
8answers
461 views
Mysql improve SELECT speed
I'm currently trying to improve the speed of SELECTS for a MySQL table and would appreciate any suggestions on ways to improve it.
We have over 300 million records in the table and the table has the ...
6
votes
3answers
229 views
Is there any way to make Hibernate use literal values rather than bind variables?
In Oracle I have a partitioned table. The partitions are of different sizes and have different data distribution.
I would like to have hibernate issue SQL statements that includes a literal value ...
5
votes
6answers
515 views
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
1answer
90 views
One large table partitioned and then subpartitioned or several smaller partitioned tables?
I currently have several audit tables that audit specific tables data.
e.g. ATAB_AUDIT, BTAB_AUDIT and CTAB_AUDIT auditing inserts, updates and deletes from ATAB, BTAB and CTAB respectively.
These ...
4
votes
5answers
137 views
SQL Server: A Grouping question that's annoying me
I've been working with SQL Server for the better part of a decade, and this grouping (or partitioning, or ranking...I'm not sure what the answer is!) one has me stumped. Feels like it should be an ...
3
votes
1answer
114 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
3answers
837 views
Drop oldest partition automatically in oracle 11G
I have a requirement to drop partition from an interval partitioned table, if the partition is older than three months.
Is there a oracle utility/function to do this? Or if not, how to implement ...
3
votes
5answers
510 views
Partition by Date and PK
I am designing a new laboratory database.
My primary data tables will have at least id (PK NUMBER) and created_on (DATE). Also, for any two entries, the entry with a higher id will have a later ...
2
votes
2answers
103 views
PostgreSQL date query performance problems
I have around 5 million rows in a postgres table. I'd like to know how many rows match start_time >= NOW(), but despite having an index on start_time the query is extremely slow (in the order of ...
2
votes
0answers
31 views
Estimate space left in Oracle [migrated]
I have a large Oracle table that need to be re-partition. I was wonder there is a way to know that I have enough space to create a copy of this table with new partition and swap the new one with the ...
2
votes
1answer
52 views
Choosing the right partitioning rule
I am setting up a new PostgreSQL 9 database that will contains millions (or maybe billions) of rows. So I decided to partition data using PostgreSQL inheritance.
I created a master table like this ...
2
votes
3answers
59 views
Create clustered index and/or partitioning on non-unique column?
I have a table containing log entries for a single week for about a thousand web servers. Each server writes about 60,000 entries per day to the table, so there are 420,000 entries per week for each ...
2
votes
3answers
124 views
Convert to a Partitioned Table
I have the following table structure with live data in it:
CREATE TABLE IF NOT EXISTS `userstatistics` (
`user_id` int(10) unsigned NOT NULL,
`number_logons` int(7) unsigned NOT NULL DEFAULT ...
2
votes
1answer
192 views
how to drop oracle partition with partition name as generated parameter
i have to drop partitions which are older than 364 days.
Partitions are named as "log_20110101", so partitions which are older than
today will have to be
CONCAT('log_',TO_CHAR(SYSDATE ...
2
votes
1answer
86 views
MySQL Partition usage stats
I applied partitioning to my tables today, and would now like to see stats for each partition (how many rows per partition).
Now, I partitioned it by date, so it's quite easy to get it via "SELECT ...
2
votes
4answers
610 views
single table vs multiple table for millions of records
Here's the scenario, the old database has this kind of design
dbo.Table1998
dbo.Table1999
dbo.Table2000
dbo.table2001
...
dbo.table2011
and i merged all the data from 1998 to 2011 in this table ...
2
votes
4answers
494 views
Too many columns to index - use mySQL Partitions?
We have an application with a table with 20+ columns that are all searchable. Building indexes for all these columns would make write queries very slow; and any really useful index would often have to ...
2
votes
1answer
233 views
Select query on a partitioned table
I have partitioned a table and it has been partitioned according to an account id. ie also rows that have accountid =1 will be in A partition and all rows that have accountid = 2 will be in B ...
2
votes
2answers
123 views
mysql partitioning
just want to verify that database partition is implemented only at the database level, when we query a partitioned table, we still do our normal query, nothing special with our queries, the ...
2
votes
3answers
95 views
Is it OK to re-create many SQL connections (SQL 2008)
When performing many inserts into a database I would usually have code like this:
using (var connection = new SqlConnection(connStr))
{
connection.Open();
foreach (var item in items)
{
var ...
2
votes
3answers
64 views
What should I keep in mind if I wish to merge many DBs into one DB?
I am working with a half dozen DBs. The DBs all have the same schemas, the same SPs, etc. Speaking to the person who originally designed the DBs, a big part of the motivation for using many DBs was ...
2
votes
2answers
774 views
Partitioning a database table in MySQL
I am writing a data warehouse, using MySQL as the back-end. I need to partition a table based on two integer IDs and a name string.
A more concrete example would be to assume that I am storing data ...
2
votes
1answer
424 views
MySql Partitioning
I'm trying to create partitions in one big table, but I'm getting this error:
1505 - Partition management on a not partitioned table is not possible
There is any command to convert the table? Or do ...
2
votes
0answers
476 views
How to partition client sensitive data using Microsoft Sync Framework (v2 CTP 2)?
Our central database is to be synchronized in a hub & spoke fashion.
We need to be able to partition the data in a way that client data is replicated locally only to that client.
Has anyone ...
1
vote
0answers
30 views
in postgres, can one optimize a table across partitions? [migrated]
in a database with many companies, segregating them using schema and search_path
almost all access comes at the company level, that is, limited to a single schema. some data-warehouse and accounting ...
1
vote
1answer
22 views
SQL Server Partitioning - Unique Index Error
I have a table that is partitioned by TRANSACTION_DATE_TIME.
Table has a column: ID.
I want to create a unique index for ID on partition scheme as:
CREATE UNIQUE NONCLUSTERED INDEX ...
1
vote
2answers
69 views
Set LONG data type using a Prepared Statement
My situation is that I need to create DB partitions on the fly at certain times. I'm using a Statement like the following:
alter table table_name split partition default_partition values (' +
id + ') ...
1
vote
1answer
48 views
Unioning Pseudo-partitioned tables into a single view
Lets say we have 5 tables
Fact_2011
Fact_2010
Fact_2009
Fact_2008
Fact_2007
each of which stores only transactions for the year indicated by the extension of the table's name.
We then create a ...
1
vote
1answer
35 views
Mysql Table Partioning
I am trying to create partition but couldn't succeeded.
Here is my table structure
CREATE TABLE `bb2`.`new_table` (
`id` INT NOT NULL AUTO_INCREMENT ,
`dt` DATE NOt NULL ,
PRIMARY KEY ...
1
vote
2answers
126 views
Mysql partitioning and joins
Sorry if this is a stupid question but new to this so need some help to understand a couple of things. Im currently upgrading mysql to 5.1 so I can use partitions in mysql. My question is if I ...
1
vote
1answer
79 views
In mysql can I have a composite primary key composed of an auto increment and another field? Also, please critique my “mysql partitioning” logic
I am experimenting with mysql partitioning ( splitting the table up to help it scale better ), and I am having a problem with the keys on the table. First, I am using a python's threaded comments ...
1
vote
1answer
205 views
Creating a partitioned view of detail tables when the CHECK is on the header tables
I've been reading documentation and looking at FAQs and haven't found an answer for this one which probably means it can't be done. My actual situation is a little more complex, but I'll try to ...
1
vote
1answer
94 views
database partioning explanation
I just read about database partitioning and still have some confusion about it.
So anybody please give me some explanations about what were changed in term of disk storage(like data file, index file, ...
1
vote
1answer
204 views
Design recommendations for a history/audit table
I need to keep track of many items and their states throughout time.
Example
ItemId Location DateTime State
1 Mall A 2010-02-03 07:00 on_sale
1 Mall A 2010-02-20 08:22 ...
1
vote
0answers
308 views
mysql database automatic partitioning [closed]
Possible Duplicate:
mysql database automatic partitioning
This is an exact duplicate of the question here. Unfortunately that question was only answered by people posting links to sites ...
1
vote
1answer
870 views
How to partition a MySQL table based on char column?
Is it possible to partition based on char column?
After reviewing the MySQL 5.1 documentation it appears that only integer types can be used.
Is this correct? Or can I use some function to ...
1
vote
2answers
433 views
How to scale out by evolving from database partitions to sharding?
Say I have a MySQL table:
CREATE TABLE tweets (
tweet_id INT NOT NULL AUTO_INCREMENT,
author_id INT NOT NULL,
text CHAR(140) NOT NULL,
PRIMARY KEY (tweet_id)
)
PARTITION BY HASH(tweet_id)
PARTITIONS ...
1
vote
2answers
734 views
Mysql partitioning: Partitions outside of date range is included
I have just tried to configure partitions based on date, but it seems that mysql still includes a partition with no relevant data. It will use the relevant
partition but also include the oldest for ...
1
vote
1answer
1k views
PostgreSQL: Auto-partition a table
I have a huge database which holds pairs of numbers (A,B), each ranging from 0 to 10,000 and stored as floats.
e.g.,
(1, 9984.4), (2143.44, 124.243), (0.55, 0), ...
Since the PostgreSQL table ...
1
vote
1answer
300 views
Postgresql: split database between different machines
I want to partition a very large PostgreSQL 8.3 database. Quoting the manual,
Partitioning can provide several
benefits:
...
Seldom-used data can be
migrated to cheaper and slower ...
1
vote
2answers
93 views
Where does the law of diminishing returns come into play in regards to table partitions in SQL Server 2005?
I'm wondering if anyone out there has run into a realistic max number of table partitions in sql server 2005. I know that the docs state that there is a limit of 1000 partitions per table, but I have ...
0
votes
2answers
42 views
Will partitioning fix my deadlock issues
I have an application that updates a table in my SQL Server 2005 database. The app has one thread for each of my regions and these threads run concurrently.
On rare occasions, I run into a SQL ...
0
votes
2answers
75 views
Netezza LAST_VALUE filter
Am trying to create a NETEZZA table which has only the most recent records for a particular key - eg imagine a table (MYTABLE) as follows:
Col1 Col2 TIMESTAMP
xxxx xxxx 13:45
xxxx xxxx 13:46
xxxx ...
0
votes
0answers
135 views
Does partitioning work with SQL Server 2005 Standard edition SP2
I am using SQL Server 2005 Standard edition with SP2 in test environment. My local SQL Server is a Developer edition.
I was able to partition the table on my local computer. I know that the SQL ...
0
votes
1answer
98 views
Using Spider for mysql
I'm looking for solution to shard my data in mysql w/o changing application code and this project shows up pretty deep in google search result.
While there's not much document available about this, ...
0
votes
1answer
26 views
Move Table off Partition
I have a very large table (800GB) which has a DATETIME field which is part of a partition schema. This field is named tran_date. The problem I'm having is that the indexes are not properly aligned ...
0
votes
2answers
90 views
Is relational database able to leverage the way of consistent hashing to do the partition table?
Assume we have a user table to be partitioned by user id as integer 1,2,3...n . Can I use the way of consistent hashing used to partition the table?
The benefit would be if the number of ...
0
votes
1answer
113 views
Partition exchange loading for specific subpartitions
Looking at an archive strategy - where we have to archive a specific dataset.
Rather than a insert/delete routine - I was thinking of using partition exchange.
The to-be archived table is interval ...
0
votes
0answers
61 views
MySQL Partitions Optimisation (with prunining)
we have a partitioned table with 15 days worth of data at about 200,000,000 rows. (Day 16 is dropped & day 0 created each morning.)
The table is often exceedingly fast but sometimes it can be ...