Data partitioning & Index partitioning

Hi,
I have the following questions about implementing ILM on a existing table consisting of millions of rows and with index partitioning...
1) how can data be partitioned when index partitioning exists?
2) what happens to the indexes when the table data is partitioned (per month)?
3) when the data is partitioned, will the indexes AUTOMATICALLY reorganize according to the data partitions? otherwise, what has to be done to the index partitioning?
Thanks.

Hi,
The best way to do this would be to create a new table with the desired partitioning and build a local index on this. If it is possible to take the table offline and recreate all its dependencies manually, then the new table can simply be renamed to the old table. If the table needs to stay online, you may want to look into using online redefinition with dbms_redefinition. Below I have shown a sample of how you could recreate the table and index:
Original definitions -
create table my_test_table (id number, val number);
create index my_test_table_idx
on my_test_table (id)
global partition by range (id)
(partition p1_ind values less than (5),
partition p2_ind values less than (maxvalue));
New definitions -
create table my_test_table_new (id number, val number)
partition by range (id)
(partition p1_tab values less than (5),
partition p2_tab values less than (maxvalue));
create index my_test_table_idx_new
on my_test_table_new (id)
local;
Renaming -
alter table my_test_table rename to my_test_table_old;
alter table my_test_table_new rename to my_test_table;
alter index my_test_table_idx rename to my_test_table_idx_old;
alter index my_test_table_idx_new rename to my_test_table_idx;

Similar Messages

  • Disk Utility - Partition map needs repair because a data partition needs loader space.

    I just finished setting up both my OSX and Windows installs from scratch after fitting an SSD, which in-turn was right before my logic board died and Apple replaced it, now it looks like I have some sort of hard drive issue brewing.
    This was my plan for the SSD, and how it currently displays in Disk Utility although that wasn't the case earlier:
    And in Terminal:
    My intention was to have two boot partitions for each OS, 'Macintosh HD' and 'Win 7 Pro' and a third shared data partition 'Projects' on the SSD, which I made in Drive Genius after installing Boot Camp. I don't want Macintosh HD accessible from Windows because I'll be using Paragon HFS+ or MacDrive to give write access and don't want OSs stomping on other OSs turf, hence needing three partitions. Everything looked fine until I just checked Disk Management under windows and realised it couldn't see the Projects volume. Even though it's fine in OS X, it was just marked black/unallocated space.
    So I booted back into OSX, all my files look fine so I ran Disk Utility and the Partition tab looked really odd - unfortunately I didn't get a screenshot. All volumes reported their size correctly but visually, Macintosh HD took up most of the drive. I could see 'Windows 7 Pro' under this, but the Partition Layout section had a scrollbar, which if I scrolled down showed 'Projects' squished into a tiny gap at the bottom. I ran a Verify, which reported no problems, and at some time since the Partition Layout has reverted to how it should look (as in the screenshot above), with 'Projects' book-ended by "Macintosh HD' and 'Windows 7 Pro'.
    Now when I run a Verify on Macintosh HD or Projects volumes, it says there's no problem, but if I run one on the drive, I get this message:
    Volume Macintosh HD on disk0s2 has 0 bytes of trailing loader space and it needs 134217728 bytes
    Problems were found with the partition map which might prevent booting
    Error: Partition map needs repair because a data partition needs loader space.
    I've only managed to find one other mention of this error here, but the fix is not relevant to me because I don't have Sophos installed. I've tried Single User/Safe Mode but it just boots into normal mode, so I can't do a fsck -fy.
    ** /dev/rdisk0s2 (NO WRITE)
    Can't open /dev/rdisk0s2: Permission denied
    That value in bytes is exactly 128mb, so I suspect the problem lies with one of the invisible partitions that show up in iPartition and Disk Management under Windows, but not in Disk Utility. I have backups and I suspect the root of the problem is partitioning in iPartition after installing Boot Camp, but I've never had issues with this approach in the past so I'm wary of just giving up and reinstalling Windows again will be massive hassle because I no longer have a SuperDrive and last time it refused to install from USB.
    Anyone have any idea what's going on? It seems like the sort of issue Disk Utility should just handle, at least in Recovery mode, but it's not playing ball. It also doesn't seem like a massive problem since my files all look fine and performance is OK, so I'm reluctant to do anything major.
    I'll update with a shot of the drive in Disk Management from Windows in a few minutes, in case that sheds light on anything. Thanks!

    Similar issue here. I manually partitioned my hard disk for triple boot (using Gparted on Linux), then everything was just fine until I ran bootcamp, to do something as simple as create a boot USB.
    I get the same error as a result and have to work my way into booting, by resorting first to a Linux live USB, then restarting from the live USB, to finally reach my rEFInd boot manager, or whichever boot manager should be initialized at startup.
    I suppose that the cause in my case is that some operation "scratched" the protective MBR. See this:
    http://www.mactech.com/articles/mactech/Vol.23/23.03/APMtoGPT/index.html
    I am hoping to fix it using an external Yosemite installation media: see this guide -
    http://www.macworld.com/article/2367748/how-to-make-a-bootable-os-x-10-10-yosemi te-install-drive.html
    And as a last resort to reinstall.
    I'll admit I am negatively surprised. I need this computer for professional reasons, and for the sake of "preserving the integrity of OSX", measures defined by Apple instead tend to make partitions far easier to damage. And this problem seems to affect a number of users.
    As for what I have to go through to fix it: a 5GB download, during which I have to register my credit card to the Apple Store. "Pay first, get your free software next."
    IF Disk Utility can fix it, from the external media, then fair enough. The hassle is unpleasant but it files as "a choice".
    Otherwise you can file it safely under software design calamity.

  • Data Partitioning in Database

    Hi All,
    I have little bit confuse in data partitioning in database, I have read about it and i understand that there ate two type called vertical partitioning and another horizontal partitioning...
    I have three questions are
    1- is data partitioning used of in networks or can be in one PC?
    2- the data partitioning divided data that in table to partitions (groups) , according what ??? is to quantity or meaning of data that inside table?
    3- Is clustering that can be execute by Oracle using CTX_CLS.CLUSTERING type of it or partitioning not related to it?
    Please let any one give short answer about it.
    regards
    Dheya

    973907 wrote:
    I have little bit confuse in data partitioning in database, I have read about it and i understand that there ate two type called vertical partitioning and another horizontal partitioning...These are basic partitioning concepts. Vertical means taking something like a single 100 column row table, and splitting it up into 10 partitions/tables with 10 columns each (plus pk of course).
    Horizontal partitioning means taking a table like a year's invoices, and splitting that into 365 daily partitions, where each partition contains the invoice rows of for a specific day of the year.
    There is also other partitioning concepts like application partitioning, network partitioning (which happens to be a bad thing) and so on.
    I have three questions are
    1- is data partitioning used of in networks or can be in one PC?Neither. Database partitioning happens inside the database. The database uses different structures for storing data. It used hash tables, index organised tables, B+trees, bitmap indexes and so on. Partitioning is just another type of data structure, used by the database, for storing and managing data.
    2- the data partitioning divided data that in table to partitions (groups) , according what ??? is to quantity or meaning of data that inside table?That depends on the type of partitioning used. Oracle supports list, hash and range partitions. Each of these uses a different algorithm to determine what data goes into which partition. Each of these satisfy different partitioning requirements.
    3- Is clustering that can be execute by Oracle using CTX_CLS.CLUSTERING type of it or partitioning not related to it?Partitioning is a physical data structure and transparent to the user and application. The user and app see table EMPLOYEES. They do not need to know or understand the physical structure of the table. The table can be a hash table, an index organised table, a hash partitioned table - and the user and app will not even know that. It does not change the way the user and app uses the table, it does not make a difference to their SQL statements on the table.
    CTX_CLS is an interface for classifying text data/documents. It uses its own data structures to do that. It calls a collection of related text data, a cluster.
    This has nothing to do with the Oracle Partitioning Option feature.

  • Tutorial - How to triple boot OSX, Linux and Windows 8.1 with a shared Data Partition without any third party Win / OSX softwares

    This is not a question, but rather a personal guide that has proved to be running successfully.
    I would like to thank numerous sources, including Christopher Murphy's suggestions at:
    Re: Repairing Boot Camp after creating new partition
    Before proceeding, there are certain concepts needs to know:
    Why Boot Camp does NOT allow further partitioning of drives after Windows has installed?
    Answer: Because the way Apple configures the Mac to be recognized as non UEFI capable system on Windows.
    Quote from Christopher Murphy based on the above line:
    However, Windows on Macs right now use CSM-BIOS mode in Mac firmware that presents BIOS to Windows rather than EFI. Windows thinks it's on a BIOS computer, and therefore mandates the use of MBR for boot disks, rather than GPT. So that's why we have this hybrid MBR+GPT approach on Mac with Windows on it. You inherit the limitations of MBR, which is four primary partitions.
    So what does it means?
    It means that OSX + EFI + Recovery HD + Boot Camp partition = 4 primary partitions and thus any attempt to modify the disk will render booting issues of either system.
    For more info on GPT (GUID Partition Table disks VS Master Boot Record or MBR in short, you may visit: http://msdn.microsoft.com/en-us/library/windows/hardware/dn640535%28v=vs.85%29.a spx)
    So, how to overcome it?
    The general guideline is to install ALL GPT ready OS first then create a Data partition, before installing Windows (Which is again, NOT supported GPT due to EFI configuration by Apple where end-users are not able to modify it).
    Interestingly, since Mac Pro 2013 Late supports only Windows 8 and above, thus it is not known if this CSM-BIOS applies to it or not.
    Do take note that GPT disks in Windows can only be booted when the system meets the 2 requirements:
    http://msdn.microsoft.com/en-us/library/windows/hardware/dn640535%28v=vs.85%29.a spx#gpt_faq_win7_boot
    1) Windows x64 version (Which is a must for newer Macs. If you cannot go to Boot Camp 5, then you need Windows 7 x86 or 32bit version)
    2) UEFI system. However, Windows sees all Macs (With the possibility of Mac Pro 2013 Late is an exception. To be determined) as BIOS, or rather NON-UEFI system.
    In short, booting on GPT disks is not possible for Mac in Windows.
    Summary,
    It is tested that a combination of the following will not work:
    - OSX + Windows + Linux
    - Windows + OSX + Linux
    - Windows + Linux + OSX
    Usually it can create the system un-bootable or OSX refused to install due to the system does not recognize such partitions and / or Disk Utility refused to format a free space. An example screen-shot is provided below:
    The error message is shown as
    Title: "Failed to erase volume" Message: "Failed to wipe volume, as an error occurred: MediaKit has reported that the device does not have enough free space to execute the requested operations."
    The second thing is about the preparations we need.
    1) 1X Windows 7 or 8 DVD or USB thumbdrive
    1A) If you uses a DVD to install, you will need another thumbdrive to load the BootCamp drivers for Windows as well as may requires an external DVD drive for newer Macs
    2) 1X Linux DVD of your choice. Personally I choose Fedora 20.
    So ready? Let's go.
    1. Using Disk Utility, shrink the OSX's partition size to what is needed. For me, I give OSX 150GB. Do NOT create any new partition.
    Disk Utility should see something like below whereby only OSX partition is left with desired disk space. The remaining space are to be unused disk space for the moment.
    Note: Click on the top most item that should start with the size of your HDD / SSD. Then clicked on "Partition" and specify the desired OSX size. Hit "Apply" after that.
    2: Download Boot Camp drivers only via Boot Camp Assistant. The USB thumbdrive shall be used later after Linux's installation.
    Boot Camp Assistant should see this:
    I have only selected "Download latest Windows Support Files from Apple"
    3. Insert Linux DVD, reboot Mac into EFI mode (The left most first "EFI mode").
    Note 1: Before rebooting, please plugged in an Ethernet adapter because Wi-Fi drivers is not installed.
    Note 2: For Thunderbolt adapters, it must be plugged in before reboot as hot-swapping is not supported under Linux. More on the tips at the end of this article.
    Note 3: Press and hold "Option" after the screen turns black. Release Option key after you see the image as below:

    For the unfortunate part that did not make it on time to edit the images:
    9. Install the Windows Support software from your CD/USB drive to gain full functionality of your computer. Reboot and go to Windows again.
    Note 1: You may choose to eject disc at this point of time. For Apple SuperDrive users, you will need to wait until the drivers (i.e. Boot Camp support files) is installed and rebooted before ejecting is reasonably possible (As I failed to figured out how to right click without the drivers)
    Note 2: Unlike Windows 7 on KBase article TS4599 Keyboard/trackpad inoperative, black screen, or alert messages when installing Windows 7, USB stick can be plugged in after the Windows installation is done. This is because Windows 7 (And probably Windows 7 with SP1 DVD) does not have a built in USB 3 drivers when it was released back in 2009 where USB3 has not arrived then.
    Note 3: Due to TPM, Bitlocker is not supported without the use of thumbdrives.
    10. Using Disk Management to determine the given drive letter for the DATA partition (DO NOT DELETE and RECREATE partition or else you can goodbye to booting Linux and OSX). Disk Management will not allow you to format it as exFAT / FAT32 in graphical way.
    Note: You may remove or modify some of the disk letters in Disk Management. However, do NOT remove / modfify the drive letter for the partition with 200MB size in HFS. This is because it will disallow booting of Linux and neither could Windows nor OSX can do anything EXCEPT to reinstall Linux only.
    11. Open Command Prompt in Administrator Mode (Important!!), and key in the following command:
    format F: /FS:exFAT
    Give this volume a label after it has successfully formatted before hitting "Enter" again.
    Note: Mine Data partition was assigned as F drive. Please make necessary adjustment to "F:" should your Data partition is assigned to other letters.
    12. After that, Setup your Data partition structure as you like.
    Tip: Minimally create the important folders such as:
    - Music
    - Documents
    - Movie (Videos)
    - Downloads
    - Pictures
    All these folders are commonly used by the 3 OSes. I do NOT recommend changing of /home (OSX and / or Linux) and / or user home directory (Windows) either partially or as a whole.
    This is because of compatibility issue.
    On a side note, iTunes Media Library used in OSX and Windows are NOT able to be use interchangably due to hard-coded path used.
    13. Useful troubleshooting in Fedora / Linux:
    With references to these:
    http://chaidarun.com/fedora-mbp
    http://anderson.the-silvas.com/2014/02/14/fedora-20-on-a-macbook-pro-13-late-201 3-retina-display/
    http://unencumberedbyfacts.com/2013/08/16/linux-on-a-macbook-pro-101/
    I would like to highlight a few important points:
    1) Wi-Fi driver:
    http://rpmfusion.org/Configuration
    Note 1: The sound driver should be installed at Out of Box Experience. However, the Wi-Fi is not.
    Note 2: Install both free and non-free repository. By the way, some other software like VLC can only be found after the Free Repository is installed.
    Search for "akmod-wl" in Gnome-Package-Installer in order to install Wi-Fi drivers
    Note 3: For those who do not have Ethernet adapters and their Mac does NOT have a built-in Ethernet port, it is recommended to get one. This is because Fedora 20 does not have a good support for iPhone USB tethering. Unsure for Andriod / Blackberry / Windows Phone users.
    2) Grub Menu:
    It will show several options to boot into OSX, even of the capability to boot into x86 or x64 mode. However, neither of them is bootable except Linux and the rescue.
    Hence, it is recommended to remove the items by hand in this file:
    /boot/efi/EFI/fedora/grub.cfg
    Command to be used:
    "sudo gedit /boot/efi/EFI/fedora/grub.cfg"
    Parts to be removed:
    - For any extra kernels, delete the target entry by locating the line "menuentry" under "/etc/grub.d/10_linux" sector to one line above the next "menuentry".
    It is recommended to keep one main kernel, and one recovery at the minimal.
    - For other OS, delete all the entry (Since neither it can works) under "/etc/grub.d/30_os-prober" sector without removing the lines starts with ###.
    Auto Mount exFAT partition:
    - After installing extra packages for exFAT support (Since it is not supported by Fedora 20 from a default installation), you may wish to edit "/etc/fstab" in order to mount the exFAT partition during boot time.
    Command to be used:
    "sudo gedit /etc/fstab"
    Add the following line in gedit:
    UUID=702D-912D /run/media/Samuel/DATA                   exfat    defaults        1 2
    Note 1: For DATA partition, OSX & Boot Camp partition, Fedora defaults mounts under: "/run/medua/<Username with case sensitive>/<Partition Label Name>"
    Note 2: UUID is unique ID. You can find out the UUID by:
    Step 1: First determine the DATA partition number:
    "sudo gdisk /dev/sda"
    Step 2: Determine the UUID of this partition number:
    "sudo blkid /dev/sda8"
    Reference 1: http://manpages.courier-mta.org/htmlman5/fstab.5.html
    Reference 2: http://liquidat.wordpress.com/2007/10/15/short-tip-get-uuid-of-hard-disks/
    3) Overheating CPU
    Solution is to issue the following command in Linux terminal: su -c "echo -n 1 > /sys/devices/system/cpu/intel_pstate/no_turbo"
    4) System resumes immediately after suspend
    Solution is to issue the following command in Linux terminal: su -c "echo XHC1 > /proc/acpi/wakeup"
    5) What does not works well out of box:
    - Both GNOME and KDE's fonts are too small to be readable for out of box experience. Additional configuration is a need. (Some of the info can be found on "More Tips" later)
    - Thunderbolt hotplugging is NOT supported under Windows and Linux so far. Neither FaceTime HD camera works as well.
    - The red light in Headphone jack is always on. I do not have luck in switching off the light without losing the sound.
    Note 1: It is determined that the module "snd_hda_intel" is used by both cards (HDMI and normal output)
    Note 2: It is also known that blacklisting it can switch off the redlight at the price of muting the system.
    Note: Based on this article, http://support.apple.com/kb/TS1574
    A Mac (Except Mac Pro) needs servicing when there is a red light while the system fails to detect internal speakers. However, this article does NOT applies to this issue.
    5A) More Tips:
    Install gnome-tweak-tool for more customization
    Search for: "gnome-package" to install:
    Install Gnome Package Installer for advanced package repository
    Install Gnome Package Updater for advanced updates to be install (Whereby Fedora's App Store alike might not show the relevant updates)
    14. Verify if disk is still GPT:
    Use Gdisk to determine if the disk is pure GPT:
    http://ubuntuforums.org/showthread.php?t=1742682
    Command: sudo gdisk -l /dev/sda (The entire hard drive)
    You should see the MBR is "Protective" instead of anything else.
    15. Congrats, the system is ready for triple boot. (I forgot to eject my Windows DVD when the photo was taken)
    Note 1: You cannot set the default startup disk in Linux due to the lack of Boot Camp Control Panel in Linux.
    Neither is changing startup disk recommended in Windows due to the inability to display correctly.
    For me, I click "Cancel" whenever I am on this tab (Feel free to make other Boot Camp adjustments in other tabs).
    Only OSX I know that can show the startup disk options correctly.
    Note 2: For some reason, OSX likes to auto mount the EFI partition everytime it boots up. It is not known to have any issue for ejecting other disks or mounting disks via Disk Utility.
    Note 3: It is not determined if any Firmware or System upgrades will cause issues. It is only known that all 3 OS's regular updates should not be an issue.
    System Updates excludes Mac OSX 10.9.3 updates to OSX 10.9.4 type as I had done it on a OSX 10.9.4 Mac or Windows 8.1 to Windows 8.1 Update 1 since my Windows DVD comes with Update 1.
    System Upgrades refers to OSX Mavericks to Yosemite, Fedora 20 to Fedora 21, Windows 8.1 Update 1 to Windows 8.2 / Windows 9 for that matter.
    Note 4: Reset SMC and / or PRAM will NOT affect your ability to boot any of the OS (OSX, Recovery HD, Fedora & Windows 8)
    Yup, that is it!

  • Recovery disk Creator & data partition won't work - Satellite L300

    My niece asked me to re-install her Toshiba Satellite L300 laptop, because the windows installation is rather buggy. She didn't have a recovery disk. Using Toshiba's Recovery Disk Creator I tried creating a recovery disk.
    However, the program wouldn't start. Checking the directory of the program, it would seem that the program simply isn't there. Afterwards, I checked the data partition of the laptop.
    There was a map with HDD recovery. However when using Windows' advanced boot (F8 before Windows startup) there was no choice of repairing the notebook. They only choices were the standard windows options (Save mode, normal start, etc.).
    In short, it seems impossible to re-install the notebook with the current information at hand.
    What would be the next course of action? Is it possible to order a recovery CD from Toshiba?
    Another niece has the same notebook, would it be possible to use that notebook to create a recovery disk?
    I'll appreciate and look forward to your reactions.

    Hi
    It looks like something has been changed on the HDD
    However, fact is youve no Recovery disk and you cannot use HDD recovery option.
    This means you need to order a new Recovery disk from Toshiba.
    You can do this here:
    https://backupmedia.toshiba.eu/landing.aspx
    PS: one tip if you would use a search option of this forum, you would find the right answer too ;)

  • Lion 10.8.2 + Windows 8 + Shared exFAT data partition

    Greetings!
    I have a Macbook Pro 13 inch mid-2012 model that I self upgraded to 1TB HDD and 16GB RAM. The system runs flawlessly and VMWare is also fully functional for my basic needs on Windows. However I am at the point that I NEED BOOTCAMP, and VM is not an option for some of my needs.
    Here is what I want to achieve, I have read numerous forums but entries either were somewhat dated, or did not have enough details on ALL the 3 aspects I mentioned above in the subject. Here is my plan, I would like to hear suggestions from the experts on this subject matter: I would basically like to have 3 partitions, 1 for OSX (100GB), 1 for Windows 7/8 (bootcamp, 100GB), and 1 for my user folder (remaining space, about 700GB+) which I intend to share between the 2 OS's.
    Here is what I already know:
    - I have to delete the recovery partition otherwise Windows will complain having more than 4 partitions on the boot drive (EFI, and the 3 others I mentioned). I am fine with loosing the reovery partition
    - I know only exFAT is the format supported "natively" for BOTH read's and write's by OSX as well as Windows 7/8.
    - I got some tutorials about somewhat convoluted and no so clean instructions on how to actually get the stuff installed, I am ready to take on the challenge and have backups etc so do not mind taking the risks
    Here is what I want your advice on:
    - Does exFAT perform well enough (as compared to HFS/NTFS on the same physical spinning drive I mean). Has anyone done something like this and if any suggestions
    - Is it possible to get files corrupted while sharing the data like this between the 2 OS's
    - Is creating the data partition as NTFS and installing some native NTFS I/O handler on OSX a better option if your experience on the above 2 is somewhat negative
    - Anything else that I should be aware of?
    Many thanks in advance,
    Kaushik

    Since yours is a newer machine, you have Internet Recovery, command option r held at boot up.
    You need a Ethernet connection preferably, use Disk Utility to select the entire drive and erase with the middle selection and wait, it will take some time and map off any potential bad sector it discovers for a more reliable drive.
    Next head to Partitions and click the box and set 3, option: GUID, adjust them to size, format the first partition OS X Extended journaled, name Macintosh HD. The second one exFAT and the last one MSDOS, name  BOOTCAMP.
    Install OS X into Macintosh HD partition, quit and setup. It will likely balk at you and say no Filevault or Recovery HD partition.
    Follow the method to install Windows from disk, as you know the BOOTCAMP partition needs to be changed to NTFS by the Windows installer disk before it can install Windows.
    Also follow the BootCamp drivers install from Apple.
    https://www.apple.com/support/bootcamp/
    Use Cabon Copy Cloner to clone the OS X partition to one blank external drive and WinClone to clone the BootCamp partition to another drive.
    EFI partition
    Macintosh HD partition 100GB
    ExFAT partition 700GB
    BOOTCAMP 100GB

  • Partitioning - best way 500gb drive, 3 Linux OS's and a data partition

    Hi All
    This morning I killed my laptop. No, it wasn't Windows that annoyed me, I was watching the Rugby and wasn't really concentrating. It was 7am kick off though. Anyway, I have decided to completely rebuild the system, and as an interim measure have installed Ubuntu (cos it is simple and quick to install - btw Oneiric is actually not bad at all).
    Now, to the question. I have a 500gb hard drive on my laptop. I ideally would like:
    1) Essential - data partition of about 80Gb or so. I want this so that I can point Dropbox, Videos, etc. at this.
    2) Essential - Arch as the main system.
    3) Not really essential - Ubuntu - I do like Ubuntu, and besides i find it convenient to use one Dropbox account on Arch and one on Ubuntu. Ideally I would like to be able to use both on Arch but...
    4) Would like - CentOS or Scientific Linux. Essentially a RHEL lookalike. It's not really necessary but it would look better on my cv or whatever. Problem here being that CentOS et al use LVM.
    No Windows to complicate things.
    What I guess I'm really asking is what order to create the partitions and a suggested layout. I figure on giving a big chunk to the data partition, and then pointing all of the other systems at Documents, Video, Music etc. on the data partition. Whatever OS's I install I just want them to work along with each other, and essentially home (apart from settings) will be on the data partition, i.e. Videos, Music etc.
    Any suggestions welcome, particularly in terms of what to install first, second etc. Should the data partition be at the start or end of the drive? One swap partition? By the way my laptop has 3Gb ram.
    Thanks
    Rich
    Last edited by RichAustin (2011-09-18 16:39:24)

    DJQuiteFriendly wrote:The most convenient option (in my opinion) would be mounting your data partition to /home. This way, you could carry your configuration files for apps across distros, if you so choose. Your swap partition would probably only be useful to you if you want to hibernate because you have 3 gigs of ram already. I have 4 gigs on my laptop and I only went above 1 or 2 when I had tons of apps open at the same time. I haven't checked, but I imagine it's less for Arch. If you want to be able to hibernate, it has to at least be the size of your ram. Your root partitions for the distros should be 15-20gb each.
    Good point about Swap. I wouldn't mount the data partition as /home because of the possibility of different OS's screwing up the settings. However, I do point the .thunderbird folder at the data partition though because it makes it one heck of a lot easier to keep contacts etc. synchronised across distro's. Not sure this approach would work with everything though. Why on earth haven't Mozilla written a decent method of synching Thunderbird?
    tooke wrote:
    As for a layout, here's what I would do:
    /dev/sda1 - extended partition to hold everything else
    /dev/sda5 - data partition
    /dev/sda6 - arch, 15 GB
    /dev/sda7 - ubuntu, 15 GB
    /dev/sda8 - centOS/scientific/whatever, 15 GB
    /dev/sda9 - swap, 4 GB
    I had a similar layout in mind to this. Thanks for the suggestions.
    Rich

  • X200 - Windows 7 - Data partition

    I hope this message will be helpful. Our X200 we just bought with Windows 7 (32-bit) had only one C partition for the system, the programs and the data. I wanted to create a new D partition for data. Unfortunately, it was impossible to do it with the Windows 7 integrated disk managing tool: I was not able not reduce the C partition under 98 Go, and my D partition was only around 50 Go. The reason invoked was that some files could not be moved (I wonder if those files would not be generated by the Lenovo "Restore and Recovery " program, but I am not certain).
    I found the solution with the Easeus tool which worked perfectly. Prior using it, I came back to the initial situation with the only one C partition using Windows 7 tool. Afterwards, I performed a scandisk and a defragmentation just to ensure that the partition was in good shape. Then I created the D partition and adjusted the size of C (around 50 Go) and D (around 100 Go) with the graphical interface. Easeus asked for restarting the computer, and made what it had to make when the computer started again.
    I was a bit anxious, but the computer has really been working fine for now more than one week (programs installation, frequent use, etc.).
    Like other manufacturers like Fujitsu, Lenovo should provide an option for creating a data partition.
    I found this solution on the temporary Windows 7 forum, and promised to myself to give a feedback to the X series community. 

    Have you been able to solve this?
    I'd be curious to hear from other X200 owners running Win 7, do you have any issues with the fan?

  • Query based on date partition

    Hi,
    I am trying to output only a successful job during the past 24 hrs of each day. If there is job that has an outcome of a success and a failure within the last
    24 hrs for each day, I want to only output the successful one. If there are no success for the same job, I will output the last attempted failed job.
    Here are my columns:
    current output:
    JOB_ID     JOBDATE               GROUP     PATH          OUTCOME          FAILED     LEVEL     ASSET
    3400908     7/27/2012 10:01:18 AM     polA     target1          Success          0     incr     clone1
    3400907     7/27/2012 10:01:09 AM     polA     target1          Failed          0     incr     clone1
    3389180     7/23/2012 10:01:14 AM     polA     target1          Failed          1     incr     clone1
    3374713     7/23/2012 10:01:03 AM     polA     target1          Success          0     incr     clone1
    3374712     7/22/2012 11:24:32 AM     polA     target1          Success          0     Full     clone1
    3367074     7/22/2012 11:24:00 AM     polA     target1          Failed          1     Full     clone1
    3167074     7/21/2012 10:01:13 AM     polA     target1          Success          0     incr     clone1
    336074     7/21/2012 10:01:08 AM     polA     target1          Success          0     incr     clone1
    desired output:
    JOB_ID     JOBDATE               GROUP     PATH          OUTCOME          FAILED     LEVEL     ASSET
    3400908     7/27/2012 10:01:18 AM     polA     target1          Success          0     incr     clone1
    3374713     7/23/2012 10:01:03 AM     polA     target1          Success          0     incr     clone1
    3374712     7/22/2012 11:24:32 AM     polA     target1          Success          0     Full     clone1
    3167074     7/21/2012 10:01:13 AM     polA     target1          Success          0     incr     clone1
    Here is a code I am trying to use without success:
    select *
    from
       (selectjob_id, jobdate, group, path, outcome, Failed, level, asset,
              ROW_NUMBER() OVER(PARTITION BY group, path, asset ORDER BY jobdate desc) as rn
                   from job_table where jobdate between trunc(jobdate) and trunc(jobdate) -1 )
       where rn = 1
       order by jobdate desc;Thanks,
    -Abe

    Hi, Abe,
    You're on the right track, using ROW_NUMBER to assign numbers, and picking only #1 in the main query. The main thing you're missing is the PARTITION BY clause.
    You want to assign a #1 for each distinct combination of group_id, path, asset and calendar day , right?
    Then you need to PARTITION BY group_id, path, asset and calendar day . I think you realized that when you named this thread "Query Based *on date partition* ".
    The next thing is the analytic ORDER BY clause. To see which row in each partition gets assigned #1, you need to order the rows by outcome ('Success' first, then 'Failed'), and after that, by jobdate (latest jobdate first, which is DESCending order).
    If so, this is what you want:
    WITH     got_r_num     AS
         SELECT  j.*     -- or list columns wanted
         ,     ROW_NUMBER () OVER ( PARTITION BY  group_id     -- GROUP is not a good column name
                                   ,                    path
                             ,             asset
                             ,             TRUNC (jobdate)
                                   ORDER BY          CASE  outcome
                                                 WHEN  'Succcess'
                                         THEN  1
                                         ELSE  2
                                             END 
                             ,             jobdate     DESC
                           )      AS r_num
         FROM    job_table  j
         WHERE     outcome     IN ('Success', 'Failed')
    --     AND     ...     -- Any other filtering, if needed
    SELECT     *       -- or list all columns except r_num
    FROM     got_r_num
    WHERE     r_num     = 1
    ;If you'd care to post CREATE TABLE and INSERT statements for the sample data, then I could test it.
    It looks like you posted multiple copies of this thread.  I'll bet that's not your fault; this site can cause that.  Even though it's not your fault, please mark all the duplicate versions of this thread as "Answered" right away, and continue in this thread if necessary.
    Edited by: Frank Kulash on Jul 28, 2012 11:47 PM
    This site is flakier than I thought! I did see at least 3 copies of this same thread earlier, but I don't see them now.

  • V570 - Has too many partitions - Can I nuke one? I need a separate Data Partition!

    Hi,
    I convinced a Buddy to buy a V570 two days ago. (I've used a Lenovo Laptop for work for a year, and it's been rock solid.) The box was delivered to his house a few hours ago. He lit it up and put his name on it, and then brought it to me, as I help his family out with their computers. (Our Wives are best friends.) I'm a bit geeky and usually know my way around these boxes. But I'm a little stumped on this one.
    Normally on laptops they come with tons of bloatware, and it's usually faster to go up to the OEM's site, download all the latest drivers and  utilities, then back up the original image before blowing it away, and installing a fresh Windows OS. One of the other main issues is most lappys have one big partition for the OS and Data. So if you get a Trojan or virus => it can nuke all of it. So I always divide the drive, and have a Data partition, so you don't lose everything if (when) something nasty occurs. 
     But in this case the Box really doesn't have too much bloatware, so I thought make the Factory backup disks, then uninstall the few unwanted programs, partition the C Drive, and create a Data drive in that space. I didn't even look at the hidden partitions so when I went to Create the Data partition I was warned Windows 7 64 Pro doesn't support more than 4 partitions on the operating system drive! If I go into Disk Management I see the typical small Win7 recovery 200 MB partition, a 654 GB C  partition, a empty (?) 29 Gig Lenovo partition, and a 14.75 OEM partition. I'm used to the first 2 partitions but what's the rational for the last two from lenovo? One is the "factory" image, and I assume it's the OEM partition, so what's the Lenovo partition for? Can I shrink C, and enlarge the Lenovo partition, so it can become the Data Drive =>  without affecting the lenovo drives function?
    I thought I may have to go with the new Windows install but I can find all the drivers /utilities software at the Lenovo Sites. So I'm a bit stumped and would appreciate your help.
    Thanks for the assist.
    Regards,
    -Jim-

    Jim,
         In one word, no.
         I would strongly advise you to just leave it alone, unless you want to spend hours on the phone to your friend, trying to fix all the problems your friend will encounter, with his "new" modded system.
         Please, I'm not trying to be nasty, or unkind. Those 4 partitions are the key to Lenovo's One Key Recovery. Lenovo has spent a lot of time, and engineering to make their systems as user friendly, and trouble free as possible. They built in the Enhanced Experience 2.0, and customized the Windows 7 software for fast booting. Just because you "can"  repartition the drive, doesn't mean you "should".
         These forums are filled with users who messed around with their drive structure, used a modded BIOS, or just plain screwed up their programs and hardware, just because they "could". Then they want some urgent help for their machines that went wacky. The moderators on these sites have a hard enough job, keeping track of the various systems "as shipped", to do any troubleshooting on those systems that the user has repositioned the drive, or deleted the programs that Lenovo has included for recovery.
         As you've said, there's not a lot of bloatware on Lenovo's machines. You shouldn't have to reload a "fresh Window OS". If you do, some of the Lenovo's Enhanced Experience 2.0 for Win 7, and some other functions will be toast. That's why you don't see all of the Windows drivers on their site. Lenovo only includes the drivers that have been modified for your V570. Stick with them.
         So, in the end, yeah you can mess with the partitions, but you shouldn't. See this thread to know what you are getting in to, and be ready for your friend's late night phone calls.
    http://forum.lenovo.com/t5/IdeaPad-Y-U-V-and-Z-series/new-disk-partioning-and-one-key-recover-featur...
    DragonRider
    I'm DO'ing IT
    Lenovo Y470 085525U 2nd generation Intel® Core™ i7-2630QM processor ( 2.00GHz 1333MHz 6MB )
    IdeaCentre A520 Intel® Core™ i5-3230M processor ( 2.60GHz 2600MHz 3MB )
    YOGA Tablet 2 Pro-1380F
    X1 Carbon 2nd Gen (20A8) ThinkPad + T420

  • Can't expand my data partition even though there's free space on the drive

    Hi there
    I recently purchased a 120gb SSD to put in my mac mini. In preparation for this, I created a second partition on my drive as a data drive where I will store things in order to make a time machine backup with the 120gb drive. Everything went as planned, except now, I cannot expand my data partition to use the whole disk. Below is a screen capture of what I'm talking about:
    To accomplish putting my OS on only 120GB of hard drive, I've made symbolic links for most of the folders in my ~/ folder
    This is what the ~/ Folder looks like on my Macintosh HD partition
    This is where these files are actually located
    As far as I can gather, the only way I can combine these partitions now is to re-format the entire drive, which as you can see would cause me many problems.
    Does anyone know how to expand a partition "upwards" for lack of a better term? I'm fairly new to Mac, so any help would be appreciated
    Thanks!

    Unfortunately, there is no way to expand the partition upwards. As you noted, you would need to either start afresh, or simply find a good use for the first partition.

  • Multiple LDAP Servers and Attribute-Based Data Partitioning

    Hello
    We currently want to implement following szenario on Netweaver 2004s. From the
    following SAP Help documentation we want attribute based data partitioning:
    http://help.sap.com/saphelp_nw70/helpdata/EN/4e/4d0d40c04af72ee10000000a1550b0/frameset.htm
    The difference to the SAP document is that we want a distribution of attributes over
    multiple LDAP servers. So we tried to fit that concept into xml. see attached xml source.
    The Portal finds both LDAP Systems but it is NOT that the useres are beeing merged
    but they appear as two distict users in the portal UME. If you do a lookup in the portal
    usernamagent system you get and see two users.
    User1: unique ID = USER.Datasource1.uid
    User2: unique ID = USER.Datasource2.uid
    Obviously the UME system was not able to merge that information of the two distict
    LDAP Systems. MSADS and Lotus Notes.
    Hence my questions:
    1) is it possible to distribute attributes over multiple ldap data sources
    2) any ideas why UME constructs two different users based in Datasource ID's specified in XML
    Thanks for any contributions or ideas,
    Ulrich Scherb
    <?xml version="1.0" encoding="UTF-8"?>
    <dataSources>
        <dataSource id="PRIVATE_DATASOURCE"
                    className="com.sap.security.core.persistence.datasource.imp.DataBasePersistence"
                    isReadonly="false"
                    isPrimary="true">
            <homeFor>
                <principals>
                     <principal type="group"/>
                     <principal type="user"/>
                     <principal type="account"/>
                    <principal type="team"/>
                    <principal type="ROOT" />
                    <principal type="OOOO" />
                </principals>
            </homeFor>
            <notHomeFor/>
            <responsibleFor>
                <principals>
                     <principal type="group"/>
                     <principal type="user"/>
                     <principal type="account"/>
                    <principal type="team"/>
                    <principal type="ROOT" />
                    <principal type="OOOO" />
                </principals>
            </responsibleFor>
            <privateSection>
            </privateSection>
        </dataSource>
        <dataSource id="NOTES_LDAP"
              className="com.sap.security.core.persistence.datasource.imp.LDAPPersistence"
              isReadonly="true"
              isPrimary="true">
              <homeFor/>
              <responsibleFor>
                   <principal type="account">
                        <nameSpace name="com.sap.security.core.usermanagement">
                             <attribute name="j_user"/>
                             <attribute name="logonalias"/>
                             <attribute name="j_password"/>
                             <attribute name="userid"/>
                        </nameSpace>
                       <nameSpace name="com.sap.security.core.authentication">
                            <attribute name="principal"/>
                       </nameSpace>
                   </principal>
                   <principal type="user">
                        <nameSpace name="com.sap.security.core.usermanagement">
                             <attribute name="firstname" populateInitially="true"/>
                             <attribute name="lastname" populateInitially="true"/>
                             <attribute name="email"/>
                             <attribute name="uniquename" populateInitially="true"/>
                        </nameSpace>
                        <nameSpace name="$usermapping$">
                             <attribute name="REFERENCE_SYSTEM_USER"/>
                        </nameSpace>
                   </principal>
              </responsibleFor>
              <attributeMapping>
                   <principal type="account">
                        <nameSpace name="com.sap.security.core.usermanagement">
                             <attribute name="j_user">
                                  <physicalAttribute name="uid"/>
                             </attribute>
                             <attribute name="logonalias">
                                  <physicalAttribute name="uid"/>
                             </attribute>
                             <attribute name="j_password">
                                  <physicalAttribute name="unicodepwd"/>
                             </attribute>
                             <attribute name="userid">
                                  <physicalAttribute name="*null*"/>
                             </attribute>
                        </nameSpace>
                       <nameSpace name="com.sap.security.core.authentication">
                            <attribute name="principal">
                                 <physicalAttribute name="uid"/>
                            </attribute>
                       </nameSpace>                    
                   </principal>
                   <principal type="user">
                        <nameSpace name="com.sap.security.core.usermanagement">
                             <attribute name="firstname">
                                  <physicalAttribute name="givenname"/>
                             </attribute>
                             <attribute name="lastname">
                                  <physicalAttribute name="sn"/>
                             </attribute>
                             <attribute name="uniquename">
                                  <physicalAttribute name="uid"/>
                             </attribute>
                             <attribute name="loginid">
                                  <physicalAttribute name="*null*"/>
                             </attribute>
                             <attribute name="email">
                                  <physicalAttribute name="mail"/>
                             </attribute>
                        </nameSpace>
                        <nameSpace name="$usermapping$">
                             <attribute name="REFERENCE_SYSTEM_USER">
                                  <physicalAttribute name="sapusername"/>
                             </attribute>
                        </nameSpace>
                   </principal>
              </attributeMapping>
            <privateSection>
                   <ume.ldap.access.server_type>MSADS</ume.ldap.access.server_type>
                   <ume.ldap.access.server_name>ldap1</ume.ldap.access.server_name>
                   <ume.ldap.access.server_port>389</ume.ldap.access.server_port>
                   <ume.ldap.access.authentication>simple</ume.ldap.access.authentication>
                   <ume.ldap.access.user>xxxxx</ume.ldap.access.user>
                   <ume.ldap.access.password>xxxxx</ume.ldap.access.password>
                   <ume.ldap.access.base_path.user>O=SMT_TEST</ume.ldap.access.base_path.user>
                   <ume.ldap.record_access>TRUE</ume.ldap.record_access>
                   <ume.ldap.unique_uacc_attribute>uid</ume.ldap.unique_uacc_attribute>
                   <ume.ldap.unique_user_attribute>uid</ume.ldap.unique_user_attribute>
                   <ume.ldap.access.context_factory>com.sun.jndi.ldap.LdapCtxFactory</ume.ldap.access.context_factory>
                   <ume.ldap.access.user_as_account>true</ume.ldap.access.user_as_account>
                   <ume.ldap.access.ssl_socket_factory>com.sap.security.core.server.https.SecureConnectionFactory</ume.ldap.access.ssl_socket_factory>
                   <ume.ldap.access.objectclass.user>person</ume.ldap.access.objectclass.user>
                   <ume.ldap.access.objectclass.uacc>person</ume.ldap.access.objectclass.uacc>
                   <ume.ldap.access.naming_attribute.user>cn</ume.ldap.access.naming_attribute.user>
                   <ume.ldap.access.auxiliary_naming_attribute.user>uid</ume.ldap.access.auxiliary_naming_attribute.user>
                   <ume.ldap.access.naming_attribute.uacc>cn</ume.ldap.access.naming_attribute.uacc>
                   <ume.ldap.access.auxiliary_naming_attribute.uacc>uid</ume.ldap.access.auxiliary_naming_attribute.uacc>
              </privateSection>
         </dataSource>
        <dataSource id="CORP_LDAP"
              className="com.sap.security.core.persistence.datasource.imp.LDAPPersistence"
              isReadonly="true"
              isPrimary="true">
              <homeFor/>
              <responsibleFor>
                   <principal type="account">
                        <nameSpace name="com.sap.security.core.usermanagement">
                             <attribute name="j_user"/>
                             <attribute name="logonalias"/>
                             <attribute name="j_password"/>
                             <attribute name="userid"/>
                        </nameSpace>
                       <nameSpace name="com.sap.security.core.authentication">
                            <attribute name="principal"/>
                            <attribute name="realm"/>
                            <attribute name="domain"/>
                       </nameSpace>
                   </principal>
                   <principal type="user">
                        <nameSpace name="com.sap.security.core.usermanagement">
                             <attribute name="firstname" populateInitially="true"/>
                             <attribute name="displayname" populateInitially="true"/>
                             <attribute name="lastname" populateInitially="true"/>
                             <attribute name="fax"/>
                             <attribute name="title"/>
                             <attribute name="department"/>
                             <attribute name="description"/>
                             <attribute name="mobile"/>
                             <attribute name="telephone"/>
                             <attribute name="streetaddress"/>
                             <attribute name="uniquename" populateInitially="true"/>
                        </nameSpace>
                        <nameSpace name="com.sap.security.core.usermanagement.relation">
                             <attribute name="PRINCIPAL_RELATION_PARENT_ATTRIBUTE"/>
                        </nameSpace>
                        <nameSpace name="$usermapping$">
                             <attribute name="REFERENCE_SYSTEM_USER"/>
                        </nameSpace>
                   </principal>
                   <principal type="group">
                        <nameSpace name="com.sap.security.core.usermanagement">
                             <attribute name="displayname" populateInitially="true"/>
                             <attribute name="description" populateInitially="true"/>
                             <attribute name="uniquename"/>
                        </nameSpace>
                        <nameSpace name="com.sap.security.core.usermanagement.relation">
                             <attribute name="PRINCIPAL_RELATION_MEMBER_ATTRIBUTE"/>
                             <attribute name="PRINCIPAL_RELATION_PARENT_ATTRIBUTE"/>
                        </nameSpace>
                        <nameSpace name="com.sap.security.core.bridge">
                             <attribute name="dn"/>
                        </nameSpace>
                   </principal>
              </responsibleFor>
              <attributeMapping>
                   <principal type="account">
                        <nameSpace name="com.sap.security.core.usermanagement">
                             <attribute name="j_user">
                                  <physicalAttribute name="samaccountname"/>
                             </attribute>
                             <attribute name="logonalias">
                                  <physicalAttribute name="samaccountname"/>
                             </attribute>
                             <attribute name="j_password">
                                  <physicalAttribute name="unicodepwd"/>
                             </attribute>
                             <attribute name="userid">
                                  <physicalAttribute name="*null*"/>
                             </attribute>
                        </nameSpace>
                       <nameSpace name="com.sap.security.core.authentication">
                            <attribute name="principal">
                                 <physicalAttribute name="samaccountname"/>
                            </attribute>
                            <attribute name="realm">
                                 <physicalAttribute name="*null*"/>
                            </attribute>
                            <attribute name="domain">
                                 <physicalAttribute name="*null*"/>
                            </attribute>
                       </nameSpace>                    
                   </principal>
                   <principal type="user">
                        <nameSpace name="com.sap.security.core.usermanagement">
                             <attribute name="firstname">
                                  <physicalAttribute name="givenname"/>
                             </attribute>
                             <attribute name="displayname">
                                  <physicalAttribute name="displayname"/>
                             </attribute>
                             <attribute name="lastname">
                                  <physicalAttribute name="sn"/>
                             </attribute>
                             <attribute name="fax">
                                  <physicalAttribute name="facsimiletelephonenumber"/>
                             </attribute>
                             <attribute name="uniquename">
                                  <physicalAttribute name="samaccountname"/>
                             </attribute>
                             <attribute name="loginid">
                                  <physicalAttribute name="*null*"/>
                             </attribute>
                             <attribute name="mobile">
                                  <physicalAttribute name="mobile"/>
                             </attribute>
                             <attribute name="telephone">
                                  <physicalAttribute name="telephonenumber"/>
                             </attribute>
                             <attribute name="department">
                                  <physicalAttribute name="ou"/>
                             </attribute>
                             <attribute name="description">
                                  <physicalAttribute name="description"/>
                             </attribute>
                             <attribute name="streetaddress">
                                  <physicalAttribute name="postaladdress"/>
                             </attribute>
                             <attribute name="pobox">
                                  <physicalAttribute name="postofficebox"/>
                             </attribute>
                        </nameSpace>
                        <nameSpace name="com.sap.security.core.usermanagement.relation">
                             <attribute name="PRINCIPAL_RELATION_PARENT_ATTRIBUTE">
                                  <physicalAttribute name="memberof"/>
                             </attribute>
                        </nameSpace>
                        <nameSpace name="$usermapping$">
                             <attribute name="REFERENCE_SYSTEM_USER">
                                  <physicalAttribute name="sapusername"/>
                             </attribute>
                        </nameSpace>
                   </principal>
                   <principal type="group">
                        <nameSpace name="com.sap.security.core.usermanagement">
                             <attribute name="displayname">
                                  <physicalAttribute name="displayname"/>
                             </attribute>
                             <attribute name="description">
                                  <physicalAttribute name="description"/>
                             </attribute>
                             <attribute name="uniquename" populateInitially="true">
                                  <physicalAttribute name="cn"/>
                             </attribute>
                        </nameSpace>
                        <nameSpace name="com.sap.security.core.usermanagement.relation">
                             <attribute name="PRINCIPAL_RELATION_MEMBER_ATTRIBUTE">
                                  <physicalAttribute name="member"/>
                             </attribute>
                             <attribute name="PRINCIPAL_RELATION_PARENT_ATTRIBUTE">
                                  <physicalAttribute name="memberof"/>
                             </attribute>
                        </nameSpace>
                        <nameSpace name="com.sap.security.core.bridge">
                            <attribute name="dn">
                                  <physicalAttribute name="*null*"/>
                             </attribute>
                        </nameSpace>
                   </principal>
              </attributeMapping>
            <privateSection>
                   <ume.ldap.access.server_type>MSADS</ume.ldap.access.server_type>
                   <ume.ldap.access.server_name>ldap2</ume.ldap.access.server_name>
                   <ume.ldap.access.server_port>389</ume.ldap.access.server_port>
                   <ume.ldap.access.authentication>simple</ume.ldap.access.authentication>
                   <ume.ldap.access.user>yyyyy</ume.ldap.access.user>
                   <ume.ldap.access.password>yyyyy</ume.ldap.access.password>
                   <ume.ldap.access.base_path.user>O=SMT_TEST</ume.ldap.access.base_path.user>
                   <ume.ldap.access.base_path.grup>O=SMT_TEST</ume.ldap.access.base_path.grup>
                   <ume.ldap.record_access>TRUE</ume.ldap.record_access>
                   <ume.ldap.unique_uacc_attribute>samaccountname</ume.ldap.unique_uacc_attribute>
                   <ume.ldap.unique_user_attribute>samaccountname</ume.ldap.unique_user_attribute>
                   <ume.ldap.access.context_factory>com.sun.jndi.ldap.LdapCtxFactory</ume.ldap.access.context_factory>
                   <ume.ldap.access.authentication>simple</ume.ldap.access.authentication>
                   <ume.ldap.access.flat_group_hierachy>true</ume.ldap.access.flat_group_hierachy>
                   <ume.ldap.access.user_as_account>true</ume.ldap.access.user_as_account>
                   <ume.ldap.access.dynamic_groups>false</ume.ldap.access.dynamic_groups>
                   <ume.ldap.access.ssl_socket_factory>com.sap.security.core.server.https.SecureConnectionFactory</ume.ldap.access.ssl_socket_factory>
                   <ume.ldap.access.objectclass.user>User</ume.ldap.access.objectclass.user>
                   <ume.ldap.access.objectclass.uacc>User</ume.ldap.access.objectclass.uacc>
                   <ume.ldap.access.objectclass.grup>Group</ume.ldap.access.objectclass.grup>
                   <ume.ldap.access.naming_attribute.user>cn</ume.ldap.access.naming_attribute.user>
                   <ume.ldap.access.auxiliary_naming_attribute.user>samaccountname</ume.ldap.access.auxiliary_naming_attribute.user>
                   <ume.ldap.access.naming_attribute.uacc>cn</ume.ldap.access.naming_attribute.uacc>
                   <ume.ldap.access.auxiliary_naming_attribute.uacc>samaccountname</ume.ldap.access.auxiliary_naming_attribute.uacc>
                   <ume.ldap.access.naming_attribute.grup>cn</ume.ldap.access.naming_attribute.grup>
              </privateSection>
         </dataSource>
    </dataSources>

    Hi Ulrich,
    Hope your problem is resolved. We are using EP7 and SP18. We are doing some study on your first issue. i.e. Distributing a user attribute into multiple LDAPs. Can you please let me know the feasibility? If yes, what are all step do I have to follow? Expecting your valuable answer. Thanks in advance!
    Regards,
    Kabali

  • Dual-booting with other Linuxes; shared data partition

    I've got two entirely-blank 320GB hard drives on my computer, and I'd like to dual-boot Arch and Debian on it (and potentially others later). How should I set up GRUB (or GRUB2-- the wiki says that it's a better option when dual booting with other distros) for each OS in order to have both of them able to boot, as well as retaining the capability of adding other distros? (Assuming that Arch's GRUB(2), not Debian's, will be installed to the MBR.)
    In addition, I'd like to keep my config files and data separate (with a shared data partition on HD 2).
    - What is the best way to set this up separately from the /home partition, i.e. mount /data on startup and be able to access it quickly from a filemanager or the commandline? I venture a guess that I'd edit /etc/fstab and add a symlink to /data within /home/USERNAME...
    - What is the right size for the /home partition in this setup?
    A tentative partition scheme is as follows (note that I have 4GB RAM, since that factors into swap size):
    HD 1
      4GB shared swap partition
      256MB ext3 Arch /boot partition
      20GB ext4 Arch / partition
      ? ext4 Arch /home partition *see note above*
      256MB ext3 Debian /boot partition
      20GB ext4 Debian / partition
      ? ext4 Debian /home partition *see note above*
      (free space)
    HD 2
      320GB shared ext4 data partition
    Last edited by DrKillPatient (2012-06-20 18:38:01)

    Most of it is a matter of opinion I think, but since I have a similar setup I'll throw in my two cents.
    DrKillPatient wrote:I've got two entirely-blank 320GB hard drives on my computer, and I'd like to dual-boot Arch and Debian on it (and potentially others later). How should I set up GRUB (or GRUB2-- the wiki says that it's a better option when dual booting with other distros) for each OS in order to have both of them able to boot, as well as retaining the capability of adding other distros? (Assuming that Arch's GRUB(2), not Debian's, will be installed to the MBR.)
    I use GRUB (legacy). Adding a distro in the grub menu is just a matter of finding the kernel and initram image of the distro and adding an entry. OS's generally either have a fixed location/name for the kernel and image or have a fixed link, so there are no problems on updates. I really don't like GRUB 2 and don't see the point of using it unless you are using something exotic that GRUB doesn't support.
    DrKillPatient wrote:I
    In addition, I'd like to keep my config files and data separate (with a shared data partition on HD 2).
    - What is the best way to set this up separately from the /home partition, i.e. mount /data on startup and be able to access it quickly from a filemanager or the commandline? I venture a guess that I'd edit /etc/fstab and add a symlink to /data within /home/USERNAME...
    - What is the right size for the /home partition in this setup?
    I just mount the data partition in /mnt/data and make symlinks from my home partition. In my case the data partition is ntfs, since I also use windows. My home partition contains 1.2 GB, of which 600 MB source code. So if you only keep configs in them it probably won't reach 1 GB.
    DrKillPatient wrote:
    I
    A tentative partition scheme is as follows (note that I have 4GB RAM, since that factors into swap size):
    HD 1
      4GB shared swap partition
      256MB ext3 Arch /boot partition
      20GB ext4 Arch / partition
      ? ext4 Arch /home partition *see note above*
      256MB ext3 Debian /boot partition
      20GB ext4 Debian / partition
      ? ext4 Debian /home partition *see note above*
      (free space)
    HD 2
      320GB shared ext4 data partition
    In my opinion a seperate boot partition is only useful for the OS of which the bootloader is installed to the MBR.

  • Best Solution for Backup of Dual System(Mac & Win7) and Data Partition

    I need a professional solution of backup my dual-system, which are Mac OS Mavericks and Windows 7, and a Data Paritition.
    Right now, I have three partitions: Bootcamp (for Win 7 system, NTFS), DATA (for both system files, FAT32), Macintosh HD (for mac os system, HFS).
    Before on PC machine, I may restore the system with Ghost Tool, but since now I am using Macbook Pro. Cannot do that way any more I think.
    Also, the annoying thing is DATA partition, if I make it a FAT32 format, some large files cannot be copied into, but if I make it a NTFS, Mac OS cannot regonize it, right?
    What about using exFAT format? Never use that before, actually. I heard that format can accept large files and also be regonized by Mac OS.
    To sum up, two advices needed. 1. Win 7 partition backup and restore w/o breaking Mac OS system; 2. DATA partition format for both system.
    Thanks a lot. I appreciate your help!

    Also, the annoying thing is DATA partition, if I make it a FAT32 format, some large files cannot be copied into, but if I make it a NTFS, Mac OS cannot regonize it, right?
    Use exFAT instead of FAT32.
    http://lifehacker.com/5927185/use-the-exfat-file-system-and-never-format-your-ex ternal-drive-again
    I don't know how to backup the Windows partitions.  For the OS X partition:
    Time Machine Basics: http://support.apple.com/kb/ht1427
    Most commonly used backup methods: 
    https://discussions.apple.com/docs/DOC-3045
    Methodology to protect your data.  Backups vs. Archives.  Long-term data protection:
    https://discussions.apple.com/docs/DOC-6031
    PlotinusVeritas gives some great suggestions for purchasing external hard drives in this thread:
    https://discussions.apple.com/thread/5602141?tstart=0

  • How To Move Recovery Partition in between System & Data Partition To Extend System Partition?

    Hello, I have recently purchase an ASUS S400CA Ultra Notebook and the hard drive has 1)EFI Partition & 3) Recovery Partitions with one of the recovery partitions being in between C:/ System & D:/Data partition. I am wanting to delete the D:/Data
    partition to extend and maximize the C:/ System partition, but I am not familiar with how to do so with this recovery partition in between them.
    Is there a way that I can move or copy the recovery partition that is in between C:/ & D:/ to the other side of D:\, delete the old recovery partition location and D:/ partition, then extend C:/ without destroying the recovery partition or any links,
    etc. for the recovery partitions???
    I do not want to delete any recovery partitions, only my D:/data partition because my C:/system partition is too small and I don't want to have to manually balance
    my data & programs between the 2 partitions!
    I just need to find a way that will allow me to move or copy this recovery partition that is in between C:/ & D:/ to the other side(right) of D:\, so I can delete its old recovery
    partition location and the D:/ partition, then extend C:/ without destroying the recovery partition and / or any links, etc. for the recovery partitions???
    I tried to provide a picture / screen shot of Disk Management, but the site wouldn't allow it because it needed to verify my account that I've had here for a long time! Go
    figure!

    Hi,
    To verify your account, please refer to
    http://social.msdn.microsoft.com/Forums/en-US/5a35b6c8-7a1a-4dc9-9b28-be69c55afb96/verify-your-account-13?forum=reportabug
    Meanwhile, please upload the screenshot.
    Regards,
    Kelvin Xu
    TechNet Community Support

Maybe you are looking for

  • Problem with display of files in remote server

    hi, i am trying to display to the files on a remote server using JTree. i am able to display local files and directories using JTree but i don't know how to display remote files. can anyone explain how to do it? Thank you, npaila

  • All in One Printer C5180 stopped printing/scanning from mac 10.6.8

    Hi My All-in-One C5180 has stopped printing and scanning from mac 10.6.8. It had worked for the past few years but after not using it for 8 months (out of country) it hasn't worked since I came back. I have done as a few suggested, carried out a soft

  • Payment Run Cancelled

    Dear Guru, When i execute payment run system gives the message that payment run has been cancelled. I checked in the error log which states that In the company code 440a, document number range 20 is missing for 2010.I checked the number range aswell

  • Ill CS6 not saving files properly

    When closing a file it will save the file without asking if you want to save changes. Have deleated the prefs. multi times. still doing it. Really messing me up with changes to my files that i don't want to save. Any help appricated. CPI Mac 33

  • Table for previous period stock

    Please provide me the table name or report from which I can get only quality stock in previous monht I just need the quality stock in previous month need a table