Index and partition not visible !!!

Hello,
I am creation a table with partition by range and primary key constraint like
CREATE TABLE employees
(employee_id NUMBER(4) NOT NULL,
last_name VARCHAR2(10),
department_id NUMBER(2),
CONSTRAINT SUP_EMP_PK
PRIMARY KEY
(employee_id,department_id)
PARTITION BY RANGE (department_id)
(PARTITION employees_part1 VALUES LESS THAN (10) TABLESPACE DATA_003_P001_HUB3);
but when I query the user_ind_partitions as
select * from user_ind_partitions where partition_name='employee_part1';
it returns nothing
Why is this problem coming up?
Help..
Regards
Abhinav

Actually the problem statement is:
I have table as :
CREATE TABLE SUPERVISION_BPS
ID NUMBER NOT NULL,
servicetype NUMBER NOT NULL,
type VARCHAR2(6 BYTE) NOT NULL,
insertDate DATE NOT NULL,
filename VARCHAR2(100 BYTE) NOT NULL,
numberOK NUMBER NOT NULL,
numberKO NUMBER NOT NULL,
numberCRE NUMBER NOT NULL,
numberUPD NUMBER NOT NULL,
numberDEL NUMBER NOT NULL,
CONSTRAINT SUP_BPS_PK
PRIMARY KEY
(ID, servicetype, type)
using index local
TABLESPACE DATA_003_P001_HUB3
PARTITION BY RANGE (InsertDate)
PARTITION "PARTITION_LAST" VALUES LESS THAN (MAXVALUE)
create sequence seq_sup_bps start with 1 increment by 1;
The problem is whenever I am deleting a partition as
alter table &1 drop partition &2;
and rebuilding the partition as:
alter index &1 parallel;
alter index &1 rebuild partition &2 compute statistics;
alter index &1 noparallel;
based on unused indexes
select user_ind_partitions.index_name || '|' || user_ind_partitions.partition_name
from user_indexes, user_ind_partitions
where user_indexes.index_name=user_ind_partitions.index_name
and user_ind_partitions.status='UNUSABLE'
and upper(user_indexes.table_name)='&2';
Now when the entry for the same primary key takes place, it gives an error putting the same value again.
Kindly help
Tried all bit have not found the solution.
Note: have tried removing UNUSABLE check but how to get it done as per the need.
Regards
Abhinav
Edited by: user8744860 on Jul 2, 2012 2:35 AM

Similar Messages

  • Purchased songs and movies not visible on 2nd computer in Store

    Hi.
    Purchased songs and movies not visible on 2nd computer in Store. To confirm I went to re-purchase and received message telling me it was already purchased. Heeeelllppp! <smile>

    The purchased content will only be on the computer you actually downloaded it to unless you somehow move it to the other computer. You could burn content to a CD or DVD, use an external hard drive, a thumb drive, a network connection or, if you have one, an iPod.

  • Actual and Forecast not visible from Planning App -- VERY CRITICAL ISSUE ,

    this is a very critical issue.. need immediate help..
    my customer cannot see the Actual and Forecast not visible from Planning App. please help me with the same. tell me the possible solns as i cudnt have a web confrerence with the custmer till now.
    thanks/

    John ,
    they are seeing the application in planning. they created a scenario dimension containing , budget, actual and forecast.. but in the planing application they can only see budget. the rest 2 are not visible.
    thanks..

  • Hard drive partitions not visible

    I have a MacbookPro, with 3 partitions on the hard drive:
    * boot disk+OS X (33GB, os x journalled)
    * data partition (107GB, os x extended, case sensitive)
    * spare (5.5gb, "Unix File System" which I believe is OSX's word for ext3)
    Quite often, when I boot up, only the first partition is visible. Disk Utility shows the drive as having one 30GB partition, and the rest as unused space. This is particularly troubling for me, as my home directory is on the second partition, and when it is not found, I cannot log in.
    What could possibly be causing the partitions not to be seen?
    When this happens, all I can do is continually reboot, hard and soft, until magically one time it works. Sometimes, it also fixes itself after 5-10 minutes.
    Any thoughts or ideas?
    Thanks,
    dave

    bump
    No ideas anyone?

  • X200S + Ultrabase and Ultrabattery not visible in VIsta

    Hello,
    Just got my new X200S and ultrabase with DVD burner and Ultrabattery.
    When the Laptop is in the the ultrabse the DVD wroking fine.
    When I changing to the ultra battery I do'nt see it in Vista power no second battery.
    Even in the power mgt of Lenovo no second battery visible.
    Any feed-back ? I need to install specific soft ?
    Thx in advance
    Christian

    Gang,
    It can only be done on OSX 10.4.11 were you can format and partition the drive as a Windows BOOT partition. (Partition under the options)
    The problem is it was so slow in MAC land that it was not worth the time.
    I do not see this option under Lepoard.
    Stefan, thanks that looks like a much better way of doing this.
    Thanks
    Gordon

  • Lightbox Gallery previous and next not visible

    I'm still looking for a solution to the other Lightbox Gallery question I posted earlier, but in the meantime I've copied files from the application support folder mentioned before and have the gallery working up to a point.
    It works perfectly well locally in Dreamweaver Live View but having uploaded the files to the server the gallery functions without displaying the Previous, Next or Close tabs. They're active but not visible which makes me think there is a failure to load the icons
    http://www.yellotestbed.co.uk/shtml/photo_gallery.shtml
    Thanks

    Looks like you need to fix the links to those images in your javascript.
    You have a mix of "images" and "Images" for the directory names in the links. It looks like your actual folder is capital "i" Images. Your local files will work fine, because your OS sees no difference between "images" and "Images" however your server treats them as two different directories so you're getting 404 File Not Found errors because it is looking for a directory that doesn't exist
    File names should be all lower case with no special characters ($%&* etc). You should also use hyphens and underscores instead of spaces to avoid issues like this.

  • JTree - dashed lines and + and - icons not visible

    Hi,
    I implemented a TreeCellRenderer for my JTree:
    public java.awt.Component getTreeCellRendererComponent(javax.swing.JTree tree, Object value, boolean sel, boolean expanded, boolean leaf, int row, boolean hasFocus)
    Object userObject = ((DefaultMutableTreeNode)value).getUserObject();
    if (userObject instanceof Struct)
    this.setLeafIcon(this.iconStructClosed);
    this.setClosedIcon(this.iconStructClosed);
    this.setOpenIcon(this.iconStructOpen);
    else if (((DefaultMutableTreeNode)value).isRoot())
    this.setLeafIcon(iconEmptyClosed);
    this.setClosedIcon(iconEmptyClosed);
    this.setOpenIcon(iconEmptyOpen);
    /*else
    this.setLeafIcon(iconDatatypeClosed);
    this.setClosedIcon(iconDatatypeClosed);
    this.setOpenIcon(iconDatatypeOpen);
    return super.getTreeCellRendererComponent(tree, value, sel, expanded, leaf, row, hasFocus);
    ...the icons of the nodes are displayed correctly, but the dashed lines to visualize the level of a node and the + and - icons for collapsed or not collapsed nodes are not visible. I am using Windows LAF. What's wrong ?

    Please provide following information also:
    1) Are you using the default images?
    2) What is the Image URI?
    3) Snapshot of the Structure window, property inspector window?
    4) Are you using any switcher?

  • Previous bean modification next and modification not visible

    Hi,
    I have a succession of jsf pages. On the first I set values of my managed bean then I click next. On the second I set other values. If I return on the first page and change the values I reinitialize the values of the second page but if I click on the next button the changes are not visible.
    If someone can help me it will be great.

    Baltaar, this is very frustrating. Either I am not making myself clear, or you are not listening. Please search the forums for pop-ups, follow the link I already gave you, and fix your JavaScript. I'm convinced you are simply not executing things in the right order, or are resetting values after the response has already been committed.
    Here's why... The following code works for me.
    Page1 just has a next button on it. I click it to get to a second page.
    Page2 has a selectBooleanCheckbox, and a back button. Page2:
    <h:form id="form">
         <h:commandLink id="backButtonImgTop" type="submit"
                   action="#{navigationBean.back}" >
              <h:graphicImage id="backImgTop" value="/images/b_previous.gif"
                   alt="Return" height="18" width="18" />
         </h:commandLink>
         <h:selectBooleanCheckbox id="tcAgree"
              value="#{commonInfoBean.accept}" validator="#{commonInfoBean.termsAccepted}" />
    </h:form>I click the tcAgree checkbox to true and click the back button. NavigationBean runs the button click code. It resets the checkbox value to false. NavigationBean.back:
         public String back() {
              if (AppLogger.isDebugEnabled()) {
                   AppLogger.debug("Navigation Back called by IP: '" + getIP() + "'...");
              String previous = "Page1";
              //DEBUGGING
              CommonInfoBean cb = (CommonInfoBean)getBeanFromContext(COMMON_INFO_BEAN_NAME);
              cb.setAccept(false);
              //DEBUGGING
              //return the last page viewed by the user
              return previous;
         }From the first page (Page1) I click to next to go to the second page. The value has been appropriately reset. Here's my output...
    [Apr 23, 14:07:44] DEBUG AppLogger.debug() - Navigation Next called by IP: '127.0.0.1'...
    isAccept called. Value=false
    [4/23/07 14:07:51:423 PDT] 1b050a5c SystemOut O[b] isAccept called. Value=false
    [4/23/07 14:07:51:423 PDT] 1b050a5c SystemOut O setAccept called. Value=true
    [Apr 23, 14:07:51] DEBUG AppLogger.debug() - Navigation Back called by IP: '127.0.0.1'...
    setAccept called. Value=false
    [Apr 23, 14:19:55] DEBUG AppLogger.debug() - Navigation Next called by IP: '127.0.0.1'...
    isAccept called. Value=false
    All the beans I used are session scoped. I DID NOT include any JavaScript. My point is simply to say that it works without JavaScript and pop-ups in the way.
    Baltaar, your problem is in your JavaScript like I've been trying to say all along.
    CowKing

  • Nano 3rd will not unlock and is not visible in iTunes when connected to computer.

    My 3rd Gen Nano is stuck in locked position with the screen lit.  Additionally it does not show up on the computer or in iTunes when connected.  I can't restart or repair myself.  I suspect the locked switch may be broken.  Any ideas?

    First of all, try another port on your computer. Some ports are not connected direct to the motherboard and do not recognize the iPod as well as those that are.
    Still no joy? See these.
    iPod doesn't appear in iTunes or on the Mac desktop.
    iPod does not appear in iPod Updater or iTunes in Mac OS X.
    iPod appears on the Mac OS X desktop but not in iTunes.
    Try it in disk mode.
    Putting iPod into disk mode.

  • XD01 fields Name 3 and Name4 not visible

    Hi,
    I have a requirement, in xd01, when i go to Address tab, by default sap shows only Name1 and Name2 fields, but Name3 and Name4 are visible only after clicking on the "More Fields" button, which will expand and Name3 and Name4 fields will then be shown.
    My requirement is to keep these fields open all time.
    Kindly let me know the solution.
    Thanks,
    A Sustainer

    Hi
    if you want name3 and name4 mandatory fields in XD01 means
    Path:
    Financial Accounting (New) --Accounts Receivable and Accounts Payable--Customer Accounts--     Master Data-- Preparations for Creating Customer Master Data --Define Account Groups with Screen Layout (Customers) --
    select that particular group and click GENERALDAT : -- ADDRESS  - put required entry for Name 3 and Name 4
    thanking you
    regards
    Mahesh

  • Dunning phases and blockades not visible for archived invoices in FPL9

    Hi experts,
    I am not able to see the dunning phases and blockades for archived invoices when i am opening FPL9 with archive.
    My requirement is that it should be visible and donot so any error message.
    Can you please provide me with the solution ?
    Thanks and Regards.
    Ajit Krishna

    Hi
    When you Full reverse an Inv, it will not show in ES32 but can see ERDK table with original and reverse inv doc numbers. The new invoice will be genreated based on the restored Billing order for the same period.
    FPL9 -show current valid posted amount as due amount & posting reversed inv amount will be shown as _ve.
    Message was edited by: G Reddy

  • Index and crawler not working on Web Repository

    Hi Team,
    I'm trying to setup a Web Repository and crawling it for indexing. I've followed the steps from a SAP "how-To" document, but I guess the problem might be the way I'm confuring the web site in EP. I've created a Virtual Directory on my laptop's IIS 5.0 web server and the URL of the web site has been set as http://laptop-ashishk/myWebSite.
    Do I need to set the START PAGE as /index.html (as per the spec it says it's not mandatory)...
    Let me know whether you need any information with regards to this problem.
    Ashish

    They've set:
    meta name="viewport" content="initial-scale=2.3, user-scalable=no"
    It's the user-scalable that's the problem. Apple considers the default (per their web coding rules at http://developer.apple.com/iphone/designingcontent.html to be yes.
    I've noticed the same thing.
    Aym

  • BOOTCAMP partition not visible in Finder, not Mountable in Disk Utility

    Did a fresh Bootcamp install of Windows 7 on my MBA running 10.9.4, switched back and forth a few times and now the BOOTCAMP partition doesn't show up in the left pane in Finder. I hopped into Disk Utility to see what was going on and it was there, just not mounted, so I clicked mount, was told it couldn't be mounted, and it suggested I run first aid on it. I clicked Verify, nothing useful to me, then Repair, and got quite a lot of feedback that I do not understand, and then after that it was still unmountable.
    I tried to copy everything it said into a pastebin because it was very long with lots of starting and stopping and counting percents inbetween, but it was over 500kb and that's the limit for free users on pastebin, so here's a trimmed version. http://pastebin.com/neBUTdZi
    I tried booting into Windows after that, and it jumped into System Repair. Apparently, according to Windows, my Boot Manager is missing or corrupt... and since I still can't access it from the Mac side of things, I thought I'd just wipe the partition in BootCamp Utility and start over.
    Except instead, I get this error:
    "Your disk could not be restored to a single partition.
    An error occurred while restoring the disk to a single partition."
    Disk Utility let me wipe it but I still can't mount it, either, again suggesting I run first aid on it (this does nothing). I can't boot into the Mac's Recovery mode either. It just jumps straight to Internet Recovery. When I hold option upon boot, all three partitions show up (Mac, Recovery, Windows), but when I click the recovery one it loads for a bit and then the laptop just instantly shuts off.... I'm more than a little frightened now. Have I corrupted my internal harddrive perchance?

    You should be able to do it from Internet Recovery or you can try to add the Recovery partition back.
    Recovery Partition – Recreate Without Reinstalling
    Recovery Partition – Recreate Without Reinstalling (Requires Installer)

  • Safari menu and tabs not visible

    Sometimes when I start safari the menu wont pop when hidden, also the tabs are not realy visible.
    only thing I can do is close swipe to go to desktop a few times, then it gets back.
    Somebody an Idea how to prefent this ?

    Yes, you are right, I use fullscreen mode, but the problem is that the tabs are normally visible in full screen mode, and when you go to the top it appears, now it does not do that ( there are 2 tabs open at thata moment).
    When it occurs again I will try the keystroke.

  • Component and text not visible in dashboard

    Hi expert,
    After launching Dashboard in BI Portal Calender component and Button text and normal was not displaying.
    Dashboard Design layout component is displayed.
    After launching calender component text,button text,normal text was not displaying
    there is no dynamic visibility applied.
    Please help me what is issues

    it is running on Internet explore and not running on Chrome,,
    Dashboard version is 4.1 sp2
    Flash version find the screen shot

Maybe you are looking for