Removing "Extra Cost" options

I am in charge of Oracle DB Server-related jobs including installation.
We use Oracle 9i Enterprise R2 edition, with no extra cost option (I just realize extra cost option after installation and reviewing documentation).
The program has been installed using default option and the databases have been created with default option.
Now, how to remove such extra cost option through Oracle Installation (Product Inventory), from which that I should select to uninstall.
I try the following:
- select all extra cost option through manually searching (expanding +) the folder, and uninstall the product
- change database option (database configuration) by removing extra cost option such as data mining, OLAP, spatial etc
- remove all user, tablespace and schema related to extra cost option
Anyway, when I see "Database - Instance Configuration", I always see DB Version Oracle 9i blah blah blah Production with Oracle Spatial & Data Mining Option. Why so, and what should I do?
Sincerely,
Ervin L

Welcome to the forums !
For disabling Data Mining, see MOS Doc 297551.1 (How To Remove the Data Mining Option from the Database)
For RAT, see these MOS Docs
Is it possible to deinstall/remove a specific component from already installed Oracle Database Home using OUI? (Doc ID 888934.1)
How to Check and Enable/Disable Oracle Binary Options (Doc ID 948061.1)
HTH
Srini

Similar Messages

  • Confusion about data guard broker - extra cost option?

    Dear All,
    For 11gR2, I know that Data Guard setup is a free option that comes with Enterprise Edition, you don'r require an additional licence for it.
    But I have read somewhere the Data Guard Broker and using DGMGRL is an extra cost option? Is it true?
    Kindly help to understand this?
    Thanks.

    Hello;
    It's part of Enterprise Edition.
    The following conditions must be met before you can use the broker:
    The primary and standby databases must be using the same version of Oracle
    Database 11g and each can be installed in either a single-instance or multi-instance
    environment. The database must be licensed for Oracle Enterprise Edition or
    Personal Edition.
    Source:
    Oracle Data Guard Broker 11g Release 2 (11.2) E17023-06
    Section 2.2 Prerequisites
    Best Regards
    mseberg

  • Is ASM an extra cost option for databases

    Hi,
    This regarding an 1z0-515 exam question;
    Is ASM an extra cost option for Oracle databases?
    It does not seem to be an extra cost option according to the price list.
    s there any way that ASM can be interpreted as an extra cost option?
    Regards,

    Sanjaya Balasuriya wrote:
    Hi,
    This regarding an 1z0-515 exam question;
    Is ASM an extra cost option for Oracle databases?
    It does not seem to be an extra cost option according to the price list.
    s there any way that ASM can be interpreted as an extra cost option?
    Regards,it depends, size, purpose, number of instances of the databases and project/organization.
    if it is small, minimal usage and less number of user access, and also single instance
    then we can use operating system file system for storage.
    it depends.
    refer the advantages of ASM.
    http://www.oracle.com/technetwork/database/index-100339.html

  • Extra-cost Oracle Options

    Hello,
    can you tell me what are actually the extra-cost Oracle options for Oracle EE?
    Thank you.

    Lubiez Jean-Valentin wrote:
    Hello,
    varun4dba wrote:
    mentioned here:-
    http://www.cuddletech.com/articles/oracle/node70.html
    This article is not up to date, the prices have changed since *2005-02-10*.
    Best regards,
    Jean-ValentinHello,
    I don't find the prices of Oracle EE without extra-cost Oracle options.
    Thanks

  • Removing extra spaces from a long document

    Hello
    I have seen a number of find/change and GREP formulas to do similar things. I have NO scripting or coding experience and have labored to understand GREP.
    So I am a little afraid to use it as I don't know what all the modifiers refer to (I do have a printout of some neat GREP cheatsheets like Mike Witherell's that I can absorb until I obtain a good reference )
    I need something I can copy and paste into either find/change or GREP dialog that will do the following in less than 12 steps (hopefully) without doing something catastrophic like removing all of my paragraph marks (which I almost did using someones GREP expression)
    No spaces before any comma, period, exclamation mark, question mark, colon, semicolon
    One space only after any of those
    One Space before any opening parenthesis and one space after the closing parenthesis
    No space after the opening parenthesis or before the closing parenthesis
    Remove any double or extra spaces ( en, em etc.)
    Remove any commas before parentheses
    Remove any spaces after a paragraph mark
    I think that's it
    I did find this one recently (Maybe Jongware?)
    [~m~>~f~|~S~s<~/~,~3~4%]{2
    Which from my dim understanding addresses em, en, flush and hair space ,  nonbreaking space ,figure space,third space--not sure of the rest. Really this is way over my head.
    I know this will be a piece of cake for you guys
    Thanks

A: Removing extra spaces from a long document

Peter is too modest, he's doing just great.
No space BEFORE-One Space after ---period,semicolon,colon, exclamation, question mark,CLOSING Parenth,Bracket,Brace, single & Dbl. quotation marks
Find (\s)([.,;:!\)\]\}~}~]])
Replace with $2
No space AFTER-One Space Before----OPENING bracket,brace,parenthesis,Dbl & single quotes
Find ([\[\{\(~{~[])(\s)
Replace with $1
These remove the space before/after but do not automatically add a space after/before.
In the first case, you could add a space right after the '$2' in the Replace With string, but it already may have a space, in which case you suddenly have two. One alternative is to optionally remove it with the Find string (add it as an optional match) and always add it with the Replace string, but remember that this string will only be found if there is a space preceding it. That way you'd only check the space after in cases where there was a bad space before.
So I propose you add another two find/changes to add the space, only when necessary.
One Space After: find
([.,;:!\)\]\}~}~]])(?!\s)
replace:
$0 [followed by one single space]
One Space Before: find
(?<!\s)([\[\{\(~{~[])
replace:
[one single space] $0
Color-coding with my WhatTheGrep might make it just a tad clearer what's going on in that jumble of codes:
(1 [ .,;:! \) \] \} ~} ~] ] 1) (?!! \s !)
and
(?<!<! \s <!) (1 [ \[ \{ \( ~{ ~[ ] 1)
(Orange is lookahead/lookbehind, blue is a regular escaped character, pink is an InDesign special character, green is normal grouping parentheses, and lavender is a character group.)

Peter is too modest, he's doing just great.
No space BEFORE-One Space after ---period,semicolon,colon, exclamation, question mark,CLOSING Parenth,Bracket,Brace, single & Dbl. quotation marks
Find (\s)([.,;:!\)\]\}~}~]])
Replace with $2
No space AFTER-One Space Before----OPENING bracket,brace,parenthesis,Dbl & single quotes
Find ([\[\{\(~{~[])(\s)
Replace with $1
These remove the space before/after but do not automatically add a space after/before.
In the first case, you could add a space right after the '$2' in the Replace With string, but it already may have a space, in which case you suddenly have two. One alternative is to optionally remove it with the Find string (add it as an optional match) and always add it with the Replace string, but remember that this string will only be found if there is a space preceding it. That way you'd only check the space after in cases where there was a bad space before.
So I propose you add another two find/changes to add the space, only when necessary.
One Space After: find
([.,;:!\)\]\}~}~]])(?!\s)
replace:
$0 [followed by one single space]
One Space Before: find
(?<!\s)([\[\{\(~{~[])
replace:
[one single space] $0
Color-coding with my WhatTheGrep might make it just a tad clearer what's going on in that jumble of codes:
(1 [ .,;:! \) \] \} ~} ~] ] 1) (?!! \s !)
and
(?<!<! \s <!) (1 [ \[ \{ \( ~{ ~[ ] 1)
(Orange is lookahead/lookbehind, blue is a regular escaped character, pink is an InDesign special character, green is normal grouping parentheses, and lavender is a character group.)

  • Why can I not remove extra spaces from Mail when composing?

    I am using Mail Version 8.1 and I cannot find a way to remove extra spaces from between my lines while composing. Every Enter makes the cursor go down two lines and there is no way to type in the space in between. There seems to be now way to see the html or any tags that can be causing this, and I cannot seem to find any setting to change the line spacing either. Does anyone know where to find any of these options so I can simply make the text single space?

    Open a message-editing window. Under the Edit menu, deselect all the options in the Spelling and Substitutions sub-menus. Test.

  • Remove extra space

    Hi master,
    how to remove extra space from the tables and columns
    thanks

    Apparently table and/or column names that have been created don't match those being used in queries.
    This typically happens when you use tools that generate scripts with object (table/column) names in "double-quotes" thus causing them to be CaSe-SeNsItIvE to Oracle.
    See this short demo of sensitive object names :
    SQL> create table "My Table"  (col_1 varchar2(5));  -- Sensitive Name used
    Table created.
    SQL> desc my table 
    Usage: DESCRIBE [schema.]object[@db_link]  -- cannot find an object by the name "my table"
    SQL> desc "My Table"  -- I must explicitly use the Sensitive Name now !!!!
    Name                                                                     Null?    Type
    COL_1                                                                             VARCHAR2(5)
    SQL> desc "MY TABLE"  -- The name does not map across CASE either !
    ERROR:
    ORA-04043: object "MY TABLE" does not exist
    SQL> create table MY TABLE (col_1 varchar2(15));  -- Normally, object names cannot contain spaces !
    create table MY TABLE (col_1 varchar2(15))
    ERROR at line 1:
    ORA-00922: missing or invalid option
    SQL> create table MY_TABLE (col_1 varchar2(15));  --- this is the correct way to name an object.  DON'T USE "double-quotes" ; DON'T USE SPACEs
    Table created.
    SQL> desc MY_TABLE  -- the properly named
    Name                                                                     Null?    Type
    COL_1                                                                             VARCHAR2(15)
    SQL> desc "My Table"  -- the first , Sensitive name
    Name                                                                     Null?    Type
    COL_1                                                                             VARCHAR2(5)
    SQL>Hemant K Chitale
    http://hemantoracledba.blogspot.com

  • How to remove save, cancel option when end user runs the workbook in Portal

    Hi,
    how to remove save, cancel option when end user runs the workbook and make some small changes like using page items or increasing rows and columns
    I already made 2 changes
    1) I removed the option in Oracle Enterprise Manager under discoverer viewer of saving
    2) I also removed the option of Allow saving changes made in Viewer when adding workbook to portal
    But still the end user gets options of saving when made small changes to workbook like increasing rows and columns
    Is their any place, I need to make changes?
    Thanks in Advance
    Rowdheer

    Don't use JSP to serve a binary file. It almost implies the use of awful scriptlets and the invocation of both the response writer and the response outputstream which would only lead to IllegalStateException headaches in the server logs.
    Use a Servlet instead. Specify the file name as request parameter and let the servlet read the file and write it to the outputstream of the response.

  • Is the "512GB PCIe-based Flash Storage" on the new mac worth the extra cost?  I am comparing with a refurb with better specs (faster CPU, larger hard drive) and from what I undersand the PCIe flash storage is the big differentiator in cost.

    hello - i am considering two macbook pros
    NEW - http://store.apple.com/us/buy-mac/macbook-pro?product=ME294LL/A&step=config#
    REFURB - http://store.apple.com/us/product/G0ML1LL/A/refurbished-macbook-pro-27ghz-quad-c ore-intel-i7-with-retina-display
    The refurb actually has a faster processor and a larger hard drive.  From what I understand, the big difference in cost is the new macbook pro contains "512GB PCIe-based Flash Storage" versus the refurb "768GB Flash Storage".
    Is the PCIe flash storage really worth the extra cost (and smaller size)?
    PS - Also I believe the brand new one has 2 GB graphics memory as opposed to 1 GB graphics memory.  I don't really care about that as much as I won't be doing a lot of video editing or gaming.

    RestonManJavaLuver wrote:
      Is she wrong - are these actually going to people's homes, being used, then returned and resold?
    Some are some are not. Otherwise Apple has a ton of Mac's sitting around that have been returned by customers under their 14 day No Questions Asked return policy.
    But they not just Returned and Resold. They go back to Apple, checked out (Tested) any parts that are not up to spec replaced and then repackaged in a plain white box to be sold as refurbs.

  • How to remove my payment option on iTunes App Store and iTunes on the iPhone?

    I've had this problem many times and eventually it would just work out after a week or so but I'm tired of that so here's what happens: I use prepaid credit cards for iTunes (I've also used a real credit card and had the same problem) and when they max out or run out of funds it will ask me to verify my payment information. So I sign in and it takes me to the page to update the info I update it to make sure there wasn't just an error and if it says something is wrong I know it's maxed/out of funds. And I'm not allowed to download any apps (including free ones and updates for apps I already own) while this happens. There is no option to remove my payment option, before after about a week of continuously returning to the payment page everytime I try to download/update an app a "none" option will appear below the VISA, MASTERCARD and AMEX credit card type however the option is never there for around the first week and is very frustrating. So how do I get the none option to appear ? Or remove a used/maxed credit/pre paid credit card ?

    iTunes Store: Accepted forms of payment - http://support.apple.com/kb/HT5552 - "The available payment methods vary by country, but typically you can use: Credit cards, iTunes Cards,  iTunes Store Gift Certificates, Content Codes, Store credit (including Allowance Account balances), ClickandBuy, PayPal" - No specific mention of debit cards though older documents no longer on Apple website showed they at least used to be accepted in some countries (not USA).
    For India - http://www.apple.com/legal/internet-services/itunes/in/terms.html#SALE  But it isn't very specific.
    Removing a credit card from an account - iTunes Store: Changing Account Information - http://support.apple.com/kb/HT1918 - More information at: https://discussions.apple.com/message/15891166

  • Remove ":" from select option label(description)

    Hello All
    I have a requirement to remove the select option description (which SAP displays by default from the field label maintained in the data element),
    I thought the best way to achieve that requirement is by passing "space" to the parameter  'I_DESCRIPTION' to the method IF_WD_SELECT_OPTIONS->ADD_SELECTION_FIELD, however, it turned out that SAP still displays the label from the data element inspite of passing space(blank) to the parameter 'I_DESCRIPTION', to overcome this limitation I have created a data element without maintaining any labels this approach worked expect that SAP still displays ":"(colon) as the label, is there any way to get rid of this ":" too?
    As shown above, ":" is still displayed as the label of the date select option. I'm also looking for a way to reduce the distance between the last radio button and the select option, any pointers would be appreciated.
    Thanks for looking into this.
    -Vikram.

    You could use the below methods to recursively scan all elements of the view and set the design of all labels to light.
    method adjust_view .
    * IO_VIEW Importing RefTo IF_WD_VIEW
      data lo_container type ref to cl_wd_uielement_container.
      check io_view is bound.
      lo_container ?= io_view->get_root_element( ).
      process_elements( io_container = lo_container ).
    endmethod.
    method PROCESS_ELEMENTS .
    * IO_CONTAINER Importing RefTo CL_WD_UIELEMENT_CONTAINER
      data lo_container type ref to cl_wd_uielement_container.
      data lt_elements  type        cl_wd_uielement=>tt_uielement.
      data ls_elements  type ref to cl_wd_uielement.
      data lo_lbl       type ref to cl_wd_label.
      lt_elements = io_container->get_children( ).
      loop at lt_elements into ls_elements.
        try.
            lo_container ?= ls_elements.
            process_elements( io_container = lo_container ).
          catch cx_sy_move_cast_error .
            if ls_elements->_definition_name eq 'LABEL'.
              lo_lbl ?= ls_elements.
              lo_lbl->set_design( value = '01' ).
            endif.
        endtry.
      endloop.
    endmethod.

  • Can't find remove memory card option on my e71

    pls guys help me rectify dis, i can no longer see remove memory card option on my fone whenever i press d power key or thru memory card option in tools,, when i bought my e71, it'll always appear but it suddenly won't be there.. Pls help me as i always do swap memory cards and wudn't lyk to be switchin my fone off anytime i want to do so.. THaNks

    It may..It may not.. but NO harm trying as you will just have to reset the personalisations.. Though taking a Data back-up before the Factory reset is always recommended..

  • ViewCriteriaItem - How to remove the All option in mutiselect

    I have a viewCriteriaItem bound to an LOV. This item is enabled for multiselection in search form (by checking the Support Multiple value selection in ViewCriteria UI hint).
    I want to remove the 'All' option from the mutiselect dropdown. Is there a way to remove this?

    Hi RM,
    Thanks of the information.
    I've did as per your reply, even though the column is showing hide the column when right click on the column.
    could you provide other alternative.
    Thanks,
    Ram

  • Is the retina display for the new mac book pro worth the extra cost? I'm buying a new mac book pro but not sure about the retina display.

    Is the retina display for the new mac book pro worth the extra cost? I'm buying a new mac book pro but not sure about the retina display.

    There is a US$10 adapter from old power adapter to new MacBook Pro.
    MagSafe to MagSafe 2 Converter
    The MagSafe to MagSafe 2 Converter allows you to use the MagSafe connector on your LED Cinema Display, Thunderbolt Display, or MagSafe Power Adapter to charge your MagSafe 2-equipped Mac computer.
    For battery life, check the latest Software Update for the fix for most problems.

  • Removing extra text after a certain point for a field

    Post Author: ralph.devlin
    CA Forum: Formula
    Hello,
    What we want to do is remove extra text, IE (PO12345.195) We would want to remove the .195 from the end of that data so that the groupings will group them correctly. How can I accomplish this. The defaul trim commands seem to only elimnate white space, I want to elimnate text up to a certain point. thanks
    Ralph

    Post Author: Charliy
    CA Forum: Formula
    You want to do an INSTR to locate the period, then a LEFT to only show the data before it.  Something like:
    IF INSTR({table.field},".") > 0 THEN LEFT({table.field},(INSTR({table.field},".") )-1) ELSE {table.field}
    I subtracted 1 because in your example above the period is in position 8 and you want the first 7 characters.

  • Maybe you are looking for