4 Data Mining engineering positions at Yahoo! Inc (Sunnyvale/Burbank, CA)

There are four positions open in our group at Yahoo, with Data Mining being the key requirement (not necessarily Oracle DM).
We are prepared to move very quickly on them - meaning we guarantee that you will be called the next business day after sending your resume if it shows relevant skills and experience.
Here are the summaries of each, please email me if you'd lke the full descriptions before sending in your resumes:
1. Senior Data Mining Applications Engineer. Based in Sunnyvale, CA. Full-time employee. C++ - expert level, data mining - expert level.
2. Senior Data Mining Applications Engineer. Based in Burbank, CA. Full-time employee. Perl - expert level, data mining - knowledgeable level.
3. Software Architect. Based in Sunnyvale or Burbank, CA. Full-time employee. Data mining - knowledgeable level, software architecture - expert level.
4. Senior Data Mining Applications Engineer. Based in Sunnyvale, CA. Contractor. C++ - expert level, data mining - expert level.
Relocation is offered to qualified candidates.
Please send your resume to [email protected]

maybe OP want to extract all numbers from his inbox using regular expressions?

Similar Messages

  • Suggest me a data mining engine plz

    Hello everyone, I am a beginer of data mining. I am trying to build a java program using the JDM API and MySQL database. Could you tell me what is a data mining engine(DME)? I have tried to google what DME I can use but there is no one. I am so confused now.

    Hi,
    The Oracle Data Mining Option, now part of the Oracle Advanced Analytics Option, does not run on MySQL.
    If your want to explore the use of Oracle Data Mining, I would suggest you use the PL/SQL api as the Java api, based on JDM, has been deprecated.
    You will want to review the documentation and then go to the sample code to give it a try:
    http://www.oracle.com/pls/db112/portal.portal_db?selected=6&frame=#data_mining
    http://www.oracle.com/technetwork/database/options/advanced-analytics/odm/odm-samples-194497.html
    Good luck, Mark

  • Beginner installing SQL Server 2014 for Excel Data Mining

    Hello, I'm a complete beginner with servers but Im desperately trying to gain access to the SQL server for use with the data mining addin for excel.
    Could someone please help. When I try to make a connection in Excel by choosing DATA MINING> <No Connection> New> it then asks me for a Server Name in the connect to Analysis Services box. How can I find out what my Sever name is please? I have
    tried all sorts of names that I have found such as SQLEXPRESS or localhost but nothing works. It also tells me to 'Ensure that the Server is running'. Another error message I receive: No connection can be
    made because 'the target machine actively refused it'.
    I would be really grateful for some troubleshooting tips.
    Thank you

    Hi Alberto,
    Thanks very much for getting back to me.
    Here are the results of the Analysis Services report:
    Microsoft SQL Server 2014 Setup Discovery Report
    Product
    Instance
    Instance ID
    Feature
    Language
    Edition
    Version
    Clustered
    Configured
    Microsoft SQL Server 2014
    SQLEXPRESS
    MSSQL12.SQLEXPRESS
    Database Engine Services
    1033
    Express Edition
    12.0.2000.8
    No
    Yes
    Microsoft SQL Server 2014
    SQLEXPRESS
    MSSQL12.SQLEXPRESS
    SQL Server Replication
    1033
    Express Edition
    12.0.2000.8
    No
    Yes
    I then ran the System Configuration Checker and these are the results:
    Passed: 9. Failed: 1.
    Edition WOW 64 Platform    Failed
    (I can't paste the images as my account has not been verified)
    Should I assume that I have installed the wrong version? I am running 64 Bit Windows 8.
    I just need the most basic version for personal data analysis in Excel with the Data Mining Add-in. 
    Thanks again

  • Collation error when data mining

    I'm trying to process a data mining model but keep getting this error: "Errors in the OLAP storage
    engine: The sort order specified for distinct count records is incorrect. Errors in the OLAP storage engine: An error occurred while processing the..."
    I changed my sql server collation to to Latin1_General_CS_AI with a compatibility level of 100, and in SSAS, I set it to Latin1_General_100 and "Case Sensitive" checked...but I still get the same error...am I not setting the collation correctly?

    I changed my sql server collation to to Latin1_General_CS_AI ...
    The SQL Server setting is just a default value for new databases, when you don't explicit define the collation in the CREATE DATABASE command; same for the database setting, also just a default value. The effective collation is defined on column level.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Processing a data mining structure throws an error

    Processing a data mining structure throws an exception stating the following:
    "Errors in the OLAP storage engine: An error occurred while the 'IDK' attribute of the 'Test  IDK' dimension from the 'Project1' database was being processed."
    "Errors in the OLAP storage engine: The attribute key was converted to an unknown member because the attribute key was not found. Attribute IDK of Dimension: Test IDK from Database: project1, Record:17072643"
    I am using a DB view as a DSV. It does not have a unique primary key. Since DB view is getting multiple results per IDK, the IDK repeats for multiple rows. The same IDK is defined as Key column for the mining model. Not sure if that is the
    issue. Please help!
    Thanks
    Shallu

    Hi Shallu,
    According to your description, you use a database view in the data source view that do not have a primary key, so you get the error
    Errors in the OLAP storage engine: The attribute key was converted to an unknown member because the attribute key was not found. Attribute IDK of Dimension: Test IDK from Database: project1, Record:1707264
    when processing the project, right?
    In this case, please refer to the links below which describe the similar issue.
    http://agilebi.com/ddarden/2009/01/06/analysis-services-error-the-attribute-key-cannot-be-found-when-processing-a-dimension/
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/432deebe-52b8-4245-af85-5aa2eecd421a/scsm2012-cube-processing-failing-on-two-cubes-configitemdimkey-not-found?forum=dwreportingdashboards
    Regards,
    Charlie Liao
    TechNet Community Support

  • Oracle data mining module is implemented in database?

    Hello.
    I want to know where the ODM module is implemented.
    Is it implemented inside the database?
    Or, is it implemented as an extension module of the database?
    In this case, ODM module can be plugged into the database and it can use its functionalities...

    Oracle Data Mining is an integrated component of the database engine itself. It is better not to think of it as a data mining module, but rather think of Oracle Data Mining as the Oracle database's built-in machine learning capabilities.
    If you take a look at the PREDICTION function, you will see that this is a built-in SQL function. This is not an extension, not a UDF, not a pl/sql function, etc. It can execute at the storage tier of Exadata as part of smart scan. It is similar in the way it works to a function like the built-in substr, but applies a mathematical model instead. It leverages underling database functionality that is used by many parts of the database, such as memory management, shared cursors, etc. The data flows to this function just as it does to the others built-in SQL functions.
    Some of the model training routines will craft SQL, just as is done by other database components. For example, statistics collection from dbms_stats also crafts SQL to assist in its work. However, the implementation of the mining algorithm is still C code that is part of the database codebase leveraging other underlying, specialized database functionality.
    You could not separate Oracle Data Mining and attach it to something else - it is built as part of the Oracle database.
    Ari

  • Unable to connect to data mining server via data miner

    Hello!
    After installing Critical Patch October 2005 we receive the following error message while trying to connect to the data mining server: "Unable to connect to data mining server".
    Before installing the patch we had no problems connecting via data miner (Windows 2000 Client).
    We are running Oracle DB 10.1.0.3 on SUSE 9 Linux.
    Any help would be appreciated.
    Regards
    Alexander

    Hello Xiafang!
    Thanks for your reply.
    The query results are:
    SQL> conn sys@oraentw as sysdba
    Enter password:
    Connected.
    SQL> select comp_id, version, status from dba_registry;
    COMP_ID VERSION STATUS
    WK 10.1.0.3.0 VALID
    EM 10.1.0.3.0 VALID
    XDB 10.1.0.3.0 VALID
    AMD 10.1.0.3.0 VALID
    CONTEXT 10.1.0.3.0 VALID
    SDO 10.1.0.3.0 VALID
    ORDIM 10.1.0.3.0 VALID
    EXF 10.1.0.3.0 VALID
    OWM 10.1.0.2.0 VALID
    ODM 10.1.0.3.0 VALID
    CATALOG 10.1.0.3.0 VALID
    COMP_ID VERSION STATUS
    CATPROC 10.1.0.3.0 VALID
    JAVAVM 10.1.0.3.0 VALID
    XML 10.1.0.3.0 VALID
    CATJAVA 10.1.0.3.0 VALID
    APS 10.1.0.3.0 VALID
    XOQ 10.1.0.3.0 VALID
    17 rows selected.
    SQL> select parameter, value from v$option where parameter like '%Data Minin%';
    PARAMETER
    VALUE
    Data Mining
    TRUE
    Data Mining Scoring Engine
    FALSE
    What do you suggest to do next?
    Thanks in advance
    Alexander

  • Data mining option

    Hi,
    The banner that comes up when connecting to our server says it is using Data Mining Option. We want to use OLTP. Should I re-install the database ?
    The install screen did not make it clear that it was going to install data mining option.
    Any help is appreciated
    Vissu

    Is there a reason that you don't want the data mining option installed? It shouldn't hurt an OLTP database to have it installed if you're not using it.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Installing Data Mining

    Hi,
    I would like to install and try to use data mining option. I was following Data mining Admin's Guide but something is going wrong. I have installed EE (enterprise edition) and in dbca for database I have checked "Data mining". I have checked v$option. Data Mining was true, but Data Mining scoring engine (DMSE) was false. So I use runInstaller to install DMSE. But after than when I checked v$option DMSE was true :-) but Data Mining got false :-(.
    So I have tried to run manually catodm.sql to re-install Data mining. It passed without error but no success. User DMSYS exist, but v$option was false for Data Mining.
    Thanks for help
    sasa

    Try submitting your questions to the Data Mining forum:
    Data Mining
    There you will find lots of useful information and knowledgeable forum members to help you.

  • Test Engineering Position at Tecnova - Rockford, IL

    TEST ENGINEERING POSITION AT TECNOVA - ROCKFORD, ILLINOIS USA
    LABVIEW EMPLOYMENT OPPORTUNITY: TEST ENGINEER
    DESCRIPTION:
    Tecnova is a highly qualified National Instruments Certified Alliance Partner with a growing Automated Test Solutions department.
    We are looking for a self-motivated LabVIEW programmer / Developer who can contribute to the development of automated test, data acquisition, and control systems using National Instruments LabVIEW.
    This position is located at our Rockford, IL field office, however we will consider placement at our headquarters in Waukegan, IL.  Relocation expenses are negotiable.
    Direct customer contact and moderate travel expected.
    Candidates must have the ability to:
    Contribute to multiple projects.
    Innovate and help advance test methodologies using National Instruments LabVIEW.
    Design, develop, implement, and document state-of-the-art test, measurement, data acquisition, and control systems.
    Interact professionally with clients and build strong client relationships.
    Candidates must have broad experience in:
    Contributing to system design and specifications.
    Executing test plans.
    Programming and documenting LabVIEW applications.
    Preparing end user documentation and help file content.
    REQUIREMENTS
    Applicants must meet the following criteria:
    2+ years of LabVIEW experience.
    Knowledge and comfort level with scientific and technical terminology.
    Automated test, measurement, data acquisition, and/or control experience.
    Must be able to meet objectives as directed.
    Ability to effectively work independently in a fast paced environment.
    Ability to adapt to changing requirements, rapidly absorb new concepts, and apply them effectively.
    Ability to contribute and work in a team environment.
    Excellent communication and presentation skills.
    HELPFUL SKILLS
    Preference will be given to applicants with the following skills:
    Certified LabVIEW Associate Developer or Certified LabVIEW Developer credentials … or the ability to attain CLAD certification within six (3) months and CLD certification within six (6) months of employment.
    Experience with LabVIEW add-on toolkits and modules.
    Real-Time
    FPGA
    Database Connectivity
    Report Generation
    Touch Panel Deployment
    Experience with other National Instruments software platforms.
    TestStand
    VeriStand
    LabWindows/CVI
    SignalExpress
    DIAdem
    Experience with National Instruments hardware platforms.
    Data Acquisition
    Motion
    Vision
    Modular Instruments
    CompactRIO
    Compact FieldPoint
    Signal Conditioning
    RF
    Experience with communication protocols
    Serial (RS232/422/485)
    GPIB (IEEE488)
    TCP/IP
    Modbus / Profibus
    I2C / SPI
    CAN / DeviceNET
    Experience with a wide variety of sensors, transducers, transmitters, and signal conditioning.
    Temperature / Humidity
    Accelerometers / Microphones Power
    Pressure / Strain / Force
    Flow / Level
    Balances / Scales
    Other skills
    Database generation and use
    Datalogging (CSV, TDMS, etc...)
    Active involvement in National Instruments and LabVIEW Communities, User Groups, LAVA forums, etc…
    ADDITIONAL REQUIREMENTS
    No 3rd-party resumes accepted.  Principals, only – no agencies or contractors.
    Candidates must be a U.S. citizen or permanent U.S. resident authorized to work in this country for any employer.
    Due to the immediacy of this position we are unable to offer visa sponsorship at this time.
    ABOUT TECNOVA
    Tecnova is a leading electronic product development, automated test engineering, and contract manufacturing firm that provides custom electronic hardware, mechanical, and software solutions to small companies and Fortune 100 corporations. We offer exciting and professional challenges, variety, and ample opportunity to roll up your sleeves and make a difference. We offer an excellent salary package commensurate with the skills and qualifications of the applicant, 401(k), medical, dental, and eye care benefits.
    Qualified innovative, creative, and results-oriented individuals that desire a wide variety of projects in a challenging, fast-paced environment are encouraged to apply.
    If your background and qualifications match this position, please send your resume via one of the following methods for immediate consideration:
    E-Mail:
    [email protected] (Microsoft Word or PDF format)
    Mail:
    Tecnova
    ATTN: Test Engineering
    2383 N Delany Rd
    Waukegan, IL 60087-1836 USA
    Please note: Due to the volume of the responses we receive, Tecnova will only contact those candidates who meet the requirements described above.
    Attachments:
    Tecnova LabVIEW Employment Opportunity.pdf ‏193 KB

    Hi 
    I am CLAD Certified with 1.7 Yr of Experience and capable of completing CLD
    Skilled in Micrcontrollers , NI VISA , I2C , SPI , UART , ADC & Designing Custom DAQ...
    but I am from India... 
    is their any option that I can get this job. Since I am not a US Citizen or got work permit . 
    Regards
    Varaprasath M
    CLAD
    email id - [email protected]
    Thanks & Regards
    Varaprasath M
    Certified LabVIEW Developer
    Certified TestStand Developer

  • Data Mining on data specified and filtered by the user in runtime

    Hi Experts,
    i am new to Data Mining in SAP BI (we are on BI 7.0 SP Level 20). I familiarised myself with APD and Data Mining by reading some interesting and useful threads in this forum and some other resources. Therefore I got a understanding about the topic and was able to create basic data mining model for an association analysis and an corresponding APD for it and write the results into a DSO by using the data source. But for now I was not able to find a solution for a concrete customer requirement.
    The user shall be able to select an article, a retail location and a month and get the top n combinations sold with that article in the particular location and month. For that he may not access the data mining workbench or any other SAP internal tools but he shall be able to start the analysis out of the portal (preferable a query).
    We had some thoughts on the scenario. The first idea would be to create an APD for every location for the last month. As we need to cover more than 100 locations, this would not be practicable. Therefore I think it would be necessary, that the user can select the particular filters, and the data mining would then be executed with the given input.
    The other idea was to use a query as source. The user would start this query and filter location and month in it. The result of the query could then be used as the source for the APD with the association analysis. Therefore we would need to create a jump point from that query, which starts the APD with that results. After that the user should be able to start a result query, which displays the result of the association analysis (ideally this result query would start automatically, but starting it manually would be ok, too).
    So, I have the following questions for these scenarios:
    1.) Is it possible to create variants of a single APD, for automatically doing the data mining for the different locations?
    2.) is it possible to start an APD out of a query, with the particular results regarding filtering?
    3.) Can we place a query directly on the data mining results (how?) or do we need to write the data mining results in a DSO first?
    4.) What about the performance? Would it be practicable to do the data mining in runtime with the user waiting?
    5.) Is the idea realistic at all? Do you have any other idea how to accomplish the requirement (e.g. without APD but with a query, specific filter and conditions)?
    Edited by: Markus Maier on Jul 27, 2009 1:57 PM

    Hi ,
    you can see the example : go to se 80 then select BSP Application ,SBSPEXT_HTMLB   then select tableview.bsp , you will get some idea to be more clear for the code which you have written
    DATA: tv TYPE REF TO CL_HTMLB_TABLEVIEW.
    tv ?= cl_htmlb_manager=>get_data(
                             request = runtime->server->request
                              name    = 'tableView'
                                  id      = ''tbl_o_table" ).    
    IF tv IS NOT INITIAL.
      DATA: tv_data TYPE REF TO CL_HTMLB_EVENT_TABLEVIEW.
      tv_data = tv->data.
    IF tv_data->prevSelectedRowIndex IS NOT INITIAL.
    FIELD-SYMBOLS: <row> LIKE LINE OF sflight.
        READ TABLE ur tablename  INDEX tv_data->prevSelectedRowIndex ASSIGNING <row>.
        DATA value TYPE STRING.
        value = tv_data->GET_CELL_ID( row_index    =
                                   tv_data->prevSelectedRowIndex
                                      column_index = '1' ).
    endif.
    endif,

  • How to display the header data on different position in alv report

    hi all,
    how to display the header data on different position in alv report.
    for example ,
    customer                                                   name
      xxxx                                                         xxxx
                     vendor        name     street 
                      xxxx         xxxx      xxxxx
    pls   help me .

    hi
    as per my understanding you need to trnasfer header internal table data  to pdf..
    please check the following links for internal table to pdf..
    Convertion of Internal table data to PDF
    This link is related to ur issue
    Re: how to insert the calling of the FM: OTF to PDF
    Thanks

  • BW Data Mining

    Hello!
    I need information about the following BW Data Mining topics. Hope, someone can help me?
    -What 3rd Party Tools are available für Data Mining? (I just know "IBM Intelligent Miner")
    -Does someone have experiences with performance of the DM-algorithms? System requirements? Mass data?
    -Are there possibilities to improve the performance?
    -What is known about new features in Netweaver BI 7.0 for DM?
    -Does someone have special experiences in DM in the automotive industy? Are there typical business processes known, which are useful for BW Data Mining?
    Thank you for help!
    Regards,
    Peter

    Hallo!
    I need different information about BW data mining.
    One thing is, what are typical business scenarios for the different algorithms. So it is easy to find such for decision trees, association analysis and maybe for ABC analysis. But i have little problems to find real scenarios vor weighted score tables and regression analysis. It would be helpful to hear about some.
    I have to write a paper for my company about data mining with bw. While we have no experiences in this area I´m looking here for people having.
    Also Performance. The problem is not to try out with APD and Data Mining models. But to find experiences with this.
    Good or bad performance with this or this algo? Or how can I optimize performance for mass data?
    After this I have to design typical business scenarios. Especially for automotive area if possible.
    So what the question for me is, what is possible with the algorithms? Where are problems with them?
    It would be great if you could provide me with more information about your experiences in this area.
    Thanks,
    Peter

  • Data Mining overflow error while loading the mining viewer

    I developed a time series model that processes succesfully. The problem I have is that when I try to view the mining model viewer that displays the times series on a chart, I get the error below:
    An error occurred while a prediction query was being executed:
    'Error (Data mining): An overflow was encountered while converting a predicted value to the '' column, at line 1, column 33. A higher precision data type for the column is recommended.'.
    ADDITIONAL INFORMATION:
    Error (Data mining): An overflow was encountered while converting a predicted value to the '' column, at line 1, column 33. A higher precision data type for the column is recommended. (Microsoft OLE DB Provider for Analysis Services 2008 R2.)
    It looks like the probability value (which is a float data type, for example 0.4452938765) is being stored in a particular column, and the data type of that column cannot contain the range of decimal places that the probability has.
    I don't know which column to look for to change its data type like the error messages says. Would anyone have any idea?

    Hello,
    Thanks for your posting.
    It is more related to Data Mining issue in this case. I move the thread to
    Data Mining forum for better support. Thanks for your understanding.
    Regards,
    Elvis Long
    TechNet Community Support

  • Data mining is Loading after upgrade from 10.1.0.4 to 10.2.0.4

    SQL> select comp_name, version, status from dba_registry;
    COMP_NAME
    VERSION STATUS
    Oracle Ultra Search
    10.1.0.4.0 NO SCRIPT
    Oracle XML Database
    10.2.0.4.0 VALID
    Oracle Enterprise Manager
    10.2.0.4.0 VALID
    COMP_NAME
    VERSION STATUS
    Oracle Text
    10.2.0.4.0 VALID
    Oracle interMedia
    10.2.0.4.0 VALID
    Oracle Expression Filter
    10.2.0.4.0 VALID
    COMP_NAME
    VERSION STATUS
    Oracle Workspace Manager
    10.2.0.4.3 VALID
    Oracle Data Mining
    LOADING
    Oracle Database Catalog Views
    10.2.0.4.0 VALID
    COMP_NAME
    VERSION STATUS
    Oracle Database Packages and Types
    10.2.0.4.0 VALID
    JServer JAVA Virtual Machine
    10.2.0.4.0 VALID
    Oracle XDK
    10.2.0.4.0 VALID
    ** How to fix ti..
    *** I can find below error in dbua log
    ===
    dbua
    Oracle_Server.log 470085 select dbms_java.full_ncomp_enabled from dual;
    470086 select dbms_java.full_ncomp_enabled from dual
    470087 *
    470088 ERROR at line 1:
    470089 ORA-29558: JAccelerator (NCOMP) not installed. Refer to Install Guide for
    470090 instructions.
    470091 ORA-06512: at "SYS.DBMS_JAVA", line 236
    470092
    470093
    470094 Rem If Intermedia, Ultrasearch, Spatial, Data Mining upgrade,
    470095 Rem first install JAVAVM if it is not loaded
    470096
    470097 BEGIN
    470098 2 IF dbms_registry.is_loaded('JAVAVM') IS NULL AND
    470099 3 (dbms_registry.is_loaded('ORDIM') IS NOT NULL OR
    470100 4 dbms_registry.is_loaded('WK') IS NOT NULL OR
    470101 5 dbms_registry.is_loaded('SDO') IS NOT NULL OR
    470102 6 dbms_registry.is_loaded('EXF') IS NOT NULL OR
    470103 7 dbms_registry.is_loaded('ODM') IS NOT NULL) THEN
    470104 8 :dbinst_name := dbms_registry_server.JAVAVM_path || 'initjvm.sql';
    470105 9 ELSE
    470106 10 :dbinst_name := dbms_registry.nothing_script;
    470107 11 END IF;
    470108 12 END;
    470109 13 /
    470110
    470111 PL/SQL procedure successfully completed.
    470112
    470113 SELECT :dbinst_name FROM DUAL;
    470114
    *** Then I can apply 10.2.0.5 PSR ( in data mining is loading)?

    You can try de-install and install this component using the following note
    Master Note for Oracle Data Mining (Doc ID 1087643.1)

Maybe you are looking for

  • Challenge passing parameters to discoverer report

    Hello everyone, I am following the instructions on this website - http://learndiscoverer.blogspot.com/2008/11/metalink-note-304192.html Basically, we want to use parameters for discoverer reports, especially date parameters because of some performanc

  • Proxy Authentication while Installing Dreamweaver Widget Browser (Mac)

    Hi, I have created the Adobe CS6 Web and Design Premium package using AAMEE 3.0. I have chosen to exclude adobe air and help. Exception folders have Adobe AIR Installer , Adobe Dreamweaver Widget browser and Adobe Help. ExceptionInfo.txt provides the

  • Report SAPMSBDC in 6.0

    Hi. In 4.6 system we used the report SAPMSBDC but in 6.0 doesn't exist. Anybody knows the name of the same report in 6.0? or another equivalent report. Thanks. Miguel

  • Is Pages the app of your choice for an MA paper?

    I have used Pages quite a while for everyday writing. Not I need to write an MA paper. I wouldn't like to find out in 3 months that Pages is not fit for professional scientific writing, e.g. that it can't handle footnotes, endnotes, bibliographies et

  • IPod contains files that are in use by another application

    If you have ever received a message from iTunes saying that, "iTunes cannot update iPod because it contains files that are in use by another application," then take a look at this thread because I have had many problems with this and discovered a sol