Problem with partitioning

Hi all,
In my organization, few tables were partitioned recently. But all the rows are going to default partition istead of going to the appropriate partition. So the appliclation team thinks that something wasn't done correctly - rows aren't distributed.
So my task is to investigate why rows are going to default partition. I would appreciate if someone can help me out.

Lesson one ... don't post duplicate questions in different forums.
All it tends to do is irritate those who might otherwise try to help you.
Look at your other post and let this one die.

Similar Messages

  • Problems with partition tables

    Hi all,
    I've got some problems with partition tables. The script at the bottom run but when I wanna insert some values it returns me an error
    (ORA-06550: line 1, column 30: PL/SQL: ORA-06552: PL/SQL: Compilation unit analysis terminated
    ORA-06553: PLS-320: the declaration of the type of this expression is incomplete or malformed
    ORA-06550: line 1, column 7: PL/SQL: SQL Statement ignored)
    and I can't understand why!
    There's something incorrect in the script or not?
    Please help me
    Thanks in advance
    Steve
    CREATE TABLE TW_E_CUSTOMER_UNIFIED
    ID_CUSTOMER_UNIFIED VARCHAR2 (27) NOT NULL ,
    START_VALIDITY_DATE DATE NOT NULL ,
    END_VALIDITY_DATE DATE ,
    CUSTOMER_STATUS VARCHAR2 (255)
    PARTITION BY RANGE (START_VALIDITY_DATE)
    SUBPARTITION BY LIST (END_VALIDITY_DATE)
    PARTITION M200909 VALUES LESS THAN (TO_DATE('20091001','YYYYMMDD'))
    (SUBPARTITION M200909_N VALUES (NULL), SUBPARTITION M200909_NN VALUES (DEFAULT)),
    PARTITION M200910 VALUES LESS THAN (TO_DATE('20091101','YYYYMMDD'))
    (SUBPARTITION M200910_N VALUES (NULL), SUBPARTITION M200910_NN VALUES (DEFAULT)),
    PARTITION M200911 VALUES LESS THAN (TO_DATE('20091201','YYYYMMDD'))
    (SUBPARTITION M200911_N VALUES (NULL), SUBPARTITION M200911_NN VALUES (DEFAULT)),
    PARTITION M200912 VALUES LESS THAN (TO_DATE('20100101','YYYYMMDD'))
    (SUBPARTITION M200912_N VALUES (NULL), SUBPARTITION M200912_NN VALUES (DEFAULT)),
    PARTITION M201001 VALUES LESS THAN (TO_DATE('20100201','YYYYMMDD'))
    (SUBPARTITION M201001_N VALUES (NULL), SUBPARTITION M201001_NN VALUES (DEFAULT)),
    PARTITION M201002 VALUES LESS THAN (TO_DATE('20100301','YYYYMMDD'))
    (SUBPARTITION M201002_N VALUES (NULL), SUBPARTITION M201002_NN VALUES (DEFAULT)),
    PARTITION M210001 VALUES LESS THAN (MAXVALUE))
    (SUBPARTITION M210001_N VALUES (NULL), SUBPARTITION M210001_NN VALUES (DEFAULT))
    ;

    Hi Hoek,
    the DB version is 10.2 (italian version, then SET is correct).
    ...there's something strange: now I can INSERT rows but I can't update them!
    I'm using this command string:
    UPDATE TW_E_CUSTOMER_UNIFIED SET END_VALIDITY_DATE = TO_DATE('09-SET-09', 'DD-MON-RR') WHERE
    id_customer_unified = '123' and start_validity_date = TO_DATE('09-SET-09', 'DD-MON-RR');
    And this is the error:
    Error SQL: ORA-14402: updating partition key column would cause a partition change
    14402. 00000 - "updating partition key column would cause a partition change"
    *Cause:    An UPDATE statement attempted to change the value of a partition
    key column causing migration of the row to another partition
    *Action:   Do not attempt to update a partition key column or make sure that
    the new partition key is within the range containing the old
    partition key.
    I think that is impossible to use a PARTITION/SUBPARTITION like that: in fact the update of "END_VALIDITY_DATE" cause a partition change.
    Do u agree or it's possible an update on a field that implies a partition change?
    Regards Steve

  • Problem with partition

    Hello,
    I bought my MBP s/h and it had Bootcamp/XP installed on the partition (size 13Gb). I had big problems with XP and decided to reinstall, but as I had no orig XP disc, I had to use a frien's XP Home version. I didn't delete the orig XP first, just installed the XP Home editon. I now have two problems -
    1) I'm v. short of space on that partition.
    Looking at that volume I can see programs relating to the previous owner e.g. BJ Printer folder etc.
    2) When I shut down the XP Home and try and Restart, it just hangs...
    Please suggest a plan of action...Thanks.

    Zydas:
    Is your friend's XP Home Edition installation CD a SP2 version? XPSP2 on a single disk? This is a must to be able to install it on a boot camp partition. Furthermore, it cannot be an upgrade version. It has to be a full version. Not sure what you meant by stating that you did not delete the original XP first. Please clarify.
    Given the information that you have provided, my recommendation is that you run boot camp again and delete the boot camp/windows partition completely and combine it into one with the osx partition. Boot Camp will allow you to do this.
    Run Boot Camp again (After thoroughly reading the instructions) and allow it to repartition the drive to the size(s) that you desire. Once that is done then you will need a FULL Version of XPSP2 (on a single disk) or any FULL version of Vista to install on the newly created boot camp partition.
    Axel F.

  • Cannot format my iMac. Problem with partition's file

    I cannot format my iMac because Disk Utility sends an error: The partition map needs to be repaired because there's a problem with the EFI system partition's file system. Any suggestions?

    The problem began when the Time machine excluded my home folder of the backup.  I could not include it again in the process (not in system preferences, nor anything else), so I decided to format the HD and make a fresh install of OSX Mavericks.  I could not do this because Disk Utility cannot unmount the partition when formatting the HD, and the error arose.  I simply cannot fix this, and before giving up and take it to a Mac repair shop, I would like to try by myself.

  • Problems with Partition pruning using LIST option in 9i

    I am declaring the following partitions on a fact table and when
    I do an explain plan on the following SELECT statements it is
    doing a full table scan on the fact table. However if I use
    the "PARTITION" statement in the FROM clause it picks up the
    correct partition and runs great. I have used the analyze
    command and dbms_utility.analyze_schema command on all tables
    and indexes. I had simaliar problems when partitioning with the
    RANGE options too. I have looked through all of the INIT file
    parameters and don't see anything obvious. Is there something I
    am missing?
    Any help would be appreciated!
    Thanks,
    Bryan
    Facttable create statement....
    CREATE TABLE FactTable (
    ProductGID INTEGER NULL,
    CustomerGID INTEGER NULL,
    OrganizationGID INTEGER NULL,
    TimeGID INTEGER NULL,
    FactValue NUMBER NOT NULL,
    ModDate DATE NULL,
    CombinedGID INTEGER NOT NULL)
    PARTITION BY LIST (CombinedGID)
    (PARTITION sales1 VALUES(9999101),
    PARTITION sales2 VALUES(9999102),
    PARTITION sales3 VALUES(9999103),
    PARTITION model1 VALUES(9999204),
    PARTITION model2 VALUES(9999205),
    PARTITION model3 VALUES(9999206));
    Select statement....that is causing a full table scan.....the
    *tc tables are the equivelent to dimension tables in a star
    schema.
    SELECT tco.parentgid, tcc.parentgid, tcp.parentgid, sum
    (factvalue)
    FROM facttable f, custtc tcc, timetc tct, prodtc tcp, orgtc tco
    WHERE
    tco.childgid = f.organizationgid
    AND tco.parentgid = 18262
    AND tcc.childgid = f.customergid
    AND tcc.parentmembertypegid = 16
    AND tcp.childgid = f.productgid
    AND tcp.parentmembertypegid = 7
    AND tct.childgid = f.timegid
    AND tct.parentgid = 1009
    GROUP BY tco.parentgid, tcc.parentgid, tcp.parentgid;
    Select statement that works great....
    SELECT tco.parentgid, tcc.parentgid, tcp.parentgid, sum
    (factvalue)
    FROM facttable partition(sales1) f, custtc tcc, timetc tct,
    prodtc tcp, orgtc tco
    WHERE
    tco.childgid = f.organizationgid
    AND tco.parentgid = 18262
    AND tcc.childgid = f.customergid
    AND tcc.parentmembertypegid = 16
    AND tcp.childgid = f.productgid
    AND tcp.parentmembertypegid = 7
    AND tct.childgid = f.timegid
    AND tct.parentgid = 1009
    GROUP BY tco.parentgid, tcc.parentgid, tcp.parentgid;

    Hi Hoek,
    the DB version is 10.2 (italian version, then SET is correct).
    ...there's something strange: now I can INSERT rows but I can't update them!
    I'm using this command string:
    UPDATE TW_E_CUSTOMER_UNIFIED SET END_VALIDITY_DATE = TO_DATE('09-SET-09', 'DD-MON-RR') WHERE
    id_customer_unified = '123' and start_validity_date = TO_DATE('09-SET-09', 'DD-MON-RR');
    And this is the error:
    Error SQL: ORA-14402: updating partition key column would cause a partition change
    14402. 00000 - "updating partition key column would cause a partition change"
    *Cause:    An UPDATE statement attempted to change the value of a partition
    key column causing migration of the row to another partition
    *Action:   Do not attempt to update a partition key column or make sure that
    the new partition key is within the range containing the old
    partition key.
    I think that is impossible to use a PARTITION/SUBPARTITION like that: in fact the update of "END_VALIDITY_DATE" cause a partition change.
    Do u agree or it's possible an update on a field that implies a partition change?
    Regards Steve

  • Odd problem with partitioning the disk-- it says it needs to be a single Mac OS Extended (Journaled) volume, but it already is? (Screenshots in post)

    I have a 1 TB Macbook Pro running Mavericks.
    My disk is a single-volume...
    Here is the information on my disk:
    And I'm trying to use boot camp assist to partition my disk, like this:
    But when I do, I get this error message:
    "The disk cannot be partitioned because some files cannot be moved. Back up the disk and use Disk Utility to format it as a single Mac OS Extended (Journaled) volume. Restore your information to the disk and try using Boot Camp Assistant again."
    It already is a single Mac OS Extended journaled volume.  Right? Here is an image from Disk Utility:
    Any ideas?

    Hey there!
    It sounds like you are unable to install BootCamp due to an error that your some files cannot be moved, and to format your disk as a single volume, but you have confirmed that it already is. I would verify and repair your disk permissions with the following article next, if you have already restarted your computer and tried again:
    Disk Utility 12.x: Repair disk permissions
    http://support.apple.com/kb/ph5821
    Choose Apple menu > Software Update to make sure you have the latest version of Mac OS X.Software updates sometimes change a file’s permissions to improve security, so updating your software can solve some permissions problems.
    Open Disk Utility, in the Utilities folder in Launchpad.
    Select the disk you want to check.You can verify or repair permissions only on a disk with Mac OS X v10.7 Lion installed.
    Click First Aid.
    Do one of the following:
    Click Verify Disk Permissions to test permissions.
    Click Repair Disk Permissions to test and repair permissions.
    Disk Utility repairs the permissions for files installed by the Mac OS X Installer, Software Update, or an Apple software installer. It doesn’t repair permissions for your documents, your home folder, or third-party applications.
    If that does not resolve the issue, I would next verify and repair the disk with this:
    Disk Utility 12.x: Repair a disk
    http://support.apple.com/kb/PH5836
    Thank you for using Apple Support Communities.
    Take care,
    Sterling

  • Problems with partitioning and install Grub. Fresh install

    All,
    First post here. I appreciate any help you can offer.
    I am having some problems when installing Arch Linux.
    I am installing Arch on a brand new (3 days old) Toshiba SatelliteC655D-S5300 Laptop.
    Hot sheet can be found at http://cdgenp01.csd.toshiba.com/content … -S5300.pdf.
    I was initially installing from 2011.08.19 x86_64 Core CD but someone suggested using the latest version.
    Now I am installing from 2011.11.13 x86_64 CD burned at 4x (the slowest my burner can go).
    I am able to complete all steps up to installing GRUB, but it fails to install.
    During partitioning I receive a few errors and I believe this is contributing to the issue.
    At first I tried automatic partitioning with 100mb boot, 1024mb swap, 10,000mb / and the rest of 320g for /home. Each partition is ext3 except /boot which is ext2.
    During the automatic partitioning an error briefly occured: /usr/lib/aif/core/libs/lib-blockdevices-filesystems.sh: line 355: !((partition_flag)): command not found.
    After speaking with a friend they suggested manually partitioning and using UUIDs instead.
    1) So far I have removed all partitions, rebooted.
    2) Partitioned using cFdisk. Bootable 100mb parition, 1024mb swap, 15,000mb primary (/), 3000mb logical (/var), and the rest 300949mb logical (/home).
    3) Once I write the changes and quit I reboot.
    4)I go back into the installer and complete steps 1-3.
    5) Go to step 4 and and then manually configure block devices, file systems, or mount points.
    6) I choose the option for uuid and hit ok.
    At this point 3 error messages appear at the bottom:
    /usr/lib/aif/core/libs/lib-ui-interactive.sh: line 602: local: 'part,' : not a valid identifier
    /usr/lib/aif/core/libs/lib-ui-interactive.sh: line 602: local: 'type,' : not a valid identifier
    /usr/lib/aif/core/libs/lib-ui-interactive.sh: line 602: local: 'label,' : not a valid identifier
    (Screenshot: http://i.imgur.com/OHRKo.jpg)
    7) Next it prompts me to add the mount points for each partition set.
    8) Select the partition, the mount point, it asks me for label and any additional opts for mkfs.ext3.
    9) I leave the label and opts field blank. After selecting ok to the opts field I get the same 3 errors as above:
    /usr/lib/aif/core/libs/lib-ui-interactive.sh: line 602: local: 'part,' : not a valid identifier
    /usr/lib/aif/core/libs/lib-ui-interactive.sh: line 602: local: 'type,' : not a valid identifier
    /usr/lib/aif/core/libs/lib-ui-interactive.sh: line 602: local: 'label,' : not a valid identifier
    (Screenshot: http://i.imgur.com/QqkSP.jpg)
    I am able to successfully set a mount point and format each partition. But I receive the same set of 3 errors occur for each partition.
    10) Once I complete the formatting I proceed to step 8, install bootloader.
    It says Generating Grub device map.. This could take a while. Please be patient.
    I receivieve the following error on this screen: /usr/lib/aif/core/libs/lib-blockdevices-filesystems.sh: line 355: !((partition_flag)): command not found.
    (Screenshot: http://i.imgur.com/B5j4K.jpg)
    11) After the error displays it goes to the next screen, before installing grub you must review config file. etc.
    12) I hit ok and then :q the config file. Is there a critical change in the config file that I'm missing?
    13) After closing the file I select which the boot device where the GRUB bootloader will be installed. My only option is /dev/sda. I hit ok
    Then I get the following 2 errors:
    /usr/lib/aif/core/libs/lib-blockdevices-filesystems.sh: line 355: !((partition_flag)): command not found
    /usr/lib/aif/core/libs/lib-blockdevices-filesystems.sh: line 355: !((partition_flag)): command not found
    (Screenshot: http://i.imgur.com/ol840.jpg)
    13) Error installing GRUB. See /dev/tty7 for output. Ok
    14) GRUB was NOT successfully installed. Ok
    I checked out TTY7.
    It shows the installer issuing the following commands in GRUB.
    1) device (hd0,) /dev/sda
         Error 12: Invalid device requested
    2) root (hd0,0)
         Filesystem type is extf2, partition type 0x83
    3) setup (hd0,)
    Checking if "/boot/grub/stage1" exists... no
    Checking if "/grub/stage1" exists... yes
    Checking if "/grub/stage2" exists... yes
    Checking if "/grub/e2fs_stage1_5" exists... yes
    Running "embed /grub/e2fs_stage1_5 (hd0,0)"... failed (this is not fatal)
    Running "embed /grub/e2fs_stage1_5 (hd0,0)"... failed (this is not fatal)
    Running "install /grub/stage1 (hd0,0) /grub/stage2 p /grub/menu.lst "... succeeded
    Done.
    4) quit
    I have tried rebooting from here and using the Arch CD to boot into the existing OS but it does not work.
    I tried grub-install /dev/sda
    I get Probing devices to check BIOS drives. This may take a long time.
    /dev/mapper../dm-0 does not have any corresponding BIOS drive.
    I have tried going into grub and issuing the same commands the install script did.
    Same errors.
    I'm afraid I don't have network access at the moment so I can't get a successful /arc/report-issues to run.
    I hope I've included enough information to start the troubleshooting.
    Let me know if I've missed anything!
    Thanks in advance,
    -Jason
    Last edited by username17 (2011-11-17 22:37:56)

    username17 wrote:I get Probing devices to check BIOS drives. This may take a long time.
    /dev/mapper../dm-0 does not have any corresponding BIOS drive.
    Your drive does not have an MBR to install grub to as it is a GPT disk - which is also not supported under the old GRUB.
    You need to create a small partition at the very beginning of the drive (8MB is plenty) and set the "bios_grub" flag. ie the "BIOS drive" your error refers to.
    You will then need to install the grub2-bios package following the chroot instructions on the grub2 wiki page here: https://wiki.archlinux.org/index.php/GRUB2#Installation
    ** Please note that I found the chroot mounts to be outdated - replace "/tmp/install" with "/mnt" **
    Your alternative solution is to boot a gparted liveCD and prepare your disk as MBR - this will (most likely) destroy all existing data on the disk.

  • Problem with partitioning - disk permanently falls back to old p-table

    Hey Guys!
    I'm quite desperate and can't find answers for the following problem - maybe some of you already had a similiar problem.
    I want to reuse a SSD that I used on a different machine as primary system drive. It's partition-table:
    # fdisk -l /dev/sda
    Disk /dev/sda: 119.2 GiB, 128035676160 bytes, 250069680 sectors
    Units: sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disklabel type: dos
    Disk identifier: 0x0004f0e5
    Device     Boot  Start       End   Sectors  Size Id Type
    /dev/sda1  *      2048    499711    497664  243M 83 Linux
    /dev/sda2       501758 250068991 249567234  119G  5 Extended
    /dev/sda5       501760 250068991 249567232  119G 8e Linux LVM
    There is a LVM volume group with two volumes (root and swap) on sda5. No matter how I try to destroy the LVM setup and the partitioning, it is always "reseted" to this setup.
    I tried: lvremove, vgremove, pvremove, fdisk, cfdisk, gdisk, cgdisk, dd from /dev/null, testdisk - with and without reboots, from arch-linux booted from usb and from an ubuntu-live-cd. No matter what, the partitioning does not change.
    Why I want to reformat it? I want to use the drive as cache for zfs-on-linux.
    It feels like the drive is somehow write-protected.
    Has anyone suggestions what to try next?

    Thanks @ROOKIE
    Sadly didn't work either - see below. Underneath I added results of smart-tests - maybe I miss something.
    $ sudo lsblk
    NAME   MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
    sda      8:0    0 119.2G  0 disk
    |-sda1   8:1    0   243M  0 part
    |-sda2   8:2    0     1K  0 part
    `-sda5   8:5    0   119G  0 part
    sdc      8:32   1   7.4G  0 disk
    |-sdc1   8:33   1   512M  0 part
    `-sdc2   8:34   1   6.9G  0 part
    sdd      8:48   1   7.4G  0 disk
    |-sdd1   8:49   1   512M  0 part /boot
    `-sdd2   8:50   1   6.9G  0 part
    sr0     11:0    1  1024M  0 rom 
    zram0  254:0    0  75.1M  0 disk [SWAP]
    zram1  254:1    0  75.1M  0 disk [SWAP]
    zram2  254:2    0  75.1M  0 disk [SWAP]
    zram3  254:3    0  75.1M  0 disk [SWAP]
    $ sudo blkdiscard -v /dev/sda
    /dev/sda: Discarded 128035676160 bytes from the offset 0
    $ sudo blkdiscard -v /dev/sda
    /dev/sda: Discarded 128035676160 bytes from the offset 0
    $ sudo fdisk /dev/sda
    Welcome to fdisk (util-linux 2.26.1).                                                                                                                                                                                   
    Changes will remain in memory only, until you decide to write them.
    Be careful before using the write command.
    Command (m for help): o
    Created a new DOS disklabel with disk identifier 0x591d429c.
    Command (m for help): w
    The partition table has been altered.
    Calling ioctl() to re-read partition table.
    Syncing disks.
    $ lsblk
    NAME   MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
    sda      8:0    0 119.2G  0 disk
    |-sda1   8:1    0   243M  0 part
    |-sda2   8:2    0     1K  0 part
    `-sda5   8:5    0   119G  0 part
    sdc      8:32   1   7.4G  0 disk
    |-sdc1   8:33   1   512M  0 part
    `-sdc2   8:34   1   6.9G  0 part
    sdd      8:48   1   7.4G  0 disk
    |-sdd1   8:49   1   512M  0 part /boot
    `-sdd2   8:50   1   6.9G  0 part
    sr0     11:0    1  1024M  0 rom 
    zram0  254:0    0  75.1M  0 disk [SWAP]
    zram1  254:1    0  75.1M  0 disk [SWAP]
    zram2  254:2    0  75.1M  0 disk [SWAP]
    zram3  254:3    0  75.1M  0 disk [SWAP]
    $ sudo blkdiscard -v /dev/sda
    /dev/sda: Discarded 128035676160 bytes from the offset 0
    $ lsblk
    NAME   MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
    sda      8:0    0 119.2G  0 disk
    |-sda1   8:1    0   243M  0 part
    |-sda2   8:2    0     1K  0 part
    `-sda5   8:5    0   119G  0 part
    sdc      8:32   1   7.4G  0 disk
    |-sdc1   8:33   1   512M  0 part
    `-sdc2   8:34   1   6.9G  0 part
    sdd      8:48   1   7.4G  0 disk
    |-sdd1   8:49   1   512M  0 part /boot
    `-sdd2   8:50   1   6.9G  0 part
    sr0     11:0    1  1024M  0 rom 
    zram0  254:0    0  75.1M  0 disk [SWAP]
    zram1  254:1    0  75.1M  0 disk [SWAP]
    zram2  254:2    0  75.1M  0 disk [SWAP]
    zram3  254:3    0  75.1M  0 disk [SWAP]
    I checked smart too now:
    $ sudo smartctl -t long /dev/sda
    smartctl 6.3 2014-07-26 r3976 [x86_64-linux-3.19.3-3-ARCH] (local build)
    Copyright (C) 2002-14, Bruce Allen, Christian Franke, www.smartmontools.org
    === START OF OFFLINE IMMEDIATE AND SELF-TEST SECTION ===
    Sending command: "Execute SMART Extended self-test routine immediately in off-line mode".
    Drive command "Execute SMART Extended self-test routine immediately in off-line mode" successful.
    Testing has begun.
    Please wait 1 minutes for test to complete.
    Test will complete after Fri Apr 17 12:22:27 2015
    Use smartctl -X to abort test.
    $ sudo smartctl -H /dev/sda
    smartctl 6.3 2014-07-26 r3976 [x86_64-linux-3.19.3-3-ARCH] (local build)
    Copyright (C) 2002-14, Bruce Allen, Christian Franke, www.smartmontools.org
    === START OF READ SMART DATA SECTION ===
    SMART overall-health self-assessment test result: PASSED
    $ sudo smartctl -a /dev/sda
    smartctl 6.3 2014-07-26 r3976 [x86_64-linux-3.19.3-3-ARCH] (local build)
    Copyright (C) 2002-14, Bruce Allen, Christian Franke, www.smartmontools.org
    === START OF INFORMATION SECTION ===
    Model Family:     JMicron based SSDs
    Device Model:     KINGSTON SNV425S2128GB
    Serial Number:    07WA50010371
    Firmware Version: D100309a
    User Capacity:    128,035,676,160 bytes [128 GB]
    Sector Size:      512 bytes logical/physical
    Rotation Rate:    Solid State Device
    Form Factor:      2.5 inches
    Device is:        In smartctl database [for details use: -P show]
    ATA Version is:   ATA8-ACS (minor revision not indicated)
    SATA Version is:  SATA 2.6, 3.0 Gb/s
    Local Time is:    Fri Apr 17 12:31:57 2015 CEST
    SMART support is: Available - device has SMART capability.
    SMART support is: Enabled
    === START OF READ SMART DATA SECTION ===
    SMART overall-health self-assessment test result: PASSED
    General SMART Values:
    Offline data collection status:  (0x00) Offline data collection activity
                                            was never started.
                                            Auto Offline Data Collection: Disabled.
    Self-test execution status:      (   0) The previous self-test routine completed
                                            without error or no self-test has ever
                                            been run.
    Total time to complete Offline
    data collection:                (   30) seconds.
    Offline data collection
    capabilities:                    (0x1b) SMART execute Offline immediate.
                                            Auto Offline data collection on/off support.
                                            Suspend Offline collection upon new
                                            command.
                                            Offline surface scan supported.
                                            Self-test supported.
                                            No Conveyance Self-test supported.
                                            No Selective Self-test supported.
    SMART capabilities:            (0x0003) Saves SMART data before entering
                                            power-saving mode.
                                            Supports SMART auto save timer.
    Error logging capability:        (0x01) Error logging supported.
                                            General Purpose Logging supported.
    Short self-test routine
    recommended polling time:        (   1) minutes.
    Extended self-test routine
    recommended polling time:        (   1) minutes.
    SMART Attributes Data Structure revision number: 16
    Vendor Specific SMART Attributes with Thresholds:
    ID# ATTRIBUTE_NAME          FLAG     VALUE WORST THRESH TYPE      UPDATED  WHEN_FAILED RAW_VALUE
      1 Raw_Read_Error_Rate     0x000b   100   100   050    Pre-fail  Always       -       0
      2 Throughput_Performance  0x0005   100   100   050    Pre-fail  Offline      -       0
      3 Unknown_Attribute       0x0007   100   100   050    Pre-fail  Always       -       0
      5 Reallocated_Sector_Ct   0x0013   100   100   050    Pre-fail  Always       -       0
      7 Unknown_Attribute       0x000b   100   100   050    Pre-fail  Always       -       0
      8 Unknown_Attribute       0x0005   100   100   050    Pre-fail  Offline      -       0
      9 Power_On_Hours          0x0012   100   100   000    Old_age   Always       -       12054
    10 Unknown_Attribute       0x0013   100   100   050    Pre-fail  Always       -       0
    12 Power_Cycle_Count       0x0012   100   100   000    Old_age   Always       -       5448
    168 SATA_Phy_Error_Count    0x0012   100   100   000    Old_age   Always       -       0
    175 Bad_Cluster_Table_Count 0x0003   100   100   010    Pre-fail  Always       -       29
    192 Unexpect_Power_Loss_Ct  0x0012   100   100   000    Old_age   Always       -       0
    194 Temperature_Celsius     0x0022   052   100   020    Old_age   Always       -       52 (Min/Max 29/52)
    197 Current_Pending_Sector  0x0012   100   100   000    Old_age   Always       -       0
    240 Unknown_Attribute       0x0013   100   100   050    Pre-fail  Always       -       0
    170 Bad_Block_Count         0x0003   100   100   010    Pre-fail  Always       -       144 329 118
    173 Erase_Count             0x0012   100   100   000    Old_age   Always       -       6399 10521 7887
    SMART Error Log Version: 1
    ATA Error Count: 153 (device log contains only the most recent five errors)
            CR = Command Register [HEX]
            FR = Features Register [HEX]
            SC = Sector Count Register [HEX]
            SN = Sector Number Register [HEX]
            CL = Cylinder Low Register [HEX]
            CH = Cylinder High Register [HEX]
            DH = Device/Head Register [HEX]
            DC = Device Command Register [HEX]
            ER = Error register [HEX]
            ST = Status register [HEX]
    Powered_Up_Time is measured from power on, and printed as
    DDd+hh:mm:SS.sss where DD=days, hh=hours, mm=minutes,
    SS=sec, and sss=millisec. It "wraps" after 49.710 days.
    Error 153 occurred at disk power-on lifetime: 11818 hours (492 days + 10 hours)
      When the command that caused the error occurred, the device was active or idle.
      After command completion occurred, registers were:
      ER ST SC SN CL CH DH
      40 51 00 28 66 d3 eb  Error: UNC at LBA = 0x0bd36628 = 198403624
      Commands leading to the command that caused the error were:
      CR FR SC SN CL CH DH DC   Powered_Up_Time  Command/Feature_Name
      c8 00 08 28 66 d3 eb 08  36d+21:07:12.000  READ DMA
      ec 00 00 00 00 00 a0 08  36d+21:07:12.000  IDENTIFY DEVICE
      ef 03 45 00 00 00 a0 08  36d+21:07:12.000  SET FEATURES [Set transfer mode]
      ec 00 00 00 00 00 a0 08  36d+21:07:12.000  IDENTIFY DEVICE
      c8 00 08 28 66 d3 eb 08  36d+21:07:12.000  READ DMA
    Error 152 occurred at disk power-on lifetime: 11818 hours (492 days + 10 hours)
      When the command that caused the error occurred, the device was active or idle.
      After command completion occurred, registers were:
      ER ST SC SN CL CH DH
      40 51 00 28 66 d3 eb  Error: UNC at LBA = 0x0bd36628 = 198403624
      Commands leading to the command that caused the error were:
      CR FR SC SN CL CH DH DC   Powered_Up_Time  Command/Feature_Name
      c8 00 08 28 66 d3 eb 08  36d+21:07:12.000  READ DMA
      c8 00 08 20 66 d3 eb 08  36d+21:07:12.000  READ DMA
      c8 00 08 18 66 d3 eb 08  36d+21:07:12.000  READ DMA
      c8 00 08 10 66 d3 eb 08  36d+21:07:12.000  READ DMA
      c8 00 08 08 66 d3 eb 08  36d+21:07:12.000  READ DMA
    Error 151 occurred at disk power-on lifetime: 11818 hours (492 days + 10 hours)
      When the command that caused the error occurred, the device was active or idle.
      After command completion occurred, registers were:
      ER ST SC SN CL CH DH
      40 51 00 00 66 d3 eb  Error: UNC at LBA = 0x0bd36600 = 198403584
      Commands leading to the command that caused the error were:
      CR FR SC SN CL CH DH DC   Powered_Up_Time  Command/Feature_Name
      c8 00 00 00 66 d3 eb 08  36d+21:07:12.000  READ DMA
      c8 00 00 00 65 d3 eb 08  36d+21:07:12.000  READ DMA
      c8 00 00 00 64 d3 eb 08  36d+21:07:12.000  READ DMA
      c8 00 00 00 63 d3 eb 08  36d+21:07:12.000  READ DMA
      c8 00 00 00 62 d3 eb 08  36d+21:07:12.000  READ DMA
    Error 150 occurred at disk power-on lifetime: 6211 hours (258 days + 19 hours)
      When the command that caused the error occurred, the device was active or idle.
      After command completion occurred, registers were:
      ER ST SC SN CL CH DH
      40 51 00 a8 f6 75 eb  Error: UNC at LBA = 0x0b75f6a8 = 192280232
      Commands leading to the command that caused the error were:
      CR FR SC SN CL CH DH DC   Powered_Up_Time  Command/Feature_Name
      c8 00 08 a8 f6 75 eb 08      04:55:01.600  READ DMA
      ec 00 00 00 00 00 a0 08      04:55:01.600  IDENTIFY DEVICE
      ef 03 45 00 00 00 a0 08      04:55:01.600  SET FEATURES [Set transfer mode]
      ec 00 00 00 00 00 a0 08      04:55:01.600  IDENTIFY DEVICE
      c8 00 08 a8 f6 75 eb 08      04:55:01.500  READ DMA
    Error 149 occurred at disk power-on lifetime: 6211 hours (258 days + 19 hours)
      When the command that caused the error occurred, the device was active or idle.
      After command completion occurred, registers were:
      ER ST SC SN CL CH DH
      40 51 00 a8 f6 75 eb  Error: UNC at LBA = 0x0b75f6a8 = 192280232
      Commands leading to the command that caused the error were:
      CR FR SC SN CL CH DH DC   Powered_Up_Time  Command/Feature_Name
      c8 00 08 a8 f6 75 eb 08      04:55:01.500  READ DMA
      c8 00 08 a0 f6 75 eb 08      04:55:01.500  READ DMA
      c8 00 08 98 f6 75 eb 08      04:55:01.500  READ DMA
      c8 00 08 90 f6 75 eb 08      04:55:01.500  READ DMA
      c8 00 08 88 f6 75 eb 08      04:55:01.500  READ DMA
    SMART Self-test log structure revision number 1
    Num  Test_Description    Status                  Remaining  LifeTime(hours)  LBA_of_first_error
    # 1  Extended offline    Completed without error       00%     12054         -
    # 2  Extended offline    Completed without error       00%     11117         -
    # 3  Short offline       Completed without error       00%     11116         -
    # 4  Extended offline    Completed without error       00%     11100         -
    # 5  Short offline       Completed without error       00%      6804         -
    # 6  Short offline       Completed without error       00%      2818         -
    # 7  Short offline       Completed without error       00%      2750         -
    # 8  Short offline       Completed without error       00%      2744         -
    # 9  Short offline       Aborted by host               00%      2521         -
    #10  Short offline       Completed without error       00%      2448         -
    #11  Short offline       Completed without error       00%      2290         -
    #12  Short offline       Completed without error       00%      2120         -
    #13  Short offline       Completed without error       00%      2021         -
    #14  Short offline       Completed without error       00%      1936         -
    #15  Short offline       Completed without error       00%      1859         -
    #16  Short offline       Completed without error       00%      1823         -
    #17  Short offline       Completed without error       00%      1727         -
    #18  Short offline       Completed without error       00%      1687         -
    #19  Short offline       Completed without error       00%      1580         -
    #20  Short offline       Completed without error       00%      1292         -
    #21  Short offline       Completed without error       00%      1245         -
    Selective Self-tests/Logging not supported

  • Problem with Partition scheme (was :)

    I've installed PSE 10 on partition K. To my surprise I found on the Windows partition (C) a file c://users/all users/adobe/photoshop elements with a size of 1,4Gb. Can I move this file to e.g. K? What is the meaning of this file. During installation I didn't find a choice to place it on another partition.

    I would say leave the stuff there as that's where pse 10 expects to find those files and if one moves things around that could create more problems than it solves.
    A lot of that stuff pertains to the things you see in the Effects and Content panels along with the stuff for the Guided and Quick Edit edit menus.
    On a normal installation on windows 7 the path would be C:\ProgramData\Adobe\Photoshop Elements, so that's why i was asking for the exact path.
    I really don't know about Lightroom in your case, but i don't think it installs so many big files outside the actual program as elements does.

  • Problems with partitioning hard disk

    Hi, I have an external hard disk with 2tb capacity.
    I want to create one partition of 1,5 tb to use with Time Machine and one partition with 500 gb to use both with windows and mac.
    I have partitioned the first one in HFS extended and the second one in exfat, using the GUID partition table.
    Now the problem: on the mac both the partitions work well.
    In Windows, on the contrary, the exfat partition is not recognized. It says it is to be formatted a nd if I try to format it (in windows) it says it is not able to do this.
    I don't know what is the problem, even if I think it can be in the GUID table used...

    I think you can have only one OPTION for the partition table map scheme which is for the entire drive.
    So, when you created your two partitions (1.5GB Mac OS Extended - Journaled format and a 2nd for the rest of the space as ExfFat format) you chose the partition table map scheme as GUID, Windows will not see either partition. For Windows to see the ExFat partition, the partition map scheme has to be Master Boot Record.
    I have never formated two different partitions like you and made the partition table map scheme Master Boot Record. I know the PC will see the ExFat partition, but I don't know if the Mac will see the other. Understand you won't be able to boot from the Mac formated partition since the drive is MBR. Try it! You will need to reformat the drive with your two partitions when you change the partition table.

  • Problem with partition disk in 2010 MacBook Air

    Hello!
    I have a 2010 MacBook Air 11-inch and I can't do a partition disk with bootcamp. I have Windows 7 ISO and I have a bootable usb with this.Then, when I try to do partition with bootcamp , it said that I need a remote optical drive. I don't understand, because with my 2009 iMac I can do the partition with bootable usb since bootcamp. This problem is caused by bootcamp program is not well updated or simply, I can't do the partition without remote optical drive?
    Thanks for help!

    Exactly the same happened to me. Yesterday morning I opened the lid of my MBP8,1 (late 2011) on a meeting with a client and It just did not wake up :-/ After forced reboot it would never boot stuck on the same place.
    Now what is happening any HDD will be recognized and booted aswell 10/10 attempts but SSD will not boot eventhough I reinstalled it all. The SSD WILL boot in other MBP and is visible on other systems.
    The SSD WILL BOOT via USB.
    I do not believe the disk is the problem.
    My MB was replaced just few months ago. My SATA cable was replaced some time before the MB.
    Filip

  • Problems with partitions after hard reset

    Hi hope some can help here, I installed Maverick on my imac and everything seemed fine, I went to work and came home to find a black screen with nothing but the mouse cursor, however the computer wouldnt respond in any way so had to do a hard reset when the computer restarted I would get the Aplle logo and the spinning wheel then the computer would restart it kept doing this over and over.
    I restared the computer went into DU tried to repair disk and kept getting errors, my drive is 3TB i have a 1TB primary Partition and a second of 2TB I tried to erase and reformat the primary partition but got an error half way through now both partitons are greyed out with no way or deleting or doing anything with them I have also noticed I no longer have the hard drive make and model in the list just Mackintoh HD and my second partition, to make matters worse my second partition is now unmounted and and when I try to mount it says it needs to be repaired but wont repair, I really need totry and get the data from the second partiton but im struggling, when I tried to reinstall os x it cant see a drive to install to nothing shows up, I even booted using diskwarrior and even it couldnt see the drive, I know this drive is ok this is a software issue the partition table seems to be corrupt or something help!!
    Its worth mentioning I had Parallels and Windows 7 on the primary partiton could the windows partiton have caused an issue when I tried to erase and reformat the partition?
    Message was edited by: seanybdj

    The drive has failed.

  • Problem with partition after deleting a bootcamp partition

    Hi everyone !
    First, excuse my english, I'm from France.
    This morning, I've deleted the bootcamp partition I had created weeks ago. But when I've tried to extend the principal partition on the empty space left by bootcamp, the Disk Utilitaire says : "Partition failed : impossible to modify the partition map because the verification of the files system failed."
    I tried to extend the partition with the hided partition that we use when we can't boot on the main partition (I don't know how to say its name in english).
    If someone have a solution, it would be cool !

    Back everything up (preferably twice, 3 times for the really paranoid).  I would use Carbon Copy Cloner and/or SuperDuper to make bootable clones to external disks.
    Test the clone(s) by booting from them.
    Repartition the boot disk the way you want it.
    Restore your cloned system from the external disk.

  • Problems with partitioning

    After partitioning my SSD MachintoshHD my system won't reboot.
    I installed the latest TimeMachine Backup and the partition exists now - but can't be used by Boot Camp to install the Win7 copy.
    I am using a MacMini (late 2012) i7.
    Can you give me a hint?

    Thanks, I just tried for a third time the same way... and it worked... can't tell why but finally I got it fixed.
    Thanks anyway.

  • Problems with Partition

    I recently got a dvd for the new Windows 7 Ultimate. So, i backed up important files and removed the old Windows XP Pro on my disk drive. Then, I went to the partition area and started to separate spaces. It says it starts verifying and it fails at last. Please help.
    Specs. Macbook Pro 13' 2009. 2.26GhZ 4GB Ram (upgraded from 2gb) 500 GB Hard Drive (Upgraded from....250 or 200 forgotten; whatever the factory specs were.) OSX Lion 10.7.4. Trackpad half broken DVD "superdrive" working.

    Hi Hoek,
    the DB version is 10.2 (italian version, then SET is correct).
    ...there's something strange: now I can INSERT rows but I can't update them!
    I'm using this command string:
    UPDATE TW_E_CUSTOMER_UNIFIED SET END_VALIDITY_DATE = TO_DATE('09-SET-09', 'DD-MON-RR') WHERE
    id_customer_unified = '123' and start_validity_date = TO_DATE('09-SET-09', 'DD-MON-RR');
    And this is the error:
    Error SQL: ORA-14402: updating partition key column would cause a partition change
    14402. 00000 - "updating partition key column would cause a partition change"
    *Cause:    An UPDATE statement attempted to change the value of a partition
    key column causing migration of the row to another partition
    *Action:   Do not attempt to update a partition key column or make sure that
    the new partition key is within the range containing the old
    partition key.
    I think that is impossible to use a PARTITION/SUBPARTITION like that: in fact the update of "END_VALIDITY_DATE" cause a partition change.
    Do u agree or it's possible an update on a field that implies a partition change?
    Regards Steve

Maybe you are looking for

  • Problem with the Non-English Characters

    Hello, I have been using Adobe Illustrator  but I have a huge problem with the non-english characters with Standart Fonts. With the Professional font's I have no problem with them. But when I'm using any standart font in font folio library I cannot t

  • To get the Application name

    Hai experts, I have a requirement as follows: I have a component named as ZComponent which has 3 view. i am creating 2 applications for the component named as zappl1 and zappl2. zappl1 starts from first view itsef where as zappl2 starts from second v

  • Synch without Album Artwork

    How do you transfer or synch music to the iPod without transfering the album work from iTunes

  • Misconception about the LAG function's ... functionality?

    So I want to look at the value of a column on a current row, and the value of the same column on the most recently entered row, prior to the current. The problem I'm encountering is that for the current row, I'm only interested in those added last mo

  • When my Bluetooth disconnects during a file transfer where is all the data? why do i have to start over?

    while transfering a large video file from my phone to my imac i lost the bluetooth connection so where is all the data that was already transfered and how do i delete it? can i pick up where it left off? if not why is it that i have to start over? al