How to disable a index

hi all,
how to disable an index created by
create index cc on sample(serialno);what are b-tree and bitmap indexes in detail.
what is meant by HASH function.
what is meant by reverse index.
thanks and regards,
sri ram.

Some Links:
Look here under unusable and rebuild (take care of restrictions, also described there):
http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_1008.htm#i2136020
You can find a bit of informtion about b-tree-indexes here:
http://download.oracle.com/docs/cd/B19306_01/server.102/b14220/schema.htm#sthref961
Reverse key Indexes:
http://download.oracle.com/docs/cd/B19306_01/server.102/b14220/schema.htm#sthref998
Bitmap-Indexes:
http://download.oracle.com/docs/cd/B19306_01/server.102/b14220/schema.htm#sthref1008

Similar Messages

  • How to disable the index in oracle

    Hi,
    Is there any way we can disbal the index in oracle.
    For the performance issue,I want to disable some of the indexes which i have created earlier. I dont want to drop the index.
    I tried the below command
    Alter Index <Schema>.<Index_name> Disable;
    I am getting the below error message:
    ORA-02243: invalid ALTER INDEX or ALTER MATERIALIZED VIEW option
    Thanks,
    Krishna
    .

    Hello,
    I have a question related to disabing index and thought I would post it in thread.
    I'm altering a column length to increase the size and getting "ORA-30556: functional index is defined on the column to be modified".
    On searching more about this error, it seems like the function index must be dropped before altering the column.
    The table I'm dealing with is huge.
    Question 1:
    In case of dropping and recreating the index, should the following steps be done:
    - Drop Index
    - Alter the column to increase the size
    - Recreate the index with NOLOGGING and NOPARALLEL clause
    - ALTER INDEX to turn on LOGGING
    - Gather Statistics on that index
    Question 2:
    Is there anything else that should be done when the index is dropped and re-created?
    Question 3:
    What are the side-effects of carrying out the above steps in a huge table with around 15 million rows?
    Question 4:
    Would it work if I disable the index, alter the column and reenable the index?
    Do I have to rebuild the index and gather Stats upon reenabling it?
    Thanks!

  • How to disable writing indexing crap on external usb drives?

    And when Apple vouchsafe to do something about it?

    Huh?
    Are you talking about spotlight indexing? If so set the Spotlight Privacy in your System Preferences.  Or stick a (empty) file named .metadata_never_index at the root of the volume.  Or use mdutil from terminal to tell spotlight not to index the volume (mdutil -i off volume).

  • Disable the index dynamically

    Hi,
    How to disable the index in a table dynamically.
    Thanks
    Radha

    Hi
    An index can be used to ensure uniqueness as well, eg for a PK or UK. In these cases it is not an option not having an index, or to have it disabled or unusable. As the indexed column is named "emp_id", I guess that is the case...
    The OP seems vehemently not wanting to use the index. I am curious to know why... It would be nice if people gave some more background when making their questions.
    Luis

  • Disable unique index

    How to disable unique index and rebuild? It is not possible to do.
    Regards
    GSreevan.

    What do you mean by "It is not possible to do'"
    Is your unique index currently enabled?
    Have you tried dropping it and recreating it?
    Fintan.

  • How to disable indexing in ANY USB drive not specific from privacy in spotlight menu

    Hi all,
    I would like to disable from indexing "ANY" usb device that i connect to my macbook pro.
    I know the option from spotlight -> privacy and exlude a hdd or usb device with the + sign.
    But i want to have something for any external device i can't do this on any device i connect each time.
    During the day i may connect 40-60 usb devices so thats is imposible.
    I want a solution that prevent the spotlight to insexing any external device any usb any hdd without to do it manualy each time.
    Every day i have to test different devices and drives i can to this it's slow down my work.
    I would like a script or solution that will be permantly and for not specific device but for all.
    Thank you
    xireland

    I have not customized anything. All my other browsers are fine, it is only Firefox that has this issue and it's on 2 different pc's.
    I have tried using the default theme and even downloaded, enabled, & disabled 3-4 other themes and none of them effect the transparency or the blacked out tabs.

  • How to disable index defined on a stsndard table j_1ipart2?

    Dear Friends,
    I am using a stndard table j_1ipart2 for updating line items for GL account.I am using a hashed type internal table for this purpose.But There is already two indexes defined. and they are not useful to me.So I just want to disable these indexes for my hashed type internal table for better perfomance.Plz guide me urgenty.
    Also if possible send me sample coding structure...............!!!!!
    For better understanding problem write to me
    Thanks&Regards
    Ricky

    Hi Ricky,
    You dont have to bother about the index selection.The database optimizer will select the best index for your selection.
    Reward Points if helpful,
    Regards,
    jinesh.

  • How to disable automatic statistics collections on tables

    Hi
    I am using Oracle 10g and we have few tables which are frequently truncated and news rows added to it. Oracle automatically analyzes the table by some means which collects statistics of the table but at the wrong time(when the table is empty). This makes my query to do a full table scan rather using indexes since the statistics was collected when the table was empty.Could any one please let me know how to disable the automatic statistics collection feature of Oracle?
    Cheers
    Anantha PV

    Hi
    I am using Oracle 10g and we have few tables which
    are frequently truncated and news rows added to it.
    Oracle automatically analyzes the table by some means
    which collects statistics of the table but at the
    wrong time(when the table is empty). This makes my
    query to do a full table scan rather using indexes
    since the statistics was collected when the table was
    empty.Could any one please let me know how to disable
    the automatic statistics collection feature of
    Oracle?
    First of all I think it's important that you understand why Oracle collects statistics on these tables: Because it considers the statistics of the object to be missing or stale. So if you just disable the statistics gathering on these tables then you won't have statistics at all or outdated statistics.
    So as said by the previous posts you should gather the statistics manually yourself anyway. If you do so right after loading the data into the truncated table, you don't need to disable the automatic statistics gathering as it only processes objects that are stale or don't have statistics at all.
    If you still think that you need to disable it there are several ways to accomplish it:
    As already mentioned, for particular objects you can lock the statistics using DBMS_STATS.LOCK_TABLE_STATS, or for a complete schema using DBMS_STATS.LOCK_SCHEMA_STATS. Then these statistics won't be touched by the automatic gathering job. You still can gather statistics using the FORCE=>true option of the GATHER__STATS procedures.
    If you want to change the automatic gathering job that it only gathers statistics on objects owned by Oracle (data dictionary, AWR etc.), then you can do so by calling DBMS_STATS.SET_PARAM('AUTOSTATS_TARGET', 'ORACLE'). This is the recommended method.
    If you disable the schedule job as mentioned in the documentation by calling DBMS_SCHEDULER.DISABLE('GATHER_STATS_JOB') then no statistics at all will be gathered automatically, causing your data dictionary statistics to be become stale over time, which could lead to suboptimal performance of queries on the data dictionary.
    All this applies to Oracle 10.2, some of the features mentioned might not be available in Oracle 10.1 (as you haven't mentioned your version of 10g).
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle:
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/

  • How to disable alarm on a T5120?

    Hey all.
    I have a Sun T5120 and when the OS boots up, a loud piercing alarm goes off.  The alarm starts during the boot-up phase:
    event = 12e Array Config has been changed.........
    I just don't know how to disable this alarm sound.
    any help is greatly appreciated.
    Thank you.

    Moderator Action:
    This post has been moved to the Sun Servers HARDWARE discussion space,
    from the Solaris discussion space, for proper topic alignment.
    You appear to have a hardware alarm issue, not an OS issue.
    I would presume that this topic is readily mentioned in the system documentation.
    That documentation for your T5120 is here:
    http://docs.oracle.com/cd/E19839-01/index-de.html
    (You should bookmark that link and also download all the PDF's for future reference.)

  • How to disable the Directory listing for the whole server or a particular a

    Please let me know how to disable the Directory listing for the whole server or a particular application.
    Thank You

    I want to disable the tab focusing( tab index) for a JTextField objectsLook through the API and find methods with the word "focus" in the method name.
    Also can u tell me about how to change the tab index orders for JTextFields."How to Use the Focus Sub System":
    http://java.sun.com/docs/books/tutorial/uiswing/misc/focus.html

  • How to disable parent window while popup window is coming

    Hi,
    I am working on Oracle Applications 11i.
    I am able to get the popup window using the Java script in the controller.
    Please see the below code for the reference.
    String pubOrderId = pageContext.getParameter("orderId");
    StringBuffer l_buffer = new StringBuffer();
    StringBuffer l_buffer1 = new StringBuffer();
    l_buffer.append("javascript:mywin = openWindow(top, '");
    l_buffer1.append("/jct/oracle/apps/xxpwc/entry/webui/AddAttachmentPG");
    l_buffer1.append("&retainAM=Y");
    l_buffer1.append("&pubOrderId="+pubOrderId);
    String url = "/OA_HTML/OA.jsp?page="+l_buffer1.toString();
    OAUrl popupUrl = new OAUrl(url, OAWebBeanConstants.ADD_BREAD_CRUMB_SAVE );
    String strUrl = popupUrl.createURL(pageContext);
    l_buffer.append(strUrl.toString());
    l_buffer.append("', 'lovWindow', {width:750, height:550},false,'dialog',null);");
    pageContext.putJavaScriptFunction("SomeName",l_buffer.toString());
    But here the problem is, even though popup window is there, i am able to do the actions on the parent page.
    So how to disable the parent page, while getting the popup window.
    Thanks in advance.
    Thanks
    Naga

    Hi,
    You can use javaScript for disabling parent window as well.
    Refer below link for the same:
    http://www.codeproject.com/Questions/393481/Parent-window-not-disabling-when-pop-up-appears-vi
    --Sushant                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to get all INDEXes from a database

    How to get all INDEXes in a database? I need to store them in script file (.SQL). My database version is 10.2.0.3.0.
    Edited by: Iniyavan on Sep 18, 2009 1:39 PM

    --Thanks, Koppelaars. The second query works. But I'm unable to store in spool file. May be it's due to CLOBs in the output. I did the following:
    set head off
    set feedback off
    set linesize 32727
    set pagesize 50000
    spool c:\indexes.sql
    select dbms_metadata.get_ddl('INDEX',INDEX_NAME,'MYSCHEMA')
    from user_indexes;
    spool off
    --In the spool file, I find only this
    CREATE UNIQUE INDEX "MYSCHEMA"."A" ON "MYSCHEMA"."BNK_DEALID" ("DEAL_ID")
    PCTF
    CREATE INDEX "MYSCHEMA"."ACCENT_RAC_REPORT" ON "MYSCHEMA"."ACCENT" ("SCHEME", "VAL
    CREATE INDEX "MYSCHEMA"."ACCENT_REPORT" ON "MYSCHEMA"."ACCENT" ("SCHEME", "APP_REF
    CREATE UNIQUE INDEX "MYSCHEMA"."ACCENT_X" ON "MYSCHEMA"."ACCENT" ("DEAL_ID")
    P
    CREATE UNIQUE INDEX "MYSCHEMA"."ACCNAV_X" ON "MYSCHEMA"."ACCNAV" ("SCHEME", "ACCNA
    --How to get all the DMLs in one SQL file?
    --Nagappan, I'm using WIN.

  • How to Disable "Auto Align" in [System Pref.] - [Display] - [Arrangement]

    Does anyone know How to Disable "Auto Align" in [System Preferences] -> [Display] -> [Arrangement]?
    It always want to align the two screens from the top when they are lined up close together and I need them to be aligned from the bottom. Since the resolution heights are so close together (1080 & 1050) it does not allow one to align side by side from the bottom as it prioritizes top alignment.
    I guess I'm looking for a script to disable this feature.

    Anyone got any ideas?

  • How to disable the "turn page" event triggered by the scroll/swipe function?

    The problem is as follows.
    The default behaviour of Acrobat Reader (both stand alone and browser plug-in) is to allow scrolling/swiping with the mouse wheel/trackpad. This is useful when the pdf's page length is greater than the screen's own length, because you can read the pdf with no need to distract your attention from the text to the scrollbar button. However, the same scroll/swipe function turns into a usability problem when the pdf is embedded in a html page and the pdf's page length is smaller than the browser's length. In this case, the scroll/swipe turns the page, distracting your attention from the text to the unintended behaviour of the browser. What happens is that you are so used to scrolling/swiping that you did it unintentionally in the pdf's caption area. You really did not want to turn pages in the pdf. Furthermore, if the pdf takes the whole html page, being a website, the scroll/swipe function flips the website pages in ways that neither the reader nor the writer had ever intended. Hence the question. How to disable, in this case, the "turn page" event triggered by the scroll/swipe function? A JavaScript should do, but the SDK documents did not help so far...
    Message was edited by: 41457173
    Message was edited by: 41457173

    ... or release a patch for the API,
    ... or suggest an alternative route to achieve the intended result.

  • How to use the index method for pathpoints object in illustrator through javascripts

    hii...
    am using Illustrator CS2 using javascripts...
    how to use the index method for pathpoints object in illustrator through javascripts..

    Hi, what are you trying to do with path points?
    CarlosCanto

Maybe you are looking for

  • Tv screen view frozen can't get to menu

    My Apple TV is showing a frozen view of 1/2 a screen picture and the rest lines. I can reset the Apple but can never get the picture off the screen to see the menu. Have tried reset, unplugging and factory restore and still have same view on tv scree

  • Blurry images in iPhoto 11

    Since installing iPhoto 11 on mac book pro my images appear blurred when in preview/edit mode.  They are fine as soon as you vier them in full screen, but the initial view to edit is blurred.  Anyone know if there is a way to fix this?

  • Are the dimensions of a 2014 macbook air the same as the 2012 model?

    I want to buy a full body protector for my 2014 macbook air  but the only one advertised on a particular website I'm looking is for the 2012 model. Will it fit?

  • Payment Service unavailable

    Hello, My 30 day trial of Adobe Creative Cloud has ended yesterday and I was trying to buy a 1 year subscription for "Photography" plan (Photoshop + Lightroom) but I was unsuccessful. Tried 3 different credit cards, 3 differents browsers, cleared bro

  • Oracle Fulfillment Server failing

    listener error coming while starting database and connecurent nodes these are the errors . TNS-12224: TNS:no listener TNS-12541: TNS:no listener TNS-12560: TNS:protocol adapter error TNS-00511: No listener and While starting Forms server node this se