Default Index of ODS

Hi,
Can any one clear my doubt.
generally initial index has been created by system.
what type of indices it is. (B-Tree or BitMaP).
babu

Dear Magesh,
By default the system is going to create Bitmap Idexes and when you are working with a Line Item dimensions, then your index would automatically be taken as B-tree which is a faster retreival . and more over the indexes depend on the data base also..
You can check in Forum, for other threads on this Indices.
Hope it helps
Thanks,
Krish

Similar Messages

  • ABAP Routine for Deleting and creating index for ODS in Process chains

    Any pointers for the ABAP Routine code for deleting and creating index for ODS in Process chains.

    Hi Sachin,
    find the following ABAP code to delete ODS ondex.
    data : v_ods type RSDODSOBJECT.
    move 'ODSname' to v_ods .
    CALL FUNCTION 'RSSM_PROCESS_ODS_DROP_INDEXES'
      EXPORTING
        I_ODS = v_ods.
    To create index:
    data : v_ods type RSDODSOBJECT.
    move 'ODSname' to v_ods .
    CALL FUNCTION 'RSSM_PROCESS_ODS_CREA_INDEXES'
      EXPORTING
        I_ODS = v_ods.
    hope it helps....
    regards,
    Raju

  • Webmail link on default index page is not showing up

    I am using the main index.html for testing purposes.
    I have wikis, blog, calendar, and mail all enabled in sites/webservices, as well as configure server side mail rules.
    When I go to the default web site (changed to https/ssl) I only show My Page, Wikis, Blogs, and Mail Rules as the services that are "on". https://mysite.domain.com/webmail still works.
    How do I get the mail service to register?
    Here is the error in webserver.error_log: File does not exist: /Library/WebServer/Documents/collaboration-availability, referer: https://mysite.domain.com
    Here is a clipping of the default index.html.
    <script type="text/javascript" charset="utf-8">
    // only hide services on load if JS is enabled
    document.getElementById('services').className = 'services loading';
    </script>
    li>a href="/webmail/" name="/collaboration-availability/webmail/" class="service" id="service-webmail">
    Mail
    Send and receive email wherever you are.
    Log In
    li>a href="/webcal/" name="/collaboration-availability/webcal/" class="service" id="service-webcal">
    Calendar
    Synchronize with iCal and manage your schedule.
    Log In
    li>a href="/updates/" name="/collaboration-availability/updates/" class="service" id="service-updates">
    My Page
    Track real-time updates for all wikis and blogs.
    Log In
    li>a href="/groups/" name="/collaboration-availability/groups/" class="service" id="service-groups">
    Wikis
    Collaborate with online document creation, editing, and comments.
    View All
    li>a href="/users/" name="/collaboration-availability/users/" class="service" id="service-users">
    Blogs
    Publish text, pictures, and podcasts in an online journal.
    View All
    li>a href="/emailrules/" name="/collaboration-availability/emailrules/" class="service" id="service-emailrules">
    Mail Rules
    Automate and manage email using rules you create.
    View
    li>a href="/changepassword/" name="/collaboration-availability/changepassword/" class="service" id="service-changepassword">
    Change Password
    Access all your web services with a single password you choose.
    View
    li>a href="/podcastcapture/" name="/collaboration-availability/podcastcapture/" class="service" id="service-podcastcapture">
    Podcast Capture
    Capture and upload QuickTime movies to Podcast Producer.
    View
    Any ideas?
    Message was edited by: CLWolf (I took out the < in front of li and a html)

    If you take a look at the javascript file that sets up the services for the index page:
    /collaboration/javascript/serverhome.js
    The webmail service icon isn't shown if the wiki is turned on - regardless of whether webmail is enabled. The rationale is that there is a link to webmail in the mypage header.

  • Grails - default index - not defaulting to index.gsp

    Does anyone know how to make the default index also include index.gsp? I'm afraid this may require a config outside of the EM but I want to make sure before I bug a SA.
    For example:
    "mydevserver:7777/mygrailsapp/" should display the contents of index.gsp but instead you must navigate to "mydevserver:7777/mygrailsapp/index.gsp" directly.
    "mydevserver:7777/mygrailsapp/somecontroller/" works fine but the root is where the problem occurs.
    ******************Extra notes for other people deploying grails on Oracle AS****************
    1. If you are not using shared libraries you should select "search local classes first" in your deployment plan.
    2. Make sure you have patched AS to the most recent version. You will get 500 errors for WEB-INF served files (css, js, images, etc.) on older AS versions.
    Edited by: user6301541 on Jun 27, 2009 7:50 AM

    Hello,
    do you have really images with a case ending  *.html instead of *.jpg?  Please have a look here in your style.css:
    background: url(images/img02.html) and I found it here e.g. in your Admin-2.html e.g. (img01.jpg I could not find)
    <td><img src="gwynn.jpg" width="170" height="180" alt="Brian Gwyn" /></td><td><img src="rosen.html" width="150" height="180" alt="Eric Rosen" /></td>
    (Brian Gwyn is wrong too, or not?)
    There I found so too this:
    <td><img src="#" width="210" height="180" alt="" /></td> # should be "TBA"
    And my answer would have been too: You better don't use upper case.
    Hans-Günter

  • What is the use of Indexes in ODS&Infocube??

    What is the use of Indexes in ODS&Infocube??

    An Index can improve the reading performance when data is searched for values of fileds contained in the index.
    The fact whether the Index is used or not depends on the database optimizer, which decides it after taking the following under consideration:
    - Size of the table
    - Fields in the index compared to the fields in the statement
    - The quality of the index (its clustering factor)
    One backdraw of Index is that they decrease writing performance, as they are maintained during the write to the table.
    Hope it helps you,
    Gilad

  • Problem in setting default index in Tree Control

    hi all,
    i am using flex2.0 final release and in my application i am
    calling custom function in cretionComplete event
    which set the default index in Tree control...but its not
    working properly in final flex meanwhile this same thing i am using
    in flex beta3 ...at that time its working properly but the problem
    occur only in migration time so can any body tell me what happaning
    here...
    code....//here MailFolderLists is id of tree control
    [Bindable]
    public var XLC:XML;
    public function initList(event:Event) : void
    if(mx.utils.ObjectUtil.toString(event.target.lastResult).indexOf("NOK")==-1)
    XLC = event.target.lastResult;
    if(MailFolderLists.selectedIndex==-1) //its working
    MailFolderLists.selectedIndex=0; // its not working
    so plz give me solution aasp..
    thanks in advance

    thanks buddy
    ur suggestion work ....
    one more thing i want to know if u have any idea related to
    Tree.expandItem method it will work fine in beta3 but same prob not
    work perfectly in final flex.....
    i am using
    MailFolderLists.expandItem(MailFolderLists.selectedItem,
    true);
    but not work every time i want the tree in expan position
    every when i add and new node/folder into it..
    so give me suggestion if u have any idea...
    thanks

  • Do we have to create indexes on ODS if we report on ODS

    Hello all,
    I have a report that runs on infocube and then there are RRI from this report to detailed report which run on 3 other ODS.
    So do i have to create indexes on ODS as well to improve performance?
    Also if we have to create indexon ODS how do we determine whic infoobjects we have to use in the indexes?
    Thanks in advance

    Thanks voodi,
    I guess that tells me exactly what I was looking for. Its just that we are running reports in production for first time so we have some performance issues which doing jump so was wondering.
    are there any other things you think I can do to take care of performance.?
    Do we create aggregates right away or after using the reports for few times? Do we create aggregates on ODS as well?
    Thanks,
    points assigned to both of you

  • How to create indexes on ODS ?

    Hello friends ,
    Need some help .
    Could any one please let me know how to create indexes on ODS ?
    How Indexes are useful on ODS ?
    Thanks in advance
    Regards

    Dear Akshay,
    Below is the information about indexes and there creation for ODS.
    You can search a table for data records that satisfy certain search criteria faster using an index.
    An index can be considered a copy of a database table that has been reduced to certain fields. This copy is always in sorted form. Sorting provides faster access to the data records of the table, for example using a binary search. The index also contains a pointer to the corresponding record of the actual table so that the fields not contained in the index can also be read.
    The primary index is distinguished from the secondary indexes of a table. The primary index contains the key fields of the table and a pointer to the non-key fields of the table. The primary index is created automatically when the table is created in the database.
    You can also create further indexes on a table in the ABAP Dictionary. These are called secondary indexes.Under Indexes, you can create secondary indexes by using the context menu in order to improve the load and query performance of the ODS object This is necessary if the table is frequently accessed in a way that does not take advantage of the sorting of the primary index for the access.
    The database system sometimes does not use a suitable index for a selection, even if there is one. The index used depends on the optimizer used for the database system. You should therefore check if the index you created is also used for the selection (see How to Check if an Index is Used).).
    Creating an additional index could also have side effects on the performance. This is because an index that was used successfully for selection might not be used any longer by the optimizer if the optimizer estimates (sometimes incorrectly) that the newly created index is more selective.
    The indexes on a table should therefore be as disjunct as possible, that is they should contain as few fields in common as possible. If two indexes on a table have a large number of common fields, this could make it more difficult for the optimizer to choose the most selective index.
    Leaving content frame.
    With Regards,
    Prafulla Singh

  • Is it possible to created secondary indexes on ODS in Production

    Hi,
    Is it possible to created secondary indexes on ODS in Production System. I need to create secondary indexes on ODS but it is already in production. Hence Can I directly create secondary indexes without transportation from dev to production?

    Hi,
    Secondary Indexes for DSO can be transported. For the transport the DSO objects needs to be transported (R3TR ODSO <technical name>.
    Additionally, secondary Indexes are necessary quite often for DSO tables, which can be transported. In few cases you need indexes on other BW tables, but they cannot be transported. Never create additional Indexes on InfoCube tables (like E- and F-Fact tables and Dimension tables)
    Thanks & B.R.
    Vince

  • Activating SAP Default indexes

    Hi,
    After a fresh SAP installation, our ABAP team request to activate an index on table VBFA
    On these fields ;
    MANDT
    VBELN
    POSNN
    There is a default index on that VBFA table already. (switched off)
    But. There it shows as  "Index does not exist in database system ORACLE"
    (check the attached screenshots)
    When trying to activate this index, it gives some warnings and activation is not possible...
    How to activate this index?
    Why these indexes are not activate automatically after the installation?
    regards,
    Zerandib
      ==============================
    ===========================================
      Activation of worklist (USHAN / 22.08.2013 / 14:52:17 /)
      =========================================================================
      Technical log for mass activation
         See log USHAN20130822145217:ACT
      Switchable object XINX VBFA-M01 was not activated (switched off)
      Check index VBFA-M01 (USHAN/22.08.13/14:52)
      Index VBFA-M01 is not in the customer namespace
       Index VBFA-M01 is consistent
    =========================================================================
      End of activation of worklist
      =========================================================================

    Why there is 2 different things in se11 and se14
    Check the attached screenshot
    in transaction SE14 , it says;
    DB Index -> VBFA~0
    Index ID-> VBFA - 0
    Status -> Active. Saved.
    Exists in the database
    in transaction SE11, it says;
    Index Name-> VBFA M01  Switched Off
    Status-> New Saved
    Index does not exist in database system ORACLE
    Please Clarify
    regards,
    zerandib

  • How I replace default index.jsp with mypage.jsp

    Hello,
    In the Portal 7.0's e2e app or sampleportal app, if I want to replace the
    application to look at mypage.jsp instead of default index.jsp when I put in http://localhost:7501
    at browser.
    How can I do that?
    Thanks in advance,
    Shashi

    Thanks for the quick reply, Jalpesh.
    Have a good day!
    Jalpesh Patadia <[email protected]> wrote:
    I think you can set a welcome-file-list entry in the web.xml to do this.
    Look at the following link to see how it can be done :
    http://e-docs.bea.com/wls/docs70/webapp/components.html#109211
    Thanks,
    Jalpesh
    Shashi wrote:
    Hello,
    In the Portal 7.0's e2e app or sampleportal app, if I want toreplace the
    application to look at mypage.jsp instead of default index.jsp when
    I put in http://localhost:7501
    at browser.
    How can I do that?
    Thanks in advance,
    Shashi

  • Can't change default index.html on 4.5.2

     

    Nope, this doesn't work when the default is a html file. It may work for a
    jsp but I'm starting with a default html file.
    Also, if I change the filename to something other than index.html (start.html)
    and make the appropriate changes as below:
    weblogic.httpd.indexFiles=start.jsp,start.html,start.htm
    weblogic.httpd.register.file=weblogic.servlet.FileServlet
    weblogic.httpd.initArgs.file=defaultFilename=start.html
    Works fine ... but not when the defaultFilename and indexFiles refer to a
    index.*. If I try using "index" I always get the default weblogic start page
    which seems to be coming from a jsp; I say this because none of the
    index.html files in the document root match what is being displayed.
    John Deviney
    Sr. Software Developer
    Partnerware Inc.
    Mark Griffith wrote:
    Actually I am on drugs.
    weblogic.httpd.indexFiles=index.jsp
    or
    weblogic.httpd.indexFiles=index.jsp,index.html,index.htm
    weblogic.httpd.register.file=weblogic.servlet.FileServlet
    weblogic.httpd.initArgs.file=defaultFilename=index.html
    works fine for me.
    I copied /examples/jsp/SnoopServlet.jsp as /public_html/index.jsp
    And a request for / got me
    /index.jsp
    Sorry no bug.
    cheers
    mbg
    In article <[email protected]>, [email protected]
    says...
    I've tried overwriting the default index.html in
    ...\myserver\public_html with my own but it never comes up; Weblogic's
    http server continues to default to some other index.html. The page
    looks identical to the README.HTML but the url reads,
    "http://localhost/index.html".
    I've tried changing the following two properties and moving my html and
    jsp pages but I still get the Weblogic's default index.html:
    weblogic.httpd.initArgs.file=defaultFilename=index.html
    weblogic.httpd.documentRoot=doc_root
    If I change the name of my default html file and specify by full name in
    the URL, the page is displayed as expected.
    Why am I having trouble overriding the 4.5.2 default index.html? I had
    no problems like this on 4.5.1 (no service packs).
    John Deviney
    Sr. Software Developer
    Partnerware Inc.
    [email protected]
    512-703-1470 x416
    ==================================================
    NewsGroup Rant
    ==================================================
    Rant 1.
    The less info you provide about your problem means
    the less we can help you. Try to look at the
    problem from an external perspective and provide
    all the data necessary to put your problem in
    perspective.[att1.html]

  • How can I create a default/index document for SSRS?

    SSRS 2012 SSRS Native Mode - Server 2008 R2 - with IIS installed and SSL.
    Forgive me for asking what seems like a dumb question, I have searched extensively.
    I want to have a default page for the report server directories, so that
    https://reports.intranet/sales
    Does not give a directory index, but defaults to a report (preferred), html page (secondary) or redirect. I've not found a single reference to doing this, and it seems pretty obvious. I partly want it to be neat and I want to deny the right to a directory
    index.
    Thanks,
    PS - as an aside, can one set a default page for an error, especially the access denied one.

    Hi,
    NullPointerException is thrown because
    request.getParameter("someVar") is null and calling equals causes that exception.
    Use (request.getParameter("someVar") != null) instead.
    But...
    What about:
    String strSQL = "SELECT * FROM tableName where someField = '"+(request.getParameter("someVar") != null)?request.getParameter("someVar"):""+"'";
    or
    look at this link
    http://www.html-html.com/forms/_OPTION_SELECTED.html
    good luck

  • Unable to Create the Secondary Index for ODS, Please..

    Hi All,
      The ODS 'A' has two Secondary Indexes ('010' & '020') and I want to create a third index with characteristics X & Y.  X is there in both '010' & '020' Indexes.
      RSA1 --> Info Provider --> Double click on ODS 'A' --> Right Click on last folder 'Indexes' --> Create --> '030' assigned by the system for the new Index.
      I am having all the Characteristics in the left window after clicking the InfoObject Catalog and Characteristics
      When I try to drag the 'X' from the left window to keep it under 'Indexes' folder or '030' Index, it gives 'NO'
    symbol (a circle with cross line). I am not able to find the cause. I could drag it on to 'Key fields' of 'Data Fields' , but not 'Indexex' folder. Am I doing something wrong, please ?
    Thanks,
    Venkat.

    This appeared in one of the earlier threads..
    I think u need to go to se11..there enter the name of the active table of the ODS..name will be../BIC/A<ODS tech name>00'.
    Once the table field appear after clicking display..
    u will see button 'indexes' on right hand top..
    click on that and then trying creating a new secondary index..
    cheers,
    Vishvesh

  • Three questions about the creation of secondary indexes in ODS design mode

    1. When we right click the Indexes folder in ODS design to select Create to create the Index folder 010, a small window pops up with a check box called "Unique", do we have to check this checkbox to create folder 010?
    2. If we would like to include 3 InfoObjects into the secondary indexes, then how many folders we need to create? Need to create 3 folders like 010, 020, and 030 and place the 3 InfoObj. into the 3 folder respectively or create only one folder 010 and place all the 3 InfoObj. into this one folder 010?
    3. In SAP documentation titled "BW Performance Tuning" about the Indices, it says "If the (uncompressed) F fact table is small, it is usually faster to drop the secondary (bitmap) indices before the load and build them up after the load"
    Someone here says secondary index is only for ODS other than for cubes, but from the above statement, F fact table is related to cubes, then how to explain it? Also the above statement is talking above the variant in process chain that when you bring in a variant to load data to cube, then the drop index and generate index variants will be automatically created, does it refer to this? And what's bitmap index?
    Thanks in advance and we will continue to give you reward points!

    Hi Kevin,
    Cube has Secondary index's. The index's that we find in the Manage of the Cube are the Secondary Index's. Please check the following link for more information.
    http://help.sap.com/saphelp_erp2004/helpdata/en/80/1a6473e07211d2acb80000e829fbfe/frameset.htm
    Also, to know about Unique indexes, use the following link
    http://help.sap.com/saphelp_erp2004/helpdata/en/9b/c743f5b40711d194f900a0c929b3c3/frameset.htm
    "The indexes displayed are the secondary indexes of the F and E fact tables for the InfoCube. The primary indexes and those defined by the user are not displayed. " (SAP help).
    This should answer your questions.
    Regards,
    Praveen.

Maybe you are looking for