Database Searching Algorithms

Hi..
I have to do some research about database searching algorithms.
Would someone here help me and give a list of that algorithms and which one is the best.
What is the name of this algorithms which when u type in a key such "a" then it display a list of information that started with "a".

I guess I have more time than I thought... :)
Here is a full working example all in one class...
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class MAIN
     DefaultListModel model_my_list = new DefaultListModel();
    JList my_list = new JList(model_my_list);
     DefaultListModel model_list_of_finds = new DefaultListModel();
    JList list_of_finds = new JList(model_list_of_finds);
     JTextField search_box = new JTextField(20);
     JTextField add_box = new JTextField(20);
     public MAIN()
          JFrame frame = new JFrame( "Search test" );          
          frame.setSize( 500, 500 );
          Container container = frame.getContentPane();
         GridBagLayout gbl = new GridBagLayout();             
         container.setLayout(gbl);
         GridBagConstraints gbc = new GridBagConstraints();
         Action actionAdd = new AbstractAction("ADD")
             public void actionPerformed(ActionEvent evt)
                  model_my_list.add( model_my_list.size(), add_box.getText() );
                  add_box.setText("");
         JButton buttonAdd = new JButton(actionAdd);
         buttonAdd.setPreferredSize( new Dimension( 100, 30 ) );
         gbc.gridx = 2;
         gbc.gridy = 2;
         gbl.setConstraints(buttonAdd, gbc);
         container.add( buttonAdd );
         Action actionSearch = new AbstractAction("SEARCH")
             public void actionPerformed(ActionEvent evt)
                  search( search_box.getText() );
         JButton buttonSearch = new JButton(actionSearch);
         buttonSearch.setPreferredSize( new Dimension( 100, 30 ) );
         gbc.gridx = 2;
         gbc.gridy = 4;
         gbl.setConstraints(buttonSearch, gbc);
         container.add( buttonSearch );         
         JLabel add_label = new JLabel( "Add element" );
         gbc.gridx = 1;
         gbc.gridy = 1;
         gbl.setConstraints(add_label, gbc);
         container.add( add_label );
          gbc.gridx = 1;
         gbc.gridy = 2;
         gbl.setConstraints(add_box, gbc);
         container.add( add_box );
         JLabel search_label = new JLabel( "Search keyword" );
         gbc.gridx = 1;
         gbc.gridy = 3;
         gbl.setConstraints(search_label, gbc);
         container.add( search_label );
          gbc.gridx = 1;
         gbc.gridy = 4;
         gbl.setConstraints(search_box, gbc);
         container.add( search_box );
          JLabel all_label = new JLabel( "All elements" );
         gbc.gridx = 1;
         gbc.gridy = 5;
         gbl.setConstraints(all_label, gbc);
         container.add( all_label );
         JScrollPane all_scroll = new JScrollPane( my_list );
          gbc.gridx = 1;
         gbc.gridy = 6;
         gbl.setConstraints(all_scroll, gbc);
         container.add( all_scroll );
          JLabel found_label = new JLabel( "Searched elements" );
         gbc.gridx = 2;
         gbc.gridy = 5;
         gbl.setConstraints(found_label, gbc);
         container.add( found_label );
         JScrollPane found_scroll = new JScrollPane( list_of_finds );
          gbc.gridx = 2;
         gbc.gridy = 6;
         gbl.setConstraints(found_scroll, gbc);
         container.add( found_scroll );
          frame.pack();
          frame.setResizable( false );
          frame.setVisible( true );          
     public void search( String searchWord )
          model_list_of_finds.clear(); //empty
          for ( int i = 0; i < model_my_list.size(); i++ )
               String text = (String)model_my_list.get(i);
               if ( text.startsWith( searchWord ) )
                    model_list_of_finds.add( model_list_of_finds.size(), text );
                    continue;
               if ( text.endsWith( searchWord ) )
                    model_list_of_finds.add( model_list_of_finds.size(), text );
                    continue;
               String keyword[]  = text.split( searchWord );
               if (keyword.length > 1 ) //if there was a split... there was a find
                 model_list_of_finds.add( model_list_of_finds.size(), text );
                 continue;
     public static void main ( String args[] )
          new MAIN();
}

Similar Messages

  • Search Algorithm in Java

    Hey Guys,
    I have written a crude search algorithm which extracts 4 fields from a database table into the String type of Java. Then this String object is tokenized and then within these tokens I search for the text the user has used.
    Once, I faced this problem that one of the String pulled from the DB was so huge that I got the OutOfMemory exception. Simple stating it, the text was so big that my system could not store all that text in one String object.
    I resolved this by adding more heap to java by doing:
    java -Xmx512M MySearchClass
    Now I am afraid that if there is another HUGE text in the DB , I can still run out of memory.
    Do I just need to get MORE RAM to my system and allot really huge heap space, such as 4 GB or so , so that if need be, the JVM can use it ?
    Suppose I get a server machine with 4 GB RAM, at some stage I'd still have an upper limit on the amount of text I can extract from the DB, right ?
    Is there any other way to stream the text from DB and then search ? Remember that I am tokenizing the text in the algorithm, so I think I can't use a buffer, or can I ?
    thanks a ton !
    -AZ

    These are SQL queries. I use SQL queries to pull out the text in the DB and then store it in a String object. The problem is that the text in DB can get so huge that the String object cannot hold it anymore due to memory limits. The JVM gets assigned a heap size and the size of the String object can get really big to exceed the heap size.
    I used : java -Xmx512M MySearchClass
    That assigned 512MB to the JVM so I haven't encountered the OutOfMemory exception so far. But my guess is that for some other data set, the String can be so big that even 512MB might not be enough.
    This search algorithm will be deployed on a server class machine with about 4 GB RAM. So we can give JVM 4GB heap space to use. But its a limitation again , right ?
    These text in DB are extracted from PDF files.

  • Search Algorithms in Oracle

    What are the search algorithms that Oracle supports?

    You use SQL to select from a database. You can find the Oracle SQL syntax documentation on tahiti.oracle.com
    If you want to get down lower and find how the sql syntax is implemented, then some of this is documented on metalink.oracle.com in notes, and some is in books, and some is unknown ... (you could research your whole life ....)
    If you need to ask this question, I think you should start with the basics of blocks, memory, processes, undo, redo etc.

  • Creating A Binary search algorithm !!!! URGENT HELP

    hi ..
    i;m currently tryin to create a binary search algorithm ..
    the user should be able to input the size of the array
    and also the key that he would like to find.
    it also has to have to ability to measure the run time of the algorithm.. it how long it too the algorithm to search through the array and find they key..
    i have created 3 classes
    the first class is the binary search class
    which is the mathamatical side of things
    the second class is the Array
    this creates an array selection a random first number
    and then incrementing from there, so that its a sorted array
    the third class is the binary search class
    which is my main class.
    this class should take the users input
    and pass it to the array
    and the binary seach accordingly
    it should also measure the running time, from when it passes the array
    to the binary search class
    i am having a really hard time creating this last class.
    i have created the other 2 successfully
    the codes for the binary search class is as follows
    public class BinarySearch
         static int binSearch(int[] array, int val)
             // setting the start and the end of the array
              int low = 0, high = array.length;
              //While loop
              while(low <= high) {
              // How to find the mid point      
                  int mid = (low + high)/2;
                   // if the mid point is the value return the value
                  if(array[mid] == val) {
                        return mid;
                   // if the value is smaller than the mid point
                   // go search the left half
                   } else if(array[mid] > val) {
                        high = mid - 1;
                   //if the value is greater then the mid point
                   // go search the right half
                   } else if(array[mid] < val) {
                        low = mid + 1;
              // if value is not found return nothing
              return -1;
    }and the code for the Array class is as follows
    import java.util.Random;
    public class RandomSortedArray
        public int[] createArray(int length)
            // construct array of given length
            int[] ary = new int[length];
            // create random number generator
            Random r = new Random();
            // current element of the array; used in the loop below.  Starts at
            // -1 so that the first element of the array CAN be a 0
            int val = -1;
           for( int i = 0; i < length; i++)
                val += 1 + r.nextInt(10);
                ary[i] = val;
            return ary;
    }can some pne please help me create my binarysearchTest class.
    as i mentioned before
    it has to take the users input for the array size
    and the users input for the value that they want to find
    also needs to measure the running time
    thanks for all ur help in advance

    import java.util.*;
    public class AlgorithmTest
         public static void main(String args[])
             long StartTime, EndTime, ElapsedTime;
             System.out.println ("Testing algorithm");
             // Save the time before the algorithm run
             StartTime = System.nanoTime();
             // Run the algorithm
             SelectionSortTest1();
             // Save the time after the run
             EndTime = System.nanoTime();
             // Calculate the difference
             ElapsedTime = EndTime- StartTime;
             // Print it out
             System.out.println("The algorithm took " + ElapsedTime + "nanoseconds to run.");
        }this is the code i managed to work up for measuring the time..
    how would i include it into the main BinarysearchTest Class

  • Database search results

    i have a master results page (aspVB) from Dreamweaver 8. have
    search page from
    WebAssist Database Search using advanced text search (single
    search box)
    question 1 - when a user hits 'enter' on the search page, all
    records show,
    no matter if there is any value in the search box or not. How
    do you prevent
    any records showing, if 'enter' is selected and the search
    box is empty, and
    if there is a value in the search box and 'enter' is
    selected, show just the
    results from the search box value?
    question 2 - if more than one word is put in the search box,
    such as, 'green
    sol' the results show any thing with 'green' as well as
    anything
    with 'sol' and also anything with 'green sol'. how can you
    just have the
    results with 'green sol' and not 'green' or 'sol'. result
    wanted is 'green
    solutions' or 'green solar' or 'green sold'.
    thanks for your help
    jim balthrop

    Thank you for pointing out this problem. It has been fixed. (If you still see the wrong topic being linked to, try refreshing your browser. If it's still a problem, it might take a little while for the Database 11.2 documentation library to be updated on various systems worldwide. It did work just now for me.)

  • Java library for local search algorithms?

    Hi everybody,
    Could anyone please help me with the following?
    I am looking for a Java library with already implemented local search algorithms. Does such a thing exist? Would anyone recommend one?
    I am testing several AI programs and need to select the best parameters for each one (in a relatively large number of experiments). I could write my own search algorithm, of course, but it would be so much easier to use several already implemented algorithms and choose the best one.
    Thanks in advance for any pointers.
    Anna

    Here is an interesting question. Say you build the central control system of a rocket ship using Java, should you then be able to ask questions about rocket ships in Java forums?
    Well you can try, but I wouldn't hold your breath to find another rocket scientist in such a place. You may want to go to a forum where rocket scientists congregate in stead. Just a friendly tip.

  • How do I create a simple database search

    Either I'm being very stupid or all the manuals and books I'm
    reading really are skirting round the obvious question of how do I
    build a search page (using Dreamweaver 8) that searches a database
    using only valid values previously fetched from the database. Can
    anyone advise?
    Example:
    Say I've got a table called members which holds a list of
    members of a gym. Say I want to offer my users a way of filtering
    down the list of members by (say) home town and hair colour.
    What I want to do is offer my users two lists which are
    generated using Datasets: One listing all the unique hometowns of
    my members and one listing unique hair colours. I want my users to
    enter search criteia but only valid ones - so they must select from
    the list of valid values I provide them with. I'll then filter my
    main resulkts based on what they select.
    But how do I do this? Not using URL variables obviously. And
    not using Form variables as you can't list database items in a form
    variable (can you?). I've got "DW 8: The Missing Manual" which I
    was hoping would give me the answers I'm looking for but instead
    seems to get very excited about the power of Dreamweaver 8 then
    skirts round the fact that you can't use current database values to
    do a database search!!! (unless I'm missing something that is)
    While I'm at it - I'd idealy want to achieve all this on a
    single page but I'm willing to concede on that if technology
    predicts otherwise.
    ASP.NET (VB)
    Dreamweaver 8.0.2
    Any guidance would be very welcome. (I'm new to all this by
    the way)

    > But how do I do this? Not using URL variables obviously.
    Querystrings could be used if you wanted to. That'd be nice
    so people could
    bookmark the page.
    > ASP.NET (VB)
    Might be time to consider NOT using DW, as it no longer
    supports ASP.net
    But, in pseudo code:
    onPageLoad:
    - get list of hometowns
    - populate hometown dropdown
    - get list of hair colors
    - populate hair color dropdown
    onPostBack:
    - check to see if there is a hometown selected
    - check to see if there is a hair color selected
    - if either of the above, modify the WHERE clause in your
    SQL query to
    reflect those values.
    If you wanted to add querystrings, modify the logic as such:
    onPageLoad:
    - get list of hometowns
    - populate hometowndropdown
    - get list of hair colors
    - populate hair color dropdown
    - check for querystrings
    - if they exist, grab them, modify the WHERE clause in your
    SQL query to
    reflect those values and show the results.
    onPostBack:
    - check to see if there is a hometown selected
    - check to see if there is a hair color selected
    - do a response.redirect to this page adding the appropriate
    querystrings
    if either of the above had values.
    -Darrel

  • Capture database search string

    Thanks to all who help,
    I maintain a database search utility on our company Intranet that was developed using FrontPage (our only company standard development tool). The user enters a product code and initiates the search. When the results are found in the database, the original page reloads and the information about the product displays below the original. I have a "Print the results" button on the page that, at present, prints the entire page.
    What I would like to be able to do is have the print button actually open another window that displays only the information that the user requested, so that they don't get my original page design (and all the unnecessary information) on their printout.
    Would someone please help me to implement this change.
    Thanks,
    Bob

    I don't know what you're talking about with back and front end of scripts, but if you think this is a Java-related question, then please post some Java code that you've tried to write to solve this problem, or some thoughts on what classes and methods might be used.
    Also keep in mind that JavaScript is not Java and this forum is not relevant to JavaScript in any way.

  • SOON: Advisor Webcast - WebCenter Content: Database Searching and Indexing

    Learn how to improve search performance by attending the 1 hour Advisor Webcast: WebCenter Content: Database Searching and Indexing on March 15, 2012 at 16:00 UK / 167:00 CET / 08:00 am Pacific / 9:00 am Mountain / 11:00 am Eastern. For details, go here https://support.oracle.com/CSP/main/article?cmd=show&type=NOT&id=1399682.1.
    TOPICS WILL INCLUDE:
    * Optimize the database index for faster searching
    * Locate WebCenter Content problematic queries
    * Use SQL Developer to find explain plans and profile SQL statements
    * Configure WebCenter Content to tweak search settings
    Edited by: user754652 on Jan 30, 2012 7:44 AM
    Edited by: user754652 on Mar 7, 2012 7:09 AM

    Hi All,
    Not sure if this is the right forum however I am not able to find the installation for Release 11gR1: 11.1.1.7.0 at http://www.oracle.com/technetwork/middleware/webcenter/content/downloads/index.html
    Any pointers where can I download from?
    Thanks

  • How to chart database search results?

    I'm new to Macs and Appleworks. I want to make a graph/chart of numbers that come from summary fields of a database search. Do I somehow link the database search results to a spreadsheet? Can I put the graph on a database report page? Thanks.

    Maybe this will help.
    You can create a bar chart this way.
    You have some summary fields to be charted, call them sum1, sum2, etc.
    Create another summary field for each that you have. The basic formula will be:
    LEFT("||||||||||||||||||||||||||||||||||",SUM('sum1'))
    This will give a number of line characters to match the sums. Position these fields to form a chart. You can modify the font and style, etc.
    There're also some variations. If your totals are large, you could divide the final parameter by something:
    LEFT("||||||||||||||||||||||||||||||||||",SUM('sum1')/2)
    And even multiply by something if your totals are small.
    This is using the standard line character. You could also use dingbats - the "n" will give a solid square: LEFT("nnnnnnnnnnn",SUM('sum1'))
    Additionally, to fill gaps between characters, you can create two chart fields for each total and overlap them.
    Now, these are summary fields and so need to be on the summary part of the layout, and you must be in Page View to see.
    David

  • Solution Database search option doesn't work

    Hi,
    Iu2019m working withSAP Solution Manager 7.0 (SID=SMG) is at SP 17.
    SAP_BASIS 700 0016 SAPKB70016 SAP Basis Component
    SAP_ABA 700 0016 SAPKA70016 Cross-Application Component
    ST-PI 2005_1_700 0006 SAPKITLQI6 SAP Solution Tools Plug-
    In
    PI_BASIS 2006_1_700 0006 SAPKIPYM06 Basis Plug-In
    (PI_BASIS) 2006_1_700
    SAP_BW 700 0018 SAPKW70018 SAP NetWeaver BI 7.0
    SAP_AP 700 0013 SAPKNA7013 SAP Application Platform
    BBPCRM 500 0012 SAPKU50012 BBPCRM
    BI_CONT 703 0011 SAPKIBIIQ1 Business Intelligence Content
    ST 400 0017 SAPKITL427 SAP Solution Manager Tool
    CPRXRPM 400 0009 SAPK-40009INCPRXRPM SAP
    xRPM/cProjects/cFolders 4.00 (ABAP)
    ST-A/PI 01K_CRM560 0000 - Application Servicetools for
    CRM 500 510
    ST-ETP 100 0000 - Extended tracability package
    ST-ICO 150_700 0015 SAPK-1507FINSTPL SAP Solution Manager
    Implementation Cont
    ST-SER 700_2008_1 0004 SAPKITLOO4 SAP Solution Manager
    Service Tools
    Service Desk is working, and I'd like use solution database option. So
    I've done whole configurations and their work fine.
    - I've created a support message logging at solman_workcenter
    transaction.
    - Using this support message and SAP Tutor delivered at
    service.sap.com/rkt-solman I've created a solution database.
    - I've logged at CRMC_SAF_TOOL TA->I've marked all checkbox->Check
    button->goto->index
    (http://solutionmanager.servicesap.grupotec.es:8002/sap
    (bD1lcyZjPTAxMA==)/bc/bsp/sap/crm_ei_cmp_admn/default.htm) and I've
    indexed the problem/solution just created following SAP Tutor.
    - If I log on at is01 TA and I view the problem(24)/solution(500000000019)
    just indexed
    The problem is that when I'm at crm_dno_monitor TA->select a support
    message(8000001233)->edit view->Transaction Data area->Solution
    Database tab->
    I press button "Search SDB"->so a popup opens "Problem Search Criteria"
    titled->and I'm not able to find any results I type words(dump, mara,
    table, reboot)
    these words appear at problem/solution description, I type these word
    at - with ANY of the words:, - with ALL of the words:, - WITHOUT the
    words: but
    I haven't hit at the search. At this same pop-up I fill Reference-
    >Problem number field and I type: 24, a hilist appears with the
    problem/solution just created but when I press button continue it
    doesn't insert the hit at the support message solution database table.
    I've followed SAP Note 331109 but transaction IS02 doesn't exists.
    The service connection to Solution Manager is opened and access data
    (user solmanadm) is maintained too.
    Please, could you help me?
    Thanks and Regards,
    Raul.

    Problem solved using TA crm_saf_tool->index->check

  • Turn a text database search result into a clickable .pdf link to specific images

    Hello and Good Afternoon all. 
    This is baffling me to no end, pretty desperate at this point. 
    I have a successfully implemented a search and results page from my database table 'products'.  The results page displays a field from this table as products, msds, datasheet, description.  I would like the msds & datasheet results to be clickable links to files in my images/pdf/msds folder or the images/pdf/datasheet folder. 
    The links are specific filenames such as msds-product.pdf or datasheet-product.pdf..  How can I get these links to open the exact filename that comes up in my search result?  I can make it open the entire folder but I want just the specific file. 
    I don't write code very well - thank you for any help you can provide.  Cindy

    Hi Murray - Here is the exact code in DW on the results page with file names exposed in live view.  I am concerned about not properly implementing this statement - where exactly should I insert?
    <form action="data_search.php" method="get" name="data_results_form" id="data_results_form">
             <p> </p>
             <?php do { ?>
                  <table width="75%" border="0" align="center" cellpadding="5" cellspacing="5" summary="MSDS & Datasheet search results page.  You may click on the hyperlinks to download pdf for each document.">
                       <tr>
                            <td> </td>
                            <td> </td>
                            <td> </td>
                            <td> </td>
                       </tr>
                       <tr>
                            <td style="color: #686666">Product</td>
                            <td style="color: #686666">MSDS</td>
                            <td style="color: #686666">Datasheet</td>
                            <td style="color: #686666">Description</td>
                       </tr>
                       <tr>
                            <td style="color: #23276A; font-family: Gotham, 'Helvetica Neue', Helvetica, Arial, sans-serif; font-style: normal; font-size: 16px;"><?php echo $row_Recordset_results['product']; ?></td>
                            <td style="font-size: 16px"><a href="images/pdf/msds/"".pdf"><?php echo $row_Recordset_results['msds']; ?></a></td>
                            <td style="font-size: 16px"><?php echo $row_Recordset_results['datasheet']; ?></td>
                            <td style="font-size: 16px"><?php echo $row_Recordset_results['description']; ?></td>
                       </tr>
                  </table>
                  <?php } while ($row_Recordset_results = mysql_fetch_assoc($Recordset_results)); ?>
        </form>

  • Database Search Problem

    Hey,
    I am creating a database with a user profile, where a user can select their interests.
    i.e
    Golfing Yes/No
    Movies Yes/No
    Travelling Yes/No
    So, there are 20 interests like that, and each of them is a boolean.
    Would it be inefficient to create 20 boolean fields like that ?
    I kinda thought that would be inefficient (not sure if it's true) and thought of a way to put it into the database as a BYTE(20) stream, like
    1001010001011, where 1-yes, 0-no.
    However the problem is.. what if I want to do a search where only the first question is yes, and all the other does not matter ?
    For example.
    I want to search for a string like 1????????????, where ? could be 0 or 1.
    So here are my 2 questions:
    Will I need to traverse the whole database that way ? (use BYTE(20))
    or should I just code them as 20 separate booleans ?
    thanks !
    Dennis

    G'day DennisMV,
    I'd suggest 20 separate booleans. It may take some more space (however these are booleans, so the space would be extremely small!) . But it will save you alot of time writing code that you don't really need to. Also, hunting down small, sinister, evil bugs would be alot tougher using the stream. That's the direction i'd head in anyway.
    Good Luck,
    TimmyP

  • Database search not working

    Hi all,
    I am new to Orcale SES. I have to search database using SES. I have created database source with the following details:
    Database Connection String,User ID,Password,View,Document Count,URL Prefix, Parse Attributes,
    Remove deleted documents,Attachment Link Authentication Type
    When I schedule crawler on database, log file shows following:
    06:26:34:773 INFO     main          Total number of documents fetched = 0
    06:26:34:773 INFO     main          Document fetch failures = 0
    06:26:34:773 INFO     main          Document conversion failures = 0
    06:26:34:774 INFO     main          Total number of unique documents indexed = 0
    06:26:34:774 INFO     main          Total data collected = 0 bytes
    06:26:34:774 INFO     main          Total number of non-indexable documents = 0
    06:26:34:774 INFO     main          
    06:26:34:774 INFO     main          Number of times disk cache is full = 0
    crawl statistics is 0.
    Am I missing something here?
    Please help.
    Regards,
    Purnima

    Hi,
    I have given table name (TESTSES) in view parameter. Yes TESTSES table contains all the mandatory parameters.
    Crawler log file is not showing any errors. Following are the log file details:
    06:26:10:518 INFO     main          Loading training data /u01/apps/oracle/product/11.1.2.0.0/ses/seshome/search/data/training//german.dat for language de
    06:26:10:528 INFO     main          Loading training data /u01/apps/oracle/product/11.1.2.0.0/ses/seshome/search/data/training//italian.dat for language it
    06:26:10:540 INFO     main          Loading training data /u01/apps/oracle/product/11.1.2.0.0/ses/seshome/search/data/training//portugue.dat for language pt
    06:26:10:551 INFO     main          Loading training data /u01/apps/oracle/product/11.1.2.0.0/ses/seshome/search/data/training//spanish.dat for language es
    06:26:10:570 INFO     main          Done
    06:26:11:636 INFO     filter_0          Initializing crawler plug-in "Database Crawler Plugin"
    06:26:11:636 INFO     crawler_4          Initializing crawler plug-in "Database Crawler Plugin"
    06:26:11:637 INFO     crawler_4          AppJDBC crawler initialization: Connection string is jdbc:oracle:thin:@nacisdell221.us.oracle.com:1534:BFNDEV
    06:26:11:636 INFO     crawler_3          Initializing crawler plug-in "Database Crawler Plugin"
    06:26:11:636 INFO     filter_0          AppJDBC crawler initialization: Connection string is jdbc:oracle:thin:@nacisdell221.us.oracle.com:1534:BFNDEV
    06:26:11:637 INFO     crawler_2          Initializing crawler plug-in "Database Crawler Plugin"
    06:26:11:637 INFO     crawler_2          AppJDBC crawler initialization: Connection string is jdbc:oracle:thin:@nacisdell221.us.oracle.com:1534:BFNDEV
    06:26:11:637 INFO     crawler_3          AppJDBC crawler initialization: Connection string is jdbc:oracle:thin:@nacisdell221.us.oracle.com:1534:BFNDEV
    06:26:11:636 INFO     filter_1          Initializing crawler plug-in "Database Crawler Plugin"
    06:26:11:638 INFO     filter_1          AppJDBC crawler initialization: Connection string is jdbc:oracle:thin:@nacisdell221.us.oracle.com:1534:BFNDEV
    06:26:11:649 INFO     crawler_4          Loading oracle Driver
    06:26:11:649 INFO     crawler_4          Connecting to database jdbc:oracle:thin:@nacisdell221.us.oracle.com:1534:BFNDEV, user: arg
    06:26:11:650 INFO     filter_0          Loading oracle Driver
    06:26:11:651 INFO     filter_0          Connecting to database jdbc:oracle:thin:@nacisdell221.us.oracle.com:1534:BFNDEV, user: arg
    06:26:11:653 INFO     crawler_2          Loading oracle Driver
    06:26:11:653 INFO     crawler_2          Connecting to database jdbc:oracle:thin:@nacisdell221.us.oracle.com:1534:BFNDEV, user: arg
    06:26:11:658 INFO     crawler_3          Loading oracle Driver
    06:26:11:658 INFO     crawler_3          Connecting to database jdbc:oracle:thin:@nacisdell221.us.oracle.com:1534:BFNDEV, user: arg
    06:26:11:668 INFO     filter_1          Loading oracle Driver
    06:26:11:668 INFO     filter_1          Connecting to database jdbc:oracle:thin:@nacisdell221.us.oracle.com:1534:BFNDEV, user: arg
    06:26:15:328 INFO     crawler_4          Crawler plug-in "Database Crawler Plugin" crawl starts
    06:26:15:331 INFO     crawler_4          Previous max. last modified date: 2010-05-24T00:00:00
    06:26:15:331 INFO     crawler_4          Query key only= false; SQL Statement = select * from (select * from (TESTSES) mqry where LASTMODIFIEDDATE > ?) where ROLLNO = ?
    06:26:15:331 INFO     crawler_4          No subqueries to create PreparedStatements
    06:26:15:331 INFO     crawler_4          No subqueries to create PreparedStatements
    06:26:18:332 INFO     filter_1          Crawler plug-in "Database Crawler Plugin" crawl starts
    06:26:18:334 INFO     filter_1          Previous max. last modified date: 2010-05-24T00:00:00
    06:26:18:334 INFO     filter_1          Query key only= false; SQL Statement = select * from (select * from (TESTSES) mqry where LASTMODIFIEDDATE > ?) where ROLLNO = ?
    06:26:18:334 INFO     filter_1          No subqueries to create PreparedStatements
    06:26:18:334 INFO     filter_1          No subqueries to create PreparedStatements
    06:26:21:366 INFO     crawler_3          Crawler plug-in "Database Crawler Plugin" crawl starts
    06:26:21:367 INFO     crawler_3          Previous max. last modified date: 2010-05-24T00:00:00
    06:26:21:368 INFO     crawler_3          Query key only= false; SQL Statement = select * from (select * from (TESTSES) mqry where LASTMODIFIEDDATE > ?) where ROLLNO = ?
    06:26:21:368 INFO     crawler_3          No subqueries to create PreparedStatements
    06:26:21:368 INFO     crawler_3          No subqueries to create PreparedStatements
    06:26:24:367 INFO     crawler_2          Crawler plug-in "Database Crawler Plugin" crawl starts
    06:26:24:368 INFO     crawler_2          Previous max. last modified date: 2010-05-24T00:00:00
    06:26:24:368 INFO     crawler_2          Query key only= false; SQL Statement = select * from (select * from (TESTSES) mqry where LASTMODIFIEDDATE > ?) where ROLLNO = ?
    06:26:24:368 INFO     crawler_2          No subqueries to create PreparedStatements
    06:26:24:368 INFO     crawler_2          No subqueries to create PreparedStatements
    06:26:27:415 INFO     filter_0          Crawler plug-in "Database Crawler Plugin" crawl starts
    06:26:27:416 INFO     filter_0          Previous max. last modified date: 2010-05-24T00:00:00
    06:26:27:416 INFO     filter_0          Query key only= true; SQL Statement = select URL,ROLLNO,LANG,LASTMODIFIEDDATE from (select * from (TESTSES) mqry where LASTMODIFIEDDATE > ?)
    06:26:27:686 INFO     filter_0          Master query execution time: 270ms
    06:26:27:686 INFO     filter_0          Previous max. last modified date: 2010-05-24T00:00:00
    06:26:27:687 INFO     filter_0          Query key only= false; SQL Statement = select * from (select * from (TESTSES) mqry where LASTMODIFIEDDATE > ?) where ROLLNO = ?
    06:26:27:687 INFO     filter_0          No subqueries to create PreparedStatements
    06:26:27:687 INFO     filter_0          No subqueries to create PreparedStatements
    06:26:27:687 INFO     filter_0          Shut down crawler plug-in "Database Crawler Plugin"
    06:26:27:956 INFO     filter_0          Shut down crawler plug-in "Database Crawler Plugin"
    06:26:28:227 INFO     filter_0          Shut down crawler plug-in "Database Crawler Plugin"
    06:26:28:497 INFO     filter_0          Shut down crawler plug-in "Database Crawler Plugin"
    06:26:28:768 INFO     filter_0          Shut down crawler plug-in "Database Crawler Plugin"
    06:26:29:038 INFO     filter_0          Shutting down all crawling threads...
    06:26:29:038 INFO     filter_0          Crawler plug-in "Database Crawler Plugin" crawl finishes
    06:26:29:039 INFO     filter_0          Shut down document service agent "Default pipeline"
    06:26:29:039 INFO     crawler_4          Crawler plug-in "Database Crawler Plugin" crawl finishes
    06:26:29:040 INFO     filter_1          Crawler plug-in "Database Crawler Plugin" crawl finishes
    06:26:29:041 INFO     crawler_2          Crawler plug-in "Database Crawler Plugin" crawl finishes
    06:26:29:041 INFO     crawler_3          Crawler plug-in "Database Crawler Plugin" crawl finishes
    06:26:29:061 INFO     cache_0          Caching thread cache_0 returns without getting a file
    06:26:29:062 INFO     cache_0          Shutting down all caching threads...
    06:26:29:062 INFO     cache_1          Caching thread cache_1 returns without getting a file
    06:26:29:062 INFO     cache_2          Caching thread cache_2 returns without getting a file
    06:26:29:062 INFO     cache_0          Total number of documents cached = 0
    06:26:29:062 INFO     cache_0          Total data collected = 0 bytes
    06:26:29:062 INFO     cache_0          Indexing log file is "search_i1ds4.log" under oracle_home/ctx/log/
    06:26:29:098 INFO     cache_0          Indexing started at 5/24/10 6:26 AM
    06:26:29:098 INFO     cache_0          Task ID = 19
    06:26:29:234 INFO     monitor          Remote command "reportstatistics" received, argument = "null"
    06:26:29:262 INFO     monitor          Executing remote command "reportstatistics"
    06:26:29:266 INFO     monitor          Send back remote command execution result
    06:26:29:515 INFO     cache_0          Indexing completed at 5/24/10 6:26 AM
    06:26:34:518 INFO     cache_0          Done
    06:26:34:518 INFO     main          Shutting down crawler...
    06:26:34:518 INFO     main          Shut down crawler plug-in "oracle.search.plugin.db.DBCrawlerManager"
    06:26:34:718 INFO     monitor          Remote command "reportstatistics" received, argument = "quit"
    06:26:34:718 INFO     monitor          Executing remote command "reportstatistics"
    06:26:34:719 INFO     monitor          Send back remote command execution result
    06:26:34:772 INFO     main          Done
    06:26:34:772 INFO     main          
    06:26:34:772 INFO     main          =================== Crawling results ===================
    06:26:34:773 INFO     main          Crawling started at 5/24/10 6:26 AM
    06:26:34:773 INFO     main          Crawling stopped at 5/24/10 6:26 AM
    06:26:34:773 INFO     main          Total crawling time = 0:0:28
    06:26:34:773 INFO     main          
    06:26:34:773 INFO     main          Total number of documents fetched = 0
    06:26:34:773 INFO     main          Document fetch failures = 0
    06:26:34:773 INFO     main          Document conversion failures = 0
    06:26:34:774 INFO     main          Total number of unique documents indexed = 0
    06:26:34:774 INFO     main          Total data collected = 0 bytes
    06:26:34:774 INFO     main          Total number of non-indexable documents = 0
    06:26:34:774 INFO     main          
    06:26:34:774 INFO     main          Number of times disk cache is full = 0

  • Database-Searching for dates

    If I enter in an exact date (such as 7/9/06) in my database's Find layout that matches an existing record then AppleWorks finds the record. But I want to find all records that contain ANY date in the date field. If I type in a character in the date field that is bound to be present, such as 0 (zero), AppleWorks doesn't find anything. I have to enter an exact date. Is there a way to search for all records in which the date field is not empty?

    From the Organize menu, choose "Show All Records".
    Again from the Organize menu, choose "Match". In the dialog select the "All" dropdown and choose "Logical". Click on the "ISBLANK" entry, then from the left column click on the date field you're trying to search. Your search field should look like: ISBLANK('date')
    (... the parentheses will contain the actual name of the field you chose)
    Click "OK" and the matched records will have been selected.
    Again from the Organize menu, choose "Hide Unselected"

Maybe you are looking for

  • Solaris Management Console hanging

    Did anyone have a similar problem? We are running Solaris Management Console 2.1 on Solaris 10 update 3 It was working fine until recently. Now, it hangs forever. We have no problem in launching it, loging to using our normal account, and switching t

  • How to add text to a polygon shape?

    I created a triangle: <Polygon Name="triangle_top" Points="0,0 130,0, 130,130" Stroke="Black" /> I would like to add text to it without adding a label. how should I do it?

  • Project resource Management: Discoverer reports for Utilization.

    Hello, We are planning to use PJRs discoverer reports. Is it mandatory to use PJI for the same? Also what is the exact difference in new and old utilizaiton models? It will be great f you can point me to some proper docs on this one. thanks fo ryour

  • I made eight radio buttons exclusive by each other.But It made the orignal program slow down.

    I made eight radio buttons exclusive by each other. But It made the original program slow down. I insert them parallel to the original program, ie, they are excuted at the same time, I think. But I found that the speed before I insert it is faster th

  • User Roles in XI

    Hi, I would like to restricted my users to access some objects in IR so, i tryed  with the follwoing blog but, /people/michal.krawczyk2/blog/2005/05/25/xi-how-to-add-authorizations-to-repository-objects when i click the change button in the repositor