Tagged Questions

0
votes
1answer
28 views

MySql Partitioning

Hi Guys, 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 …
0
votes
2answers
118 views

Partitioned tables in SQL Server 2005 — looking for real-world caveats

Hi all, I'm currently benchmarking partitioned tables with SQL Server 2005 to compare them to using two tables (a "live" table and an "archive" table) for a processing queue. The partitioning's being …
0
votes
2answers
1k views

In Oracle, why do public synonyms become invalid when a table partition is dropped.

Hi everyone, can someone tell me why the following behavior occurs (Oracle 10.2): SQL> create table part_test ( i int primary key, d date ) partition by range (d) (partition …
2
votes
3answers
183 views

What are the benefits of using partitions with the Enterprise edition of SQL 2005

I'm comparing between two techniques to create partitioned tables in SQL 2005. Use partitioned views with a standard version of SQL 2005 (described here) Use the built in partition in the Enterprise …
0
votes
3answers
170 views

Can I partition a DB table after it is already created on SQL 2005

Most examples dealing with table partitions, create the table on the partition scheme. For example: create table SomeTable ( Id int not null , DueDate DateTime not null ) on …
4
votes
5answers
312 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 …
0
votes
1answer
779 views

SQL split/merge of table partitions: What is the best approach to implement?

Microsoft in its MSDN entry about altering SQL 2005 partitions, listed a few possible approaches: Create a new partitioned table with the desired partition function, and then insert the data from …
0
votes
1answer
135 views

How to get partition ranges in SQL 2005

I have a partitioned table in SQL Enterprise 2005. I need to query the PARTITION FUNCTION to find it's partition ranges. What SQL query will give me those values?