Serach like functionality, parsing

Hi all
I want to implement 'search like functionality' and text parsing' Can someone help where i can find proper documentation for this.
By search like functionality i mean- i have hired XXX and want to find the same candidate in my resume database
Thank you

Try looking at
http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:688976960025

Similar Messages

  • Any RunningApplications-like function for non-windowed processes?

    Am I missing any RunningApplications-like function for non-windowed processes like Unix executables? To start with I'd settle for processes in user-space but would ultimately like to list processes like Activity Monitor does. Even comparing RunningApplications results to user space Activity Monitor results will show the difference.
    As far as I can tell you need to go all the way down to kauth and kernel space to watch for non-windowed processes being launched. Is there somethig in-between I'm missing? A notification device about launching apps would be perfect if it cover all processes.
    Thanks,
    =Tod

    I think kqueue may be able to do what you want. Look at the EVFILT_PROC filter. You may have to watch a number of processes - perhaps all of them. But that would tell you any time you get a fork and whenever a process is reaped.
    I looked at kqueue at it does what I want but you need to register it on a by process/file basis which is great for a very specific set of things but not for overall system watching. (I also looked at fsevents but it is designed as a post-event notification system.) While NSWorkspace has the usual Cocoa model notifcation willlaunchApp, didlaunchApp, etc it seems that you need to get the kernel to watch the launch lifecycle of non-windowed functions.
    I actually did manage to get a comprehensive list of running apps out of parsing sysctl output with much less trouble than I expected. So far I have managed to get the pid, uid and abbreviated processname and the list seems to match the Activity Monitor list - at least at this testing printf stage. Getting the username from uid should be trivial and the full file name is doable it just requires some struct length and offset math. I'd like the launch path information but I can live without it for monitoring purposes if I can't figure out how to get it.
    This means that the monitoring part of the running system seems relatively straight forward - wrapping the call in an NSTimer and watching for changes in the returned results. But the watching of the actual starting and stopping of all processes remains some deeper work.
    Thanks for all the suggestions,
    =Tod

  • How to use LIKE function with a parameter in Oracle REPORT builder??

    how could i use parameter inside a LIKE function in Oracle reports builder?
    it works in SQL plus, but not in report builder!!
    Example:
    select code,desc from item_master where desc
    like '%&give_desc%'; ---works in SQL
    like '%:give_desc%' ---doesn't work in report builder!!

    Hi Renil,
    You will need to use the wildcard character (%) and the concatenation character (||) to join to your user parameter.
    i.e. like '%'||:give_desc||'%'
    Regards,
    John

  • How to use variable in the LIKE function along with % operators

    Hi,
    Is there any way i can use the variable in the Like function. That means i have query like
    SELECT * FROM Device WHERE DeviceName LIKE %v_MediaName%;
    Here "v_MediaName" is the userdefined variable which contains string. I want to retrieve all the records from the "DEVICE" table whose DeviceName LIKE %v_MediaName%;
    If i put it in a single quotes '%v_MediaName%' then the v_MediaName will be treaded as a string instead of a variable. I am using this query in a Procedure.
    please help me out to resolve the issue.
    thanks

    LIKE '%'||v_MediaName||'%';
    Will not make use of the indexes though.
    Message was edited by:
    satishkandi

  • Sql like function in View Object for progammatically

    Hi friends,
    I used Jdeveloper 11.1.1.4.0 ,I need how to get the datas from database using sql like function(select * from tablename where name like 'p%') using viewCriteria by
    programmatically.
    Thanks & Regards,
    Priya.
    Edited by: priya on Apr 8, 2011 3:48 AM
    Edited by: priya on Apr 8, 2011 3:49 AM

    Check the docs: http://download.oracle.com/docs/cd/E15523_01/web.1111/b31974/bcadvvo.htm#sm0341
    Timo

  • Like function in pl/sql code

    this is my code
    WHERE nvl(dt.DealTicker,'|| '''' || '''' ||') like '%DEALTICKER%'
    and dealticker is my one of column name
    can you suggest best way to include column name in like function.
    fast replies are really appreciated.
    thanks,
    Vamshi.D

    If this is your formatted code, I don't know what 15th and 18th lines do.
    SELECT DISTINCT CUSIP,
                    BB_DealTicker AS DEALTICKER,
                    Intex_StatusCode AS ''INTEX'',
                    User_StatusCode AS ''USER'',
                    HT.CT ,Comment AS ''REMARK'',
                    CUSIP_COMMENTARY,
                    CUSIP_RANKING_DESC AS ''CUSIP LEVEL RATING'',
                    Float_Rate_Ind AS ''FLT'', HT.Sector,
                    HT.Sub_Sector AS ''SUB SECTOR'',
                    Ranking AS ''RATING'',
                    Class,Deal_Desc AS ''DESCRIPTION'',
                    sp_Rating AS ''S&P'',
                    moody_Rating AS ''Moody''''s'',
                    fitch_Rating AS ''Fitch'',
                    Current_CE' + @tmpFinalStr2 + '
    FROM #tmpHoldingTrigger HT,
         #DEALTICKER DT
    WHERE IsNull(BB_DealTicker,'+ ''''+ ''''+') like ltrim(rtrim(DT.DEALTICKER))+' + ''''+'%'+'''' + '
    ORDER BY Intex_StatusCode DESC,
             User_StatusCode DESCRemember to post between [pre] and [/pre] or [code] and [/code] tags for a formatted code.
    Cheers
    Sarma.

  • Problem using LIKE function

    Hi Guyz,
    I am having small problem using LIKE function . The problem is I am using LIKE function in the WHERE clause
    to compare a column to a particular value, which gets this value from the front end. If the user has a single quote in the string he entered then the LIKE function is not working because of the single quote. Is there any way I can escape the single quote like we escape '%' and '_'.
    Thankyou.

    Mod_plsql supports bind variables, as do almost all front-end tools that deal with Oracle (and most other databases). I do not code mod pl/sql myself, but others here do, and I see bind variables in their code all the time (if I don't, they hear from me :-)).
    If you pass a bind variable, the quote problem goes away. As far as I know (which is not very far), you should be able to take the string with the quote directly from your input field, bind it to the variable in your query and have no problems.
    I suspect that the reson you are having issues is that you are just gluing strings together to create a sql statement. this is the wrong approach.
    The java term for what you are looking for is prepared statement, I'm not sure what the equivalent is i mod plsql, but that should give you a start.
    John

  • How to implement Excel like functionality using Table?

    I have a requirement to implement excel like functionality in a table, i.e when I update the amount in the first row and tab out, the values in the rows below should get affected.
    Could any one suggest idea how to get this done?

    Hi Timo,
    Thanks for your Reply.
    Can you please provide the code for capturing the key stroke in java script and queue it in the server and calling only the adf data table values from it.
    Thanks And Regards,
    Lovenish Garg
    Edited by: lovenish on 21-Jan-2011 04:25

  • I used to use SpeedBit Video Downloader with Mozilla Firefox, but suddenly a problem happened, I can not download with it now at all as there is an code error appears in the bar of SpeedBit like "XML Parsing Error: unclosed token Location: chrome://browse

    I used to use SpeedBit Video Downloader with Mozilla Firefox, but suddenly a problem happened, I can not download with it now at all as there is an code error appears in the bar of SpeedBit like "XML Parsing Error: unclosed token Location: chrome://browser/content/browser.xul Line Number 1, column 8702:....................."
    I did evrey thing, but the same problem
    reinstall SpeedBit, reinstall Mozilla Firefox.
    So what can I do!
    == This happened ==
    Every time Firefox opened
    == 4 days ago

    look people, i may have a solution for this. This happened to me a few times before and resolved alone, but last time it happened was when i turned off my router and back on while my comp was running and appeared when i tried opening firefox after that. so wat i did was i shutdown the computer and the router and tried turning both on again, and it resolved.
    Therefore, Summary: Shutdown computer then turnoff router then turn both back on
    Hope this helps anyone.

  • XML Spy Like Functionality in Jdeveloper?

    Hi all,
    May I know whether there is any XML Spy like functionality in Jdeveloper or a plug in for the same to see the XML Messages passing?
    Regards,
    ATC-OD-EMEA

    To see how messages are send to a web service you can use the HTTP Analyzer. On OTN you'll find a how-to: http://www.oracle.com/technology/obe/obe1013jdev/10131/devdepandmanagingws/devdepandmanagingws.htm#t6
    HTH,
    --olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Sleep()-like function in flash

    i need a sleep-like function. for example
    for(i=0;i<10;i++), I want "i" to increase after a time interval,
    i.e. i need a functio n which will make function wait....

    polatkanfatih,
    > i need a sleep-like function. for example
    for(i=0;i<10;i++), I
    > want "i" to increase after a time interval, i.e. i need
    a functio
    > n which will make function wait....
    There is no sleep() equivalent in ActionScript, so you're
    not likely to
    find a solution for a for() loop. You do, however, have
    setInterval() and
    setTimeout() in ActionScript 1.0/2.0 and the Timer class in
    ActionScript
    3.0. All of the above have the capability of executing a
    specified
    function/method after a specified perioud of time, in
    milliseconds.
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • Java networking library with RMI-like functionality?

    Is anyone aware of a Java networking library, that provides RMI like functionality and TCP/IP with an intuitive API and minimal coding required? I'm working on a prototype, but I'm having difficulty getting Java's RMI functionality working through Netbeans, so while I'm prototyping I'm looking for alternatives so I can code more and frustrate less!
    Thanks

    BobCrivens wrote:
    Thanks ejp.
    I guess I'll re-phrase the original question. Is there a small open-source Java networking library that doesn't include RMI, but gives a simple API for TCP/IP connections (higher level than sockets) and includes file transfer? I don't know if I need things like FTP/HTTP/POP/SMTP support etc for now.
    ThanksI gotta be honest with you here. I think you need to stop coding for now and get your requirements in hand with a better grasp on how network programming works.
    Not being insulting here but your questions show your current knowledge level on the subject to be not really sufficient for success with whatever it is you want to do.
    There is the networking tutorial available here http://java.sun.com/docs/books/tutorial/networking/index.html but it might do you well to tell us exactly what you are trying to do. Are you trying to build an FTP client? Are you trying to build a whole client/server program of some sort?
    Because everything now is very vague. You seem to be looking for protocols or API's between TCP and things like FTP for example and none exist because these sit directly on top of TCP. So you either deal directly with the Sockets or you deal with some library that deals with the protocol in question. There isn't an "in-between" layer here.

  • Sitegrinder-like Functionality Native to Photoshop

    I'm wondering if Adobe has any plans of adding Sitegrinder-like functionality to Photoshop or perhaps as another Adobe product. This plugin is used by a lot of professionals and with its price tag it's obviously something I think Adobe should look into as a revenue stream. (Sitegrinder creates HTML/CSS from PSD files)
    In addition, the new Divine Plugin is going to allow PSD directly into Wordpress themes.
    These two plugins seem right up Adobe's alley, I'd love to see them included in PS or as a new program.

    I thought about the same thing years back when I first tried SG and didn't have the desire to fuss with DreamWeaver. I hope Adobe buys SG so the MediaLab team can retire in style.

  • Item Creation Using the "Create Like"  function

    The use of the "Create Like" functionality seems to have DB row locking - Has anyone come across this? And if yes is there any solution?

    Hi,
    Please state your product module (I assume RMS) and version, e.g. 13.1.
    How do you come to the suspicion there is row locking involved? ("seem" you say.)
    Did you check metalink for this issue? What is the name of the form (*.fmb)?
    At what step of the creation do you experience the problem?
    What is actually the problem? Long waits in the user interface?
    How many online users are there in the system?
    Regards, Erik Ykema
    Edited by: ErikYkema on Nov 4, 2009 9:40 AM

  • ITunes Ping 'Like' function

    Hi everyone,
    For some time the 'Like" function of iTunes Ping in my Mac hasn't been functioning normally. When I'm in my own song library and click the Ping tab, clicking 'Like' doesn't cause Ping to post the update that I've liked a song to my Ping profile.
    I know sometimes if iTunes Store doesn't offer the song which I clicked 'Like', it'll give me an error message. But I'm not talking of such a case. I'm talking about a song that is available in iTunes Store which I also own. Clicking 'Like' simply doesn't make Ping update my profile.
    Does anyone have a similar problem or is it a bug? Can I solve it myself? Thanks in advance for your advice.
    James

    James,
    Ping is not getting major usage, so it is possible that Apple is not aware of the problem.  I suggest that you report it via the Feedback page.

Maybe you are looking for

  • PDF to Word 2003 problem

    I am running Acrobat 9 and Word 2003.  I want to export the .pdf file as a .doc file.  This has worked in the past, but currently doesn't.  I open the <file.pdf> file and then click export --> word.  The document initialized but the OCR doesn't run. 

  • Cannot disable stats job

    SQL> conn / as sysdba Connected. SQL> exec DBMS_SCHEDULER.DISABLE('GATHER_STATS_JOB'); BEGIN DBMS_SCHEDULER.DISABLE('GATHER_STATS_JOB'); END; ERROR at line 1: ORA-27476: "SYS.GATHER_STATS_JOB" does not exist ORA-06512: at "SYS.DBMS_ISCHED", line 3429

  • Linking Notes and Contacts to Calendar entries

    One of the features I loved on the Palm OS was the ability to make a Calendar entry, then link contacts, notes, and documents to the calendar entry. This functionality comes in very handy for scheduling a business meeting, then linking the contact fi

  • Can't download mountain lion from app store

    when i clicked to download button in purshased tab a message displayed 'an error occured'

  • Can not turn i pad on, i did hard reset and still not working ? help please

    can not turn i pad 2 on , I did try the hard reset, no luck. help please