ODM GUI 11g R2

Hi
Is ODM 11gR2 (11.2) GUI available for download? The ODM download page on OTN woyld suggest that it is available but the link downloads 11.1.0.2 version. Any update on 11gR2 GUI availibility?
Thanks,
Vlad

Vlad,
The current UI, Oracle Data Miner Classic, is available from the OTN website. It supports both Oracle Data Mining 11.1 and 11.2.
The new UI, referred to as Oracle Data Miner 11gR2 and based on the workflow paradigm, is described in the [ODM Blog|http://blogs.oracle.com/datamining/2010/02/get_ready_for_the_new_oracle_data_miner_11gr2_gui_1.html] . Availability details are discussed there:
"The new Oracle Data Miner 11g Release 2 workflow GUI will be available now internally only for Sales Consultants to give controlled customer demos using our hosted server and demo datasets. Sales Consultants will be able to download the new 11gR2 GUI and establish a connection to the hosted ODM 11gR2 demo server.
"Customers who are interested in participating in the beta release program should contact their Oracle Sales Rep, stay tuned to this ODM Blog...."
Mark

Similar Messages

  • ODM on 11g

    I am upgrading my OS from XP to Vista. So I can't use 10g any longer instead of 11g.
    I have installed 11g successfully on Vista. But I can't find Oracle Directory Manager on 11g. I installed both 11g DB and 11g client.
    Where is it?
    Thanks

    OK, I just installed 10.2.0.3 Vista client (Admin install) & the 10.2.0.4 upgrade. Now, I have ODM back and fully functioning on Vista. But I am surprised that it's been dropped from the 11g installs? Maybe the latest installs of OID don't require ODM anymore, but I recall that even with 10.1.4.0.x, there were times that required use of ODM to make certain config changes - don't recall off the top of my head...
    Thanks,
    +Steve                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • New ODM Gui?

    I notice all the new oracle advanced analytics 12c docs now display new data miner nodes for graphs, SQL & R scripts, etc.  Does this require DB version 12c, a new version of SQLDeveloper (to be released) or both?
    http://www.oracle.com/technetwork/database/options/advanced-analytics/ds-oracle-advanced-analytics-1510025.pdf

    First you need to download and install the Oracle Database EE which includes the Oracle Advanced Analytics/Oracle Data Mining Option--which installs by default. 12c is the latest version, but you can also run earlier versions.  If not 12c, recommend 11gR2.0.3  Oracle Database Software Downloads</title><meta name="Title" content="Oracle Database Software D…
    Then you need to download the latest version of SQL Developer which includes the Oracle Data Miner GUI extension and follow instructions for setting up ODM'r.  Oracle SQL Developer Downloads</title><meta name="Title" content="Oracle SQL Developer Downloads…  and http://apex.oracle.com/pls/apex/f?p=44785:24:3082890040080::NO:24:P24_CONTENT_ID%2CP24_PREV_PAGE:5272%2C2
    There is a new SQLDEV/ODM'r 4.0 GUI that should be posted to OTN any day now as an Early Adopter 1 version.  Watch the SQLDEV and ODM'r OTN web pages for updates.
    cb

  • Association Rule : Settings in PL/SQL

    I've developed a model in ODM GUI for association rules.
    I'm now looking to develop the same in PL/SQL.
    I need to know how to specify the case id that has 2 attributes (CUST_ID and TIME_ID) and I have the PROD_ID as the ITEM ID. I have the following settings table and PLSQL
    BEGIN
    INSERT INTO assoc_sample_settings (setting_name, setting_value) VALUES
    (dbms_data_mining.algo_name, dbms_data_mining.ALGO_APRIORI_ASSOCIATION_RULES);
    INSERT into assoc_sample_settings (setting_name, setting_value) VALUES
    (dbms_data_mining.prep_auto, dbms_data_mining.prep_auto_on);
    INSERT into assoc_sample_settings (setting_name, setting_value) VALUES
    (ODMS_ITEM_ID_COLUMN_NAME, ‘PROD_ID’);
    END;
    DBMS_DATA_MINING.CREATE_MODEL(
    model_name => 'ASSOC_MODEL_2',
    mining_function => dbms_data_mining.association,
    data_table_name => 'SH.SALES',
    case_id_column_name => ‘CUST_ID, TIME_ID’,
    target_column_name => null,
    settings_table_name => 'assoc_sample_settings');
    Is this correct? for setting the CASE ID to 'CUST_ID, TIME_ID', is this correct and/or in the correct place
    Also the setting of the PROD_ID also correct?
    Do I need to use the ODMS_ITEM_VALUE_COLUMN_NAME setting ?

    Thank you for your reply, but it is still not working. There is the code that I have used for setting up and running. What is missing or incorrect with the following. The data is from the SH.SALES table.
    Settings Table
    BEGIN
    INSERT INTO assoc_sample_settings (setting_name, setting_value) VALUES
    (dbms_data_mining.algo_name, dbms_data_mining.ALGO_APRIORI_ASSOCIATION_RULES);
    INSERT into assoc_sample_settings (setting_name, setting_value) VALUES
    (dbms_data_mining.prep_auto, dbms_data_mining.prep_auto_off);
    INSERT into assoc_sample_settings (setting_name, setting_value) VALUES
    (dbms_data_mining.ODMS_ITEM_ID_COLUMN_NAME, ‘PROD_ID’);
    COMMIT;
    END;
    Create the view
    CREATE VIEW ASSOC_DATA_V AS (
    SELECT RANK() OVER (ORDER BY CUST_ID, TIME_ID) CASE_ID, t.*
    FROM SH.SALES t );
    Create the model
    BEGIN
    DBMS_DATA_MINING.CREATE_MODEL(
    model_name => 'ASSOC_MODEL_2',
    mining_function => DBMS_DATA_MINING.ASSOCIATION,
    data_table_name => 'ASSOC_DATA_V',
    case_id_column_name => ‘CASE_ID’,
    target_column_name => null,
    settings_table_name => 'assoc_sample_settings');
    END;
    BEGIN
    ERROR at line 1:
    ORA-40104: invalid training data for model build
    ORA-06512: at "SYS.DBMS_DATA_MINING", line 1798
    ORA-06512: at line 2
    Any ideas what is causing this?

  • Visualization of the separation plane for the two-variable SVM case

    Hello,
    I have an training data set for binary classification task that contains only two variables.
    After building SVM model (with linear kernel) I want to visualize separation plane.
    After reading documentation I found that I can get variable weights using this query:
    WITH
    mod_dtls AS (
    SELECT *
    FROM TABLE(DBMS_DATA_MINING.GET_MODEL_DETAILS_SVM('<MODEL_NAME>'))
    model_details AS (
    SELECT D.class, A.attribute_name, A.attribute_value, A.coefficient
    FROM mod_dtls D,
    TABLE(D.attribute_set) A
    ORDER BY D.class, ABS(A.coefficient) DESC
    SELECT class, attribute_name aname, attribute_value aval, coefficient coeff
    FROM model_details
    WHERE ROWNUM < 100
    So, after getting these weight does anybody knows how to plot the separation plane?
    How to get equation of the line that separates my two classes?

    WITH
    mod_dtls AS (
    SELECT *
    FROM TABLE(DBMS_DATA_MINING.GET_MODEL_DETAILS_SVM('SAMPLE_DATA65805_SV'))
    model_details AS (
    SELECT D.class, A.attribute_name, A.attribute_value, A.coefficient
    FROM mod_dtls D,
    TABLE(D.attribute_set) A
    ORDER BY D.class, ABS(A.coefficient) DESC
    SELECT class, attribute_name aname, attribute_value aval, coefficient coeff
    FROM model_details
    WHERE ROWNUM < 100 ;
    CLASS     ANAME     AVAL     COEFF
    0     X          -1.745703462
    0               -0.928055641
    0     Y          0.813909145
    For the linear discriminant the plane separating two classes is -1.745703462x+0.813909145y-0.928055641=0. Or the linear discriminant is y~=2x+1. Unfortunately ODM GUI doesn't provide a method to plot this. In here an important thing to keep in mind that the discriminant function is generated with respect to normalized data (if you choose to do normalization). If you wish to draw some plots by using a self generated method, you should draw discriminant function over normalized data (or you can transform discriminant function).
    Regards,
    HS

  • Exporting Decision Tree Rules

    I have built the decision tree model in ODM GUI. I would like to export all the decision rules in XLS or PPT from the built model. What is the appropriate way to do this.
    Thanks,
    Avinash

    Hi Avinash,
    Add a Model Details node to the workflow and connect the Build Class node (or the Model node) to the Model Details node.
    Then edit the Model Details node and select the DT details you are interested in.
    In your case, I think that is the Full Tree details.
    You can then right click and select View Data off of the Model Details node and then ctl-a, ctl-c and paste into spreadsheet.
    Thanks, Mark

  • OID - additional users group

    our development team wish to use OID to authenticate users for a new service they are creating, we do not wish to give
    them the superuser (ORCLADMIN) access so have created a new user (authservice)
    with full DAS privs (through OIDDAS webpage as orcladmin). we have created the
    group i.e. cn=usersB2B,dc=cdg,dc=mycompany,dc=com (through ODM gui) but the
    user is receiving insufficent privs error message when trying to administrate
    users.
    Can anyone shed any light as to how to resolve this? Any advice is appreciated.

    further clarification
    under Entry Management > dc=com > dc=mycompany > dc=cdg we have create a second Users group (cn=Users2). The user (authservice we have created has full DAS privs and can seemingly add users to the default cn=Users group but cannot do the same to Users2. I take it specific privs must exist for this and/or the addition of this group into a access control group or something is required? apologies, i'm quite new to OID.

  • Where is the database object administration GUI in Oracle XE 11g?

    Please read my whole question, because I'm sure people will misunderstand, and tell me to load http://localhost:8080/apex in my browser.  I know that is there.
    I am a previous user of Oracle XE 10g, but I just installed Oracle Express 11g. I only want to use it to get a local instance of Oracle database. The 10g APEX UI provided an easy way to administer database objects (users, schemas, and the like), but it appears the 11g APEX UI is some kind of weird application development environment that I don't want to use. It doesn't even seem aware of the schemas I created in the database using SQL Plus.
    So, where is the regular admin GUI for Oracle database objects like users/schemas (i.e. something that will list the schemas that exist in the database, and allow me to add or delete them)? Or does 11g force you to do that using SQL (in which case, I'm going to go back to 10g).
    Thanks,
    Jeff

    No, SQL workshop is not what I want.
    Basically, I don't want to deal with this concept of a "workspace" at all. It's useless to me and just gets in my way. All I want is a a UI where I can view a list of the schemas that exist in the database, and manipulate them easily.
    I have TOAD, so I could use that, but I liked the old 10g administration GUI, since it provided the exact functionality at the exact level of complexity that I needed.

  • Oracle 11g client installation on Solaris in non GUI mode

    Hi,
    I want to know if there is a way i can install Oracle 11g client on Solaris 10 machine in non GUI mode (ie. i want to do it from a command based terminal)
    Thanks
    Anup

    Hi Anup
    You have two ways to install it
    1) Client installation without response file
    Please Refer to Doc ID 885643.1
    2) With Response file
    Refer to the document available in Document library
    Document Oracle® Database Client Installation Guide
    11g Release 2 (11.2) for Solaris Operating System
    Note: from 11gR2 onwards you can create a response file from GUI also and then use it later on for silent installation.
    Hope this is helpful for You
    Regards
    Sudhir
    Edited by: user13090769 on Sep 1, 2010 10:55 AM
    Edited by: user13090769 on Sep 1, 2010 10:56 AM

  • ODM 11g tutorial

    Hi Mark ,
    This version is looking good as compared to Classic(ODM 11g Release1) .I request you to provide ODM 11G release 2 Tutorial .
    Thanks
    DBS Suresh

    Hi DBS Suresh,
    There are two sources of tutorials for ODMr 11.2
    1) The cue card tutorials that are contained in the UI itself.
    In the top level menus, go to Help -> Table Of Contents.
    The Help table of contents will be displayed in a separate window.
    Look through the table of contents, at the end of the contents is a section titled: Data Miner Cue Cards.
    There are 4 tutorials:
    A. Getting Started With Data Miner
    B. Data Miner Transformations
    C. Data Miner Text Mining
    D. Star Schema Mining
    2) On OTN, ODMr 11.2 also has a similiar set of tutorials that are constructed in the Oracle By Example (OBE) format.
    A. Using Oracle Data Miner 11g Release 2
    [Using Oracle Data Miner 11g Release 2|http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/11g/r2/prod/bidw/datamining/ODM11gR2.htm]
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/11g/r2/prod/bidw/datamining/ODM11gR2.htm
    B. Star Schema Mining Using Oracle Data Miner
    [Star Schema Mining Using Oracle Data Miner|http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/11g/r2/prod/bidw/datamining/ODM11gR2-StarMining.htm]
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/11g/r2/prod/bidw/datamining/ODM11gR2-StarMining.htm
    The data for both tutorials are provided as part of the UI driven installation and user granting process.
    There will be additional OBE tutorials published over the next couple of weeks.
    We will also be publishing a more comprehensive installation tutorial.
    Thanks, Mark

  • ODM client not bundled with 11g client install?

    All,
    Our 10g Oracle Client install includes the Oracle Directory Manager.
    We just installed the Administration version of the 11g client and I don't see ODM there.
    Can someone verify that ODM is not bundled with the 11g client?
    If it is bundled, how do I run it? The 11g Installer did not give me a menu item for it.
    Thanks,
    John

    Ok... despite the overwhelming response on this forum I contacted Apple support to found the solution.
    All mac's need internet access to send and receive the Apple Push Notifications. Even if the server is on the same network....
    For those behind a firewall / proxy and not quite keen on letting clients have full access; all apple servers are on the 17.0.0.0/8 range.
    For thosel looking to restrict even more (http://support.apple.com/kb/HT5302)
    2195, 2196
    TCP
    Used by Profile Manager to send push notifications
    5223
    TCP
    Used to maintain a persistent connection to APNs and receive push notifications
    80/443
    TCP
    Provides access to the web interface for Profile Manager admin
    1640
    TCP
    Enrollment access to the Certificate Authority
    Kind regards,
    Domien

  • I want to improve my gui quality in 11g

    how to improve my gui quality in 11g.
    i want to improve look and feel of forms 11g application.
    Could any one provide documents for this.
    in my project there are around 500+ fmb's are there.
    i want to improve gui quality i would liket to apply in all forms.
    Advance Thanks.

    <p>Read that document</p>
    Francois

  • Firewall GUI no longer launching after installing ORACLE 11g..

    The Firewall GUI used to work fine until I installed 11g2 now when I try to launch the gui the application seems like it wants to start but never does.
    Anyone running into a similar problem or know whow to fix it?
    I really don't like getting into iptables directly...
    Thanks for any help.
    Merry Christmas!

    Adam M wrote:
    The Firewall GUI used to work fine until I installed 11g2 now when I try to launch the gui the application seems like it wants to start but never does.Nothing to do with Oracle 11gr2 - unless you stuffed it up somehow?
    11g is installed in the grid (Grid Infrastructure) and oracle (RDBMS) o/s users. 11g does not touch the X-windows configuration in any way.
    iptables (Linux firewall) runs as root. Not an grid. Not as oracle.
    So you need a X11 session as root. If the server boots in character mode (init 3), then logon as root on the server's console and then type startx to start a X11 windows session for running admin GUI tools.
    If the server boots into X11 mode (init 5), then logon as root and via the (default Gnome) desktop launch the applicable admin GUI.
    Alternatively - for remote use. ssh into the server as root and start a vncserver. From your local client, connect to te VNC root desktop using vncviewer.
    If these options do not work - provide a copy-and-paste of what you have attempted and the kernel's response to it.

  • ODM 11g R2 Case studies

    Hello All,
    I have been trying to find some examples of using ODM 11g R2 in problem solving (case study). Can anybody help me with links for websites or videos other than those in this link:
    [http://apex.oracle.com/pls/apex/f?p=44785:24:9426731810857::NO:24:P24_CONTENT_ID,P24_PREV_PAGE:5272,2.]
    One more question, in this link [http://www.oracle.com/technetwork/database/options/advanced-analytics/odm/index.html?origref=http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/11g/r2/prod/bidw/datamining/ODM11gR2.htm]
    under General Info there is a link ( ODM overview and several demos) which is a .exe file. I don't really know what to do with it, i download it and run, But no idea what it did. Any idea what does this .exe file do.
    Thanks in advance!!

    Hi,
    Try looking at the Telco Churn case study which is on the same link you noted in your posting under the following heading: New White Paper: Using Oracle Data Miner 11g Release 2 with Star Schema data - A Telco Churn Case Study
    I will touch base with the Data Mining Product manager to see what the issue is with the online video.
    Thanks, Mark

  • How to give design console access to the user from OIM GUI - OIM 11g R2

    Hi,
    Could you please let me know if there is any way to give Design Console access to a normal user in OIM 11g R2.
    I tried by giving the access from backend by using DB command and I was able to give the design console access to the user.
    But I need to give design console access to the user from OIM Interface.
    Please let me know how to achieve this functionality.
    Thanks

    I have already used this approach by directly modifying the user record in DB.
    I am looking if it is possible to give Design console access from OIM GUI, the way we use to give in OIM 11g R1.

Maybe you are looking for

  • Printing landscape on HP LaserJet

    Ever since upgrading to OS X Leopard, I can no longer print in Landscape on a HP LaserJet printer. Does anyone know how to fix or get around this issue? Thanks.

  • Quicktime 7.5.5 and mac mini

    After installing Quicktime 7.5.5 on my Mac Mini and restart, Quicktime is still 7.5. Itunes dosn't work. How to solve this problem? I have OS X 10.5.

  • Characteristics value assignments screen- the results button is not visible

    Dear Gurus, In variant configuration, while i am assignning characteristics values in the characteristics value assignments screen, the results button is not visible. Even when I try to go to the results option from the Menu (GOTO > Results), it is d

  • Backup Leopard Disk on Single Layer DVD

    I have a leopard disk with the original 10.5.0. I want to make a copy on a single layer disk. I followed the instruction here: http://www.scribd.com/doc/431468/Guide-to-making-a-SLDVD-Leopard-install-disc Everything works fine without a hitch. After

  • I did not receive an in-app purchase

    Monopoly Hotels:  I made an in-app purchase of Monopoly Money, but it never got credited in my game.  I have not been able to find anything on the Support page regarding this.  I went into my account, found my purchase, clicked on "report a problem"