I would like to return the top 50 most popular words

HI, I have a text column in mssql, I would like to return the
top 50 most popular words and their count(for all rows) excluding
the words
i
a
it
the
Any clue how to do this?

I done it with code like this, but it took about 200 seconds to finish and generated 300000 rows in WORDS
it would be cool if it could be done in pure sql, mabye it could be done using ms sql cursors
<cfset datasource = application.datasource>
<cfset datasource = application.datasource>
<cfquery name="q" datasource="#datasource#">
     select   * from    staff
</cfquery>
<cfloop query="q">
  <cfloop list="#comment#" index="word" delimiters=" ,?,.,!,;#chr(10)##chr(13)#">
    <cfquery name="q2" datasource="#datasource#">
             insert into WORDS values(
              <cfqueryparam value="#word#"     cfsqltype="cf_sql_varchar">  
            </cfquery>
  </cfloop>
</cfloop>

Similar Messages

Maybe you are looking for

  • Error while posting vendor clearing F-44

    Hello Sap experts, when we are trying to do vendor clearing in F-44, facing an error that "the entry EN 3  is missing in table 021T" message no FS100 when we tried it in t.code SE16N, we could not find this table. Kindly suggest what to do. Thanks &

  • Installing Photoshop Elements 13 Fails Extracting Files

    I get an error when I attempt to install Adobe Photoshop Elements 13 on my Windows 7 x64 machine.  It fails when extracting files. I have full read and write permission on my desktop.  I also have plenty of space.  I double checked requirements on th

  • Getting new windows to open in firefox

    Hey guys. Ive made a page where when you click on a pic, and a new window opens up. I controlled the size and all that with java script. Theres a link in that popup which i want to open another new normal window. By making the target blank it works f

  • DVI out port output @ 1920x1080?

    I have a 15" macbook pro (2nd gen i believe, it has the full aluminum casing and touchpad supports gestures). I was wondering if the DVI Out supports up to 1920x1080 resolution (without any scaling, ect.)? I was looking to buy a 1920x1080 native LCD

  • To generate PDF using BI APIs and loadjava utility

    Hi All, I am trying to generate PDF using BI APIs(FOProcessor etc). I have generated XML data through the PL/SQl procedure and storing it in a file. This file is loacted in database tier. The APIs is used through a simple java program which is applic