Ben Forta

Blog

January 9, 2007

CF/Flex Seminar In Ottawa

The November Flex + ColdFusion seminar in Toronto was so successful that we're doing it again, this time in Ottawa. Join me for a half day seminar to learn why there's simply no quicker or easier way to create Rich Internet Applications than the combination of Flex 2 and ColdFusion MX 7. I may even...

January 7, 2007

Flex Builder On Eclipse 3.2x

Several users have asked if Flex Builder now supports Eclipse 3.2x, and the answer is yes, as of the just released Flex Builder 2.0.1. Eclipse 3.1 is still installed by default if you select the "Flex Builder and Flex SDK" option, but if you have an existing Eclipse 3.2x installation then select...

January 6, 2007

Guy Kawasaki On LinkedIn

I signed up with LinkedIn a long time ago, and tend to not pay much attention to it until I receive an invite, which inevitably gets me to browse link trees finding other contacts I may know. Thus far, my only business use for LinkedIn has been routing requests from individuals who want to contact...

January 4, 2007

Ranking SQL Server 2005 Full-Text Search Results

When performing full-text searches you usually want not just results, but a ranking indicating how close a match is to what you are looking for. In SQL Server 2005, ranks are accessed via ranking functions - FULLTEXT searches are ranked using function FULLTEXTTABLE() and CONTAINS searches are...

January 3, 2007

Performing SQL Server CONTAINS Searches

SQL Server 2005 supports two forms of full-text search, FREETEXT and CONTAINS. CONTAINS is used to search for rows that contain words, phrases, partial phrases, words with the same stem, proximity searches, synonyms (using a thesaurus lookup), and more. Here is a simple example: SELECT note_id,...

January 3, 2007

Performing SQL Server FREETEXT Searches

FREETEXT provides a simple mechanism by which to perform SQL Server 2005 full-text searches, matching by meaning as opposed to exact text match. Here is a simple example: SELECT * FROM my_table WHERE FREETEXT(column1, 'rabbit food'); FREETEXT(column1, 'rabbit food') means perform a FREETEXT lookup...

January 3, 2007

Setting Up SQL Server 2005 Full-Text Searching

SQL Server 2005 features an integrated full-text search engine, which several people have e-mailed me to ask about recently. (ColdFusion users can use to perform queries using SQL Server full-text searches). If you want to play with SQL Server 2005 full-text search capabilities, you need to do the...

Page 266 of 489 (4884 posts)