What happens to Existing index after table partition and created with local index

Hi guys,
desc part id  number, name  varchar2(100), salary  number
In an existing table  PART  i am  adding 1 more column DATASEQ NUMBER. i am asked to partition the table part based on dataseq.now the table is created with this logic
create table part( id  number, name  varchar2(100), salary  number, DATASEQ  number) partition by list(dataseq) (partition PART_INITIAL  values (1));
Suggestionn required. since  the table is partitioned based on DATASEQ i am asked to add local index on dataseq. i have added local index to dataseq create index idx on part(dataseq) LOCAL; Now my question is  already there is existing index is for the column ID and salary.
1)  IDX for  dataseq is created locally so that it will have partition on each partition on the main table. Please tell me what happens to the existing index on the column ID and salary.. will it again created in local?
Please suggest
S

Hi,
first of all, in reality "partition a table" means create a new table a migrate existing data there (although theoretically you can use dbms_redefinition to partition an existing table -- however, it's just doing the same thing behind the scenes). This means that you also get to decide what to do with the indexes -- which indexes will be local, which will be global (you can also re-evaluate some of existing indexes and decide that they're not really needed).
Second of all, the choice of partitioning key looks odd. Partitioning is a data manageability technique more than anything else, so in order to benefit from it you need to find a good partitioning key. A recently added column named "data_seq" doesn't look like a good candidate. Can you provide more details about this column and why it was chosen as a partitioning key?
I suspect that whoever suggested this partitioning scheme is making a huge mistake. A non-partitioned table is much better in all aspects (including manageability and performance) than wrongly partitioned one.
Best regards,
Nikolay

Similar Messages

  • WHAT HAPPEN TO MY PHONE AFTER UPDATE IOS7.1 I CANT CALL OUT, WHAT HAPPEN TO MY PHONE AFTER UPDATE IOS7.1 I CANT CALL OUT

    WHAT HAPPEN TO MY PHONE AFTER UPDATE IOS7.1 I CANT CALL OUT, WHAT HAPPEN TO MY PHONE AFTER UPDATE IOS7.1 I CANT CALL OUT. only ppl can call me. what happen??can be fix?

    Hello, Mikimeikei. 
    Thank you for visiting Apple Support Communities.
    Here is an article I would recommend going through when experiencing issues making or receiving calls.
    iPhone: Troubleshooting issues making or receiving calls
    https://support.apple.com/kb/TS3406
    Cheers,
    Jason H.

  • HT201317 What happens to photos stored after 30 days on icloud?

    What happens to photos stored after 30 days on icloud?

    Photos are deleted from PhotoStream in the cloud after 30 days, regardless of the number of photos stored there.
    Once synced to your device, they will remain there indefinitely until you hit 1000 photos in the PhotoStream album on the phone, at which point the oldest photos will be deleted and newer photos will replace them.

  • HT2500 what happens to draft messages after hitting send?

    what happens to draft messages after hitting send?

    Actually you can change it.  Bring up the message and hit 'Message. > send again > and with the message ready to send you can rephrase it to your hearts content. Then resend.
    Regards
    Of course, you also end up with two messages
    Message was edited by: seventy one

  • What happened to my photos after upgrading to IOS 8

    What happened to my photos after upgrading to IOS 8.0.2? How do I recover them?j

    Hi arnpa,
    Thanks for visiting Apple Support Communities.
    If you've updated your iOS device to iOS 8, the photos should still be on the device. The photos will be organized differently than they were previously, though.
    In iOS 8, the Photos app organizes photos by date instead of by device or photo source. Here are some questions you might have about Photos after updating to iOS 8.
    Where can I find the Camera Roll?
    The Photos app in iOS 8 doesn't separate photos and videos based on how they were added to your device. Instead of a Camera Roll, your photos and videos (even ones that you didn't take with or save to your device) are organized by date in Photos.
    When you open the Photos app and tap the Photos tab, you'll see your photos and videos listed by Moments, Collections, and Years. Tap Moments to see individual photos organized by date and location, tap Collections to zoom out to a more condensed view, and then tap Years to zoom out even more. Tap a collection or year to zoom back in.
    And you'll now have a Recently Added album, which shows the photos and videos added to your device in the last 30 days, organized by date. To see your Recently Added album, tap Albums > Recently Added.
    Where can I find the My Photo Stream album?
    In iOS 8, there's no longer a separate My Photo Stream album. Instead, photos that were in the My Photo Stream album are now in the Recently Added album.
    If you were using iPhoto for iOS, make sure that you migrated your photos.
    From:
    Get help finding your Photos in iOS 8
    If the photos are no longer on your device, and you backed up to iCloud or iTunes, you may need to restore from a backup:
    Back up and restore your iOS device with iCloud or iTunes
    Best Regards,
    Jeremy

  • Since i updated my iphone to ios7, i can no longer download applications and also cannot update my apps. what happened? there is an alert popping and it tells that i should switch to Philippine store.

    since i updated my iphone to ios7, i can no longer download applications and also cannot update my apps. what happened? there is an alert popping and it tells that i should switch to Philippine store.

    Hi, sallymaesmag. 
    Thank you for visiting Apple Support Communities.
    If you are in the Philippines, check to see if the country is changed in the iTunes Store settings on the iOS device.  These steps will show you how to change the preference.
    Change your iTunes Store country
    Sign in to the account for the iTunes Store region you'd like to use. TapSettings > iTunes & App Stores > Apple ID: > View Apple ID > Country/Region.
    Follow the onscreen process to change your region, agree to the terms and conditions for the region if necessary, and then change your billing information.
    iOS: Changing the signed-in iTunes Store Apple ID account
    http://support.apple.com/kb/HT1311
    Once you make the change attempt to download applications again.
    Jason H.

  • What is the concept behind using table PA0002 and structure p0002.

    Hi,
    What is the concept behind using table PA0002 and structure p0002.
    Many times, I have seen Looping at structure e.g. p0002, p0006 etc. and data is processed and also seen Looping at table PA0002, PA0006 etc. with further appropriate subtypes if any to retrieve a value and process the same.
    In which context tables like PA,HRP,IT etc. are used and structures p0001,p0002 etc. are used.
    Regards,
    Ameet

    HI,
    As mentioned  that that Structure Pnnnn is user as a internal tablw when a LDB is used.
    Ex.
    TABLES: PERNR.
    INFOTYPES: 0001.
      GET PERNR.
        PROVIDE * FROM P0001 BETWEEN PN-BEGDA AND PN-ENDDA.
        WRITE:  / P0001-PERNR,
                  P0001-STELL,
                  P0001-BEGDA,
                  P0001-ENDDA.
        ENDPROVIDE.
    Here it is important to declare the infotypes you want to read  and so the system will create internal tables  ex. P0001.
    Tables PA0001 are database table with following fields
    MANDT
    .INCLUDE  PAKEY
    .INCLUDE  PSHD1
    .INCLUDE   PS nnnn
    Thanks,
    Poonam.

  • TS3694 What happens when the iPhone needs an activation and it doesn't respond? Then it asks me to restore it but due to an unknown error (-1) the iPhone can't be restored.

    What happens when the iPhone needs an activation and it doesn't respond? Then it asks me to restore it but due to an unknown error (-1) the iPhone can't be restored.

    Thank you for your response. However, I have done that plenty of times and each time I try to restore my phone, it extracts the software and then when it says restoring with the loading bar, an error message comes up saying an unknown error has occurred.

  • What happened when my ipod doesnt turn on and its just the apple sign on the screen ?

    What happened when i pluged up my ipod and only the apple sign comes up on it , what is going on ?

    Have you tried a hard reset yet to see if that does any good? To do this, press and hold both the Sleep/Wake and Home buttons together long enough for the Apple logo to appear. Try this more than once if necessary.
    Otherwise, try connecting it to your iTunes library in Recovery Mode and restoring it.  See this article for instructions on getting your iPod into Recovery mode.
    http://support.apple.com/kb/ht1808
    B-rock

  • What happens if I have a credit card and an iTunes gift card in the App Store

    What happens if I have a credit card and an iTunes gift card in the App Store And I buy an app? Does the iTunes gift card get deducted or does it get charged my credit card?

    The gift card balance will be deducted unless you gift that application.
    (73861)

  • Table got re-created with 0 entries

    Hello All,
                     In ECC system after refresh BDLS is taking too long time(24hrs to 36hrs) becase of that as per SDN blogs to improve BDLS performance i build the index on few tables mentioned below using SE11 & SE14 t-codes, after completing BDLS I dropped those indexes while dropping BKPF table got re created with 0 entries but other tables are having entries. i have followed sam eprocess for all the tables, after that i tried in sandbox system that system also while dropping BKPF got re-created with ' 0 'entries ,Could you please let me know why it has re-created with 0 entries.
    BKPF   
    CE11000 
    COBK   
    COEP   
    COES  
    COFIS  
    GLPCA  
    GLPCP   
    GLPCT   
    MKPF   
    SRRELROLES

    Thanks for the Prompt response,
    The service entry was created this month
    I did try by checking the "Deliv. Compl." indicator on the PO and then tried to reverse the service entry but I get the same error i.e SE541
    Thanks

  • What is the difference between generate partner profile and creat partner

    What is the difference between generate partner profile and creat partner profile ?

    Create Partner ProfilesAlthough partner profiles are usually created automatically, because of the unusual inbound and outbound profiles needed on the same system, the manual generation of certain profiles is required.
    The following subsections describe the partner profile settings for the standard client (assumed here to be ALExxxCyyy), as well as for the corresponding dummy client (assumed to be DUMxxxCyyy). The dummy client partner profiles should have been generated by the automatic generation process completed previously. Nevertheless, these should be checked to ensure that all profiles exist.
    Generation of Partner Profiles
    The following messages should be added to the 4xx-ORDR model for ALExxxCyyy to DUMxxxCyyy on the reference client:
    • ORDERS
    • ORDCHG
    • ZINVRV
    • ORDRSP
    • INVOIC
    • FIDCMT
    • The partner profiles should first be generated using the standard auto-generation procedure on the reference client (for SYNCH messages to be created).
    • This model should now be distributed to the both ALExxxCyyy and DUMxxxCyyy.
    • The partner profiles should now be generated on the client being configured (i.e. yyy) using the auto-generation procedure defined in the standard ALE configuration procedures.
    Generate partner profiles for sending system. (Can only do this if at least 1 message type exists against the sending system's LS). This automatically generates the port if the LS and RFC name are the same.
    generate partner profiles tcode BD82
    creating partner profiles tcode WE20
     There are two methods for maintaining the partner profile:
     Maintain partner profile manually:
    To navigate to the partner profile in the sender system, choose Partner profile -> Partner type of Logical System and click on the required Target system. Under Outbound parameters, choose the Create outbound parameters icon, and enter the values for the outbound parameters according to the slide Sender: Partner Profile (outbound).
    To navigate to the partner profile in the sender system, choose Partner profile -> Partner type of Logical System and click on the required Sending system. Under Inbound parameters, choose the Create inbound parameters icon and enter the values for the inbound parameters according to the slide Sender: Partner Profile (inbound).
     Generate partner profile:
    Prerequisite: The current distribution model is distributed to all participating systems.
    In the sender system, choose: Generate Partner Profile, then check the result in the partner profile (outbound)
    In the sender system, choose: Generate Partner Profile, then check the result in the partner profile (inbound)
    Regards
    Vasu

  • Image won't open after right click and "open with" command using Editor PSE 10

    Can't see image after right click and "open with" Windows XP command using Editor PSE 10. The editor opens but no image appears. I have to use the open command from within Editor

      Make sure you have chosen the application PhotoshopElementsEditor.exe and not a shortcut.
    To manually associate a file format with an application:
    In Windows Explorer, right-click a file whose file association you want to change. For example, if you want to change the file association for all jpeg files, click a jpeg file.
    Choose Open With > Choose Program from the pop-up menu.
    In the Open With dialog box, click Browse and then locate and select the exe application file.
    Checkmark "Always use the selected program to open this kind of file" and click OK.
    Note:If you choose a program from the Open With menu in step 2, instead of selecting the Choose Program option, this check box is not available, and the file association won't work.

  • I had to restore my computer. After reinstalling itunes and sincronizing with my ipod, the music files were not organized in itunes as in the ipod: some songs were missing, some albums has no cover? Why is the sincronization not working properly?

    I had to restore my computer. After reinstalling itunes and sincronizing with my ipod, the music files were not organized in itunes as in the ipod: some songs were missing, some albums has no cover? Why is the sincronization not working properly?

    See Recover your iTunes library from your iPod or iOS device.
    tt2

  • What is the difference between the new ipad and ipad with retina display?

    what is the difference between the new ipad and ipad with retina display???

    This compares the two new iPads with the previous Retina iPad:
    http://www.engadget.com/2012/10/23/ipad-mini-vs-2012-ipad-whats-different/
    Regards.

Maybe you are looking for

  • Error message when trying to open a project

    my premiere pro exits and comes up with Error 16 anytime I try opening a project?

  • Thunderbolt ICS Update Issues

    Me, my wife and every other Thunderbolt user  I know (people from AZ to NY) through Verizon are having serious issues with this update. I have been through tier 2 Verizon support and multiple hard resets through the Verizon store with the final verdi

  • Oracle 8i for Linux Campaign

    Hello, a customer of ours in Germany said that he "won" an Oracle 8i Enterprise Edition for Linux CD. He believes this campaign was organised and conducted in the 3Q in 1999. I told him this is a trial CD and he is entitled to a 30 day license but he

  • References for developing Reconciliation Rules for OIM 11GR1

    Good Day! Hi Folks! I would like to ask if you can share some references or any documents which tackles on the development or creation of reconciliation rules for OIM 11GR1. Currently, we are trying to pull users from a SAP system and provision them

  • MPLS MP-IBGP configuration

    Hi, I have configured following senario PE1-s1/0--------P1---P2------s1/0-PE2 10.10.10.1 10.10.30.2 PE1 -s1/0-10.10.10.1 PE2 -s1/0-10.10.30.2 I have configured the IBGP between PE1 and PE2 with physical interface IP address. I can see the BGP session