Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
579 views

Obtain a list of partitions on Windows

Goal I'm porting a filesystem to Windows, and am writing a more Windows-like interface for the mounter executable. Part of this process is letting the user locate a partition and pick a drive letter. ...
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, ...
3
votes
4answers
228 views

MYSQL: need help for rapidly growing table and decreasing speed (4mio rows)

I'm facing some issues with a rapidly growing table at increasing speed (currently 4mio rows, 300k inserts a day). I hope I can get some ideas and advices here to improve my setup and squeeze the last ...
2
votes
2answers
195 views

How can I tell *IF* AND *WHAT* partitions are being accessed - sql server 2008 db engine

Setup Cost of Threshold for Parallelism : 5 Max Degree of Parallelism : 4 Number of Processors : 8 SQL Server 2008 10.0.2.2757 I have a query with many joins, many records. The design is a star. ( ...
1
vote
1answer
33 views

cassandra supercolumn data from one partition or multiple?

Assume I have a supercolumn family. Also assume I have multiple partitions running on different machine instances. My supercolumn family data looks like the following (for one row) RowKey: ...
1
vote
1answer
50 views

Geting list of all partitons and their names on startup volume

Using Cocoa, how can I get list of all partitions with their mounted paths and volume names on startup disk? Thanks.
1
vote
1answer
82 views

Hive Dynamic Partition table issue with altering partition

I Have table with dynamic partition "campaign" and static partitions year and month(that means I am giving there value while inserting/creating partitions). 'ABC' Partition by (year='2011', ...
1
vote
0answers
78 views

Component Services - Enable partitions - Disabled

We just purchased new HP Z200 machines that came with Windows 7 Enterprise 64-bit on them and we have upgraded them to Service Pack 1. When we go into Component Services and expand computers and ...
1
vote
3answers
230 views

Partition Hive table by existing field?

Can I partition a Hive table upon insert by an existing field? I have a 10 GB file with a date field and an hour of day field. Can I load this file into a table, then insert-overwrite into another ...
1
vote
1answer
830 views

Oracle Data Pump Export (expdp) locks table (or something similar)

I must export data from a partitioned table with global index that must be online all the time, but I am having troubles in doing that. For data export I am using Data Pump Export - expdp and I am ...
1
vote
2answers
394 views

how to partition a table by datetime column?

I want to partition a mysql table by datetime column. One day a partition.The create table scripts is like this: CREATE TABLE raw_log_2011_4 ( id bigint(20) NOT NULL AUTO_INCREMENT, logid ...
1
vote
0answers
97 views

Partitions and limit(for paging), need your opinion on growing table

I have a table that today holds almost 7m of records, i am beginning to understand the concept of partitions and i think this is the way my table should be. This table is growing 2000 regs per hour, ...
1
vote
3answers
3k views

How does one do a SQL select over multiple partitions?

Is there a more efficient way than: select * from transactions partition( partition1 ) union all select * from transactions partition( partition2 ) union all select * from transactions partition( ...
1
vote
1answer
173 views

Virtual Processors and Logical Partitions

I basically wanted to know what exactly a virtual processor is. At IBM's site they define it as: "A virtual processor is a representation of a physical processor core to the operating system of a ...
1
vote
1answer
368 views

Create/delete disk partitions via WMI

there is a way to create/delete disk partitions via WMI ? I'm already able to mount/unmount virtual disks (vhd) and list their partitions.
1
vote
3answers
535 views

how do i read a fedora partition from windows?

Windows recognizes and gives my fedora partition a drive letter, but it shows it as blank. Is there a way to get windows to read ext3 filesystem? Its a fedora 10 partition.
1
vote
2answers
6k views

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

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 part_test_1 values ...
1
vote
2answers
439 views

Generating partitions in Java

I am given an integer (lets call it x) and I need to generate an array of arrays, where each subarray is a list of elements which are one of a given set of integers, and the sum of all of the elements ...
0
votes
1answer
23 views

delete optimization using mysql partitioned table (MySQL 5.1)

I have a log table that gets processed every night. Processing will be done on data that was logged yesterday. Once the processing is complete I want to delete the data for that day. At the same ...
0
votes
0answers
33 views

How does sofs:partitions in Erlang work?

Note: This question is based on rethinking of my previous similar question. I would like to know if Erlang's sofs:partition does the same thing which is described in Wikipedia's page about Set ...
0
votes
1answer
74 views

How do I generate set partitions of a certain size?

I would like to generate partitions for a set in a specific way: I need to filter out all partitions which are not of size N in the process of generating these partitions. The general solution is ...
0
votes
1answer
43 views

get number of partitions in postgresql database

What is the most efficient way to get the number of partitions created in the database? I am using *postgresq*l APi for c++.
0
votes
1answer
49 views

oracle - how to copy partitioned table to a new schema on new tablespace

I created a datapump export (Oracle 11g) from SCHEMA A on a partitioned table (tablespace TEST``) usingTABLE=MYPARTTBL:MYPART`. I created a new schema SCHEMA B and imported the dump of SCHEMA A's ...
0
votes
0answers
54 views

Linux partitions [closed]

My distro is ArchLinux. I have hard disk with partitions for /boot, /home, / and swap. Now I have yet another empty HDD. I use my /srv/httpd/ for my projects and I would like to mount my new disk to ...
0
votes
0answers
22 views

Bios and hard drive issue after being attacked by hacker [closed]

I was attacked by a hacker that changed something on my hard drive .. Now I have 4 partitions that show up in windows after formatting and writing several passes to the drive. I have used Hirens boot ...
0
votes
2answers
36 views

mounting partitions while booting ubuntu [closed]

I'm quiet new to Ubuntu. I have created 3 partitions in my hard disk. One for Windows 7, the other for Ubuntu, and one fat32 partition that stores my media files. Now I have an issue, where the fat32 ...
0
votes
0answers
69 views

Partition and subpartition mysql table by primary key and 2 indexes to increase performance

i have got a very large table and i preform a very simple queries on it like id look ups. the query got slower with time because of the increasing of the table rows. i perform around 300 queries in ...
0
votes
1answer
193 views

List All Partitions On Disk

I'm making a utility in C# for a filesystem that isn't supported by windows, which means that I can't just access the drive. I need a way to list all partitions on the hard disk and ...
0
votes
0answers
79 views

Volume/partition size calculation and access through WinAPI

I've been trying to work this out so I can do basic things like saving or restoring volume images, etc. I can get a volume Guid path with GetVolumeNameForVolumeMountPointW. I can dismount the volume ...
0
votes
1answer
85 views

MySQL - syncing large staging table with production table

I have a table with 4mil+ records. There is a staging table that gets updated with data via an ETL process throughout the day. Once the staging table gets updated, I need to then sync that data with ...
0
votes
1answer
45 views

Error in creating mysql partitions

When I tried to create a partition it shows me this error. SQL query: CREATE TABLE t1( id INT, val INT )PARTITION BY HASH( val )( PARTITION p0 MAX_ROWS =200 MIN_ROWS =10, PARTITION p1 MAX_ROWS =100 ...
0
votes
1answer
35 views

which partition types (00..FE) can be accessed in Windows XP?

In mapping partitions starting from PhysicalDrive I use a code that mounts partitions of a certain type [0, 1, 6, 7, 11, 12, 114]. I want to extend the range for all partitions that can be accessed. I ...
0
votes
2answers
181 views

Is there a way to make the Title part of a Custom Dialog Box invisible?

Just a simple problem without any idea of how to do it. Does anyone know how/if this can be done? Reason: I just want one solid dialog box with no partitions as it looks a little better in my ...
0
votes
1answer
2k views

how can you enable partitions in Oracle 10g Enterprise Edition for Windows?

I installed Oracle 10g Enterprise Editions onto Windows XP. It appeared that Partitions were installed as part of the default install, however the partitions functionality is not enabled. I can find ...
-2
votes
0answers
12 views

How to merge the unallocated space with a drive in windows 7? [migrated]

I allocated 30 GB to my C drive in windows 7 at the time of installation which now I feel to be insufficient. I've 15 GB of unallocated space which now I want to merge with my C drive but I don't know ...