MIssing Primary indices

Hi All,
There is primarry index failure (/BI0/0P00000013), i can see the failure jobs in DB02. for these jobs i need to create indexes.
could any one guide me in creation of primary indices.
Thanks,
yadav.

Hello Rakesh
What is your data target ?
For cube index is automatically created firt time...then u drop and recreate it...
For ODS you have to create indexes manually.....
if you are facing any issue in index than just drop and recreate
Thanks
Tripple k

Similar Messages

  • Missing class indicator field from database row

    Hi,
    I have following problem :
    There is a class inheritance with root interface and 4 subclasses, they are initialized with class indicator field. If I use ReadAllQuery with an interface or some of concrete class as search class - it is working perfect, but if I try to build query with custom selected fields (addPartialAttribute) I always get an error - Missing class indicator field from database row.
    AFAIK This field have not to be mapped in Workbench to real table column, how can I tell TopLink that I will read this indicator field too by reading some custom fields ? I thought TopLink reads such fields automatically, like it does it with primary keys.
    Thank you
    Maksim

    This sounds like an issue with our partial attribute queries and inheritance as the type indicator column must always be read. Can you map the type indicator to a read-only attribute (mark mapping as read-only) and include this in your list of attributes as a work-around?
    Doug

  • Query to return list of all missing primary key ids from table T1

    I found this query online that returns a start and stop for a range of all missing primary key id values from table T1. However i want to rewrite this query to return a whole list of all the missing primary key ids and not a start and stop range. any help plz?
    select strt, stp
    from (select m.id + 1 as strt,
    (select min(id) - 1 from T1 x where x.id > m.id) as stp
    from T1 m left outer join T1 r on m.id = r.id - 1 where r.id is null)x where stp is not null

    with t as
              select  1 as id from dual union all
              select  2 as id from dual union all
              select  3 as id from dual union all
              select  5 as id from dual union all
              select  8 as id from dual union all
              select 10 as id from dual union all
              select 11 as id from dual union all
              select 20 as id from dual
    select  id_start + level missing_id
      from  (
             select  id id_start,
                     nullif(lead(id) over(order by id) - 1, id) id_end
               from  t
      start with id_end is not null
      connect by prior id_start = id_start
             and prior dbms_random.random is not null
             and level <= id_end - id_start
    MISSING_ID
             4
             6
             7
             9
            12
            13
            14
            15
            16
            17
            18
    MISSING_ID
            19
    12 rows selected.Or:
    with t as
              select  1 as id from dual union all
              select  2 as id from dual union all
              select  3 as id from dual union all
              select  5 as id from dual union all
              select  8 as id from dual union all
              select 10 as id from dual union all
              select 11 as id from dual union all
              select 20 as id from dual
    select  id_start + level - 1 missing_id
       from  (
              select  min(id) id_start,
                      max(id) id_end
                from  t
       connect by level <= id_end - id_start
    minus
    select  id
       from  t
    MISSING_ID
             4
             6
             7
             9
            12
            13
            14
            15
            16
            17
            18
    MISSING_ID
            19
    12 rows selected.SY.

  • Missing primary index

    Hi All
    In db02 under diagnostics we can see the missing table and indexes. I just want to know the which backend program actually triggers or from which tables is referring to finds out the missing primary indexes in database and particulary shows which object has an inconsistency of it.
    Thanks
    Siva

    Hi All
    In db02 under diagnostics we can see the missing table and indexes. I just want to know the which backend program actually triggers or from which tables is referring to finds out the missing primary indexes in database and particulary shows which object has an inconsistency of it.
    Thanks
    Siva

  • XML mapping inheritance problem; missing class indicator field

    Hi!
    I am currently working on a project which involves mapping a large domain model on a XSD schema. For this we use Toplink 10.1.3.1 which is mostly great. But now I have a problem while wanting to use class inheritance.
    In my XSD I have the following defined
    <xs:complexType name="Traject">
         <xs:sequence>
              <xs:element name="SoortTraject" type="SoortTraject"/>
         </xs:sequence>
    </xs:complexType>
    <xs:complexType name="SpecialTraject">
         <xs:complexContent>
              <xs:extension base="Traject">
                   <xs:sequence>
                                 [some elements] 
                   </xs:sequence>
              </xs:extension>
         </xs:complexContent>
    </xs:complexType>My XML is an implementation of this XSD and looks like this
    <Trajecten>
            <Traject xsi:type="SpecialTraject">
                     [implementation of the elements]
             </Traject>
    </Trajecten>My domain model corresponts to the XSD, so there is a Traject object and an inherited SpecialTraject object.
    In the mapping I used the Advanced properties->inheritance on both descriptors telling the Traject descriptor that it was the 'Root Parent Descriptor' ('Use class indicator field' -> 'use XML Schema Type attribute', 'Use class indicator dictionary') and the SpecialTraject what it Child Descriptor was ('Traject').
    When I test my mapping it always results in the same error (no matter how I configure this inheritance mapping). It says :
    [TOPLINK-44] missing class indicator field
    Descriptor: XMLDescriptor(Traject --> [])What am I doing wrong? Does anybody know a sollution?
    Best regards,
    Jouke Stoel
    Developer

    This is the changed XML descriptor file. When I deploy the file it automaticly overrides the old file so it ain't possible that I was still using the wrong file
    <toplink:class-indicator-mappings>
        <toplink:class-indicator-mapping>
            <toplink:class>Traject</toplink:class>
            <toplink:class-indicator xsi:type="xsd:string">Traject</toplink:class-indicator>
        </toplink:class-indicator-mapping>
        <toplink:class-indicator-mapping>
            <toplink:class>SpecialTraject</toplink:class>
            <toplink:class-indicator xsi:type="xsd:string">SpecialTraject</toplink:class-indicator>
        </toplink:class-indicator-mapping>
    </toplink:class-indicator-mappings>I have posted the stacktrace but I had to translate a bit because my exception was in Dutch :)
    Locale is a great invention
    Exception [TOPLINK-44] (Oracle TopLink - 10g Release 3 (10.1.3.1.0) (Build 061004)): oracle.toplink.exceptions.DescriptorException
    Exception description: Missing class indicator field of database row [UnmarshalRecord()].
    Descriptor: XMLDescriptor(Traject --> [])
         at oracle.toplink.exceptions.DescriptorException.missingClassIndicatorField(DescriptorException.java:887)
         at oracle.toplink.internal.ox.QNameInheritancePolicy.classFromRow(QNameInheritancePolicy.java:84)
         at oracle.toplink.internal.ox.XMLRelationshipMappingNodeValue.processChild(XMLRelationshipMappingNodeValue.java:13)
         at oracle.toplink.internal.ox.XMLCompositeCollectionMappingNodeValue.startElement(XMLCompositeCollectionMappingNodeValue.java:62)
         at oracle.toplink.ox.record.UnmarshalRecord.startElement(UnmarshalRecord.java:352)
         at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1288)
         at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:336)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:303)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:205)
         at oracle.toplink.internal.ox.record.SAXUnmarshaller.unmarshal(SAXUnmarshaller.java:189)
         at oracle.toplink.internal.ox.record.SAXUnmarshaller.unmarshal(SAXUnmarshaller.java:147)
         at oracle.toplink.ox.XMLUnmarshaller.unmarshal(XMLUnmarshaller.java:228)
    .

  • Return Order incomplete because of missing address indicator (VBPA-ADRDA)

    Hello,
    Using the VA02 to create a subsequent retun order results in a complete return order created. However, when I use BAPI BAPI_CUSTOMERRETURN_CREATE to create the return order, the incompletion log identifies a missing address indicator   (VBPA-ADRDA) for the ship-to party. Both sold to and ship to party are defined as one time customers. Looking at the entries in table VBPA the problematic customer holds 'D' as the address indicator value while the other customer holds 'E' as the missing address value.
    What could be the reason for the missing address indicator for that specific customer while creation works fine using the subsequent retun order creation?
    Thanks in advance, Ziv.

    1: You took care of the copy controls.
    2: Whats the item category you are using in your return order. Please mark that item category as not relevant for pricing. Uncehck the pricing field in VOV7 for this item category. Also check the incompletion procedure to make sure "pricing" is not an entry.
    3: Please check the pricing procedure you are using for the return order type, uncheck any "Mandatory " pricing conditions.
    4: In the pricing procedure determination OVKK, please check you have the required entry for the return pricing procedure.
    Please test with these changes and see the results,
    Regards
    Sai

  • CO27 - Missing part indicator (Urgent)

    Hi All,
    In CO27, i find for a few materials, the missing part indicator has been ticked, while for a few materials it is not. I would like to know how is this indicator being set by the system. Because for the parts which i do not seen the indicator ticked, are not available at the moment in stock & hence i believe this indicator should be ticked. Kindly let me know where all i should check.
    Vivek

    Dear Vivek
    1st question
    If no ava check  is not ticked and status check is ticked.
    System will check availability of material when released and saved. Then after this if the MAT not available  status NMAT you can see in the header. Once it is register, system will check the availability every time you saved till you will get the status with out NMAT. In case NMAT is not there during release and after that there was some problem with the material stock and let us say stock is reduced, then actually material is not available, but in production order Since NAMT is not there system will not check the material availability.
    In your case since you are checking the ava in background , if you want the system to check all orders with or without NMAT then don’t tick-status check.
    In this case system load will increase as system has to check all the orders.
    2.Please do not mistake this tick. This is applicable for HALB material, and not for Raw material.
    If you have HALB material and it is having stock of 10, production orders for this halb material lets say 2 prod orders released (qty 10 each) and 3 are not released(qty 10 each).
    Then ava qty will be
    I leave Production orders field blank = 10
    (ii) when i consider only released production orders = 10+10*2=30
    (iii) when i consider all production orders = 1010*210*3 = 60
    If you are taking raw material, this tick has not relevant
    your 3rd question -
    Ava check if material consists of 2 things
    checking rule - defined for a transaction - PP for production order, A is for sales order, B is for delivery etc.
    Checking group - what you define in material master 01/02/CH.
    Combination of above checking rule and checking group will fix the scope of check.
    Hence in OPJJ, you need to give checking rule and checking group both.
    as per understanding 01 will not change to 02 as in that plant 01 is fixed if it is in material master.
    Please come back if required
    If you want I will send you the preliminary document to understand what is AVA check if required.

  • Composite invoking Spring Context errors with Missing class indicator field

    Hi. I’m working on a composite with a Spring Context component that is referenced in a BPMN process and have run into some issues and I was hoping you may have some insight.
    I’m able to deploy the composite successfully, however when I try testing it on the SOA Server, it fails with the exception below:
    <auditQueryPayload auditId="17008" ciKey="12">
    <dataState>
    <dataObject name="FaultMessage" isBusinessIndicator="false">
    <value> com.oracle.bpel.client.BPELFault: faultName: {{http://schemas.oracle.com/bpel/extension}remoteFault} messageType: {{http://schemas.oracle.com/bpel/extension}RuntimeFaultMessage} parts: {{ summary=<summary>Exception [EclipseLink-44] (Eclipse Persistence Services - 2.3.1.v20111018-r10243): org.eclipse.persistence.exceptions.DescriptorException Exception Description: Missing class indicator field from database row [UnmarshalRecord()]. Descriptor: XMLDescriptor(com.bea.infra.events.ExtendedData --> [DatabaseTable(ns2:ExtendedData)])</summary> ,detail=<detail> Exception Description: Missing class indicator field from database row [UnmarshalRecord()]. Descriptor: XMLDescriptor(com.bea.infra.events.ExtendedData --> [DatabaseTable(ns2:ExtendedData)])</detail>} </value>
    </dataObject>
    </dataState>
    </auditQueryPayload>
    The class referenced in the error, ExtendedData, is a very simple, abstract class. Here it is:
    @XmlSeeAlso( { AssetUnregistered.class, ExtractionReassign.class,
    RelatedAssetRegister.class, ExtractionSubsequentNotify.class,
    ExtractionIntialNotify.class, AssetSubmission.class,
    ExtractionStatusChanged.class, MultiUse.class,
    ALERExtendedData.class })
    public abstract class ExtendedData {
    Do you have any thoughts or would know someone who could help?
    Thanks,
    Mike

    I've tried adding the jar to the classpath, installing the jar on the weblogic server, adding all the dependencies, and adding the jar to the project sourcepath. None of these worked either. Any Help would be appreciated.

  • Missed Call Indicator....wont go away!

    my phone froze 1 day as my husband was calling. Well his ringtone wnet off but the call never came up so that i could answer it, the whole thing froze and I had to restart it by taking out the battery.. Ever since I cannot get the 1 Missed Call indicator to go away. Ive restarted many times, Checked the call logs, it just wont go away....
    anyone else have any suggustions?
    thanks

    To clear the Misse Call Indicator complete the following steps:
    Connect the BlackBerry smartphone to the computer.
    Open BlackBerry Desktop Manager.
    Double-click Backup and Restore, then click Advanced.
    From the list of Device Databases, select the appropriate database.  For your problem, select Call Log.
    Click Clear.
    In the Warning window, click OK.
    tanzim                                                                                  
    If your query is resolved then please click on “Accept as Solution”
    Click on the LIKE on the bottom right if the post deserves credit

  • Missing primary key column in created form?

    Please help. I am a newbie in apex.
    When i create form and view it later I am missing primary key column.
    HOw to make it show?
    Thanks in advance.

    Hi,
    While creating the form based on a table/view, what have you chosen to populate the primary key value? Existing Triggers or Existing Sequences or Custom PL/SQL function?
    Can you check for the Get PK pl/sql process in the page processing region of the related form page? If that function is missing then do the following steps to create the same,
    Step 1 : Create a new pl/sql process.
    Step 2 : Choose the Process Point as, On Submit After Computations and Validations.
    Step 3 : Write the following block,
    declare
      function get_pk return varchar2
      is
      begin
        for c1 in (select TEST_SEQ.nextval next_val
                   from dual) -- Create a new sequence for your requirement.
        loop
            return c1.next_val;
        end loop;
      end;
    begin
      :P3_TEST := get_pk;  -- Change the item name for your page.
    end;After doing all the above, try executing the page.
    Regards,
    Sakthi.

  • Urgent - Pls help - Missing Primary Indexes

    Hi All,
    When i check in DB02 -in BW, its showing
    10 Primiary indexes are missing.
    I have tried to copy the table name to find our, where the indexes are actually missing . But, there is not table with that name.
    ( Earlier it was showing that, 26 secondary indexes are missing but, once we have fixed it, now its showing that 10 Primary indexes are missing )
    Thanks
    Nisha

    When you check in DB02, you will also find tables which are missing..probably you need to create these tables prior to creating the missing primary indexes.
    Regards
    Manga

  • N80 - Missed call indicator not appearing on Activ...

    Hi All
    As title - the missed call indicator doesn't appear on the active standby screen on my N80 (when I've got missed calls, obviously). It does appear on other screens (applications and menus). All other icons do (new SMS, new Voicemail, USB, wireless etc). Firmware is the latest version (AFAIK, it's the .017 version, dated 03-05-2006). Is this just me, or do all N80s have this problem (I'm on orange, BTW).
    Thanks Si.

    Hi
    Thanks for the replies.
    I've been in touch with Orange, and I'm waiting for them to get back to me. Strangely, I spoke to Nokia support and they said the missed call indicator shouldn't appear on the active standby screen (i.e. the 'U' shaped arrow underneath the battery meter). I'm not convinced - has anyone else got an N80 they can test (phone yourself, hang up after a couple of rings, then choose "exit" on the notification message - do you get the missed call icon top right on active standby, or just on the menus / application screens?)
    Thanks
    Si.

  • Message Indicator Options - Can I turn off missed calls indicator, but keep indicator for

    Can I turn off missed calls indicator, but keep indicator for other messages?  i.e. voicemails etc. 

    Yes you can.
    Press the green dial key to enter the call log > Menu key > Options > Call Logging and set the logging to NONE and save.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Missing mouse indicator

    Hi,
    I have a small yet sometimes annoying problem.
    When I want to rename a file or folder in Thunar (I'm using xfce) I don't have a mouse indicator. I don't know if it's actually missing or if it is just white because at some letters a white pixel appears.
    In Firefox this problem doesn't occur and I have the black flashing indicator in every form field.
    I looked through my applications and noticed the missing cursor in the search field of geany or the typing field in gajim, too
    I already tried different cursor themes and also gtk themes.
    Anyone has an idea how to solve this?
    Thanks in advance.
    Last edited by Barghest (2009-02-02 21:29:52)

    Is it checked in the preferences?
    Apple menu >> System Preferences >> Energy Saver >> Settings for: Battery >> Show details >> Options >> Show battery status in the menu bar (check)

  • [Solved] Missing App indicator for Shutter

    I just went through the process of installing all of the [AUR packages] for [Shutter]. I made it through that process fine, no errors all the dependencies are installed. For some reason when I start the application the App Indicator doesn't appear, instead I just get a matted gray square:
    I would expect the actual shutter icon to be there:
    The icon itself doesnt appear to be missing I can see it in /usr/share/pixmaps along with other icons that are appearing: Dropbox, Redshift, PIdgin, etc...
    Any thoughts
    Last edited by mcmillhj (2014-02-05 17:10:48)

    Not really sure what happened, after about 45 minutes the app indicator appeared. I can't recall any actions during that time period that would cause it to be fixed.

Maybe you are looking for

  • How to get a values from one form to another form

    Hi All, I am using oracle forms 10g. I have created two forms. First form named as Hotel reservation req and second form named as Hotel Res Summary. I the first form i have one field named Requisition_number and I have one button and when i press the

  • Production Order without Material Number and linked to a PM Order...

    Hi All, Is it possible to create a Production Order without Material Number (because it is a "just one time" production), and link it to a PM Order (enterred by a sister Plant) in order to finally report the cost to that PM Order? And if YES, how to

  • My Mac Mini keeps rebooting itself automatically after I've shut it down!

    Hi All, Something that has been going on for a few months now is that when I go to close down my Mac Mini, it goes to the white screen, then goes black, and then suddenly reboots, and comes up with something like "Your computer is rebooting because o

  • Largest Hard Drive for a Ti/800mhz

    I am thinking on replacing my 40g with a larger one or even replacing the superdrive with another hd, I was wondering if my Ti will only see a max of 120g like my PM/G4's, I know it will see larger ones using firewire but this is a laptop and using a

  • Content management in iWeb

    Hi all, Is it possible to create and publish a site in iWeb '09 and then allow someone else to change it's content via a content management program like Contribute CS3? Cheers