Showing entries 38706 to 38715 of 44043
« 10 Newer Entries | 10 Older Entries »
Full-text searches in natural language

Answering yesterday to some newsgroup question about MySQL I have answered about the problem of the full-text searches in natural language.

Create and populate of a simple table with a full-text index.

mysql> create table ft_test(
    -> id int not null auto_increment,
    -> string text,
    -> fulltext index(string),
    -> primary key(id));
Query OK, 0 rows affected (0.09 sec)
mysql> insert into ft_test(string) values('forza inter'),('inter'),('viva inter'),('scudetto'),('champions league');
Query OK, 5 rows affected (0.10 sec)
Records: 5  Duplicates: 0  Warnings: 0
mysql> select * from ft_test;
+----+------------------+
| id | string           |
+----+------------------+
|  1 | forza inter      | 
|  2 | inter            | 
|  3 | viva inter       | 
|  4 | scudetto         | 
|  5 | champions league | 
+----+------------------+

Let's try first a search using the full-text index.

[Read more]
Full-text searches in natural language

Answering yesterday to some newsgroup question about MySQL I have answered about the problem of the full-text searches in natural language.

Create and populate of a simple table with a full-text index.

mysql> create table ft_test(
    -> id int not null auto_increment,
    -> string text,
    -> fulltext index(string),
    -> primary key(id));
Query OK, 0 rows affected (0.09 sec)
mysql> insert into ft_test(string) values('forza inter'),('inter'),('viva inter'),('scudetto'),('champions league');
Query OK, 5 rows affected (0.10 sec)
Records: 5  Duplicates: 0  Warnings: 0
mysql> select * from ft_test;
+----+------------------+
| id | string           |
+----+------------------+
|  1 | forza inter      |
|  2 | inter            |
|  3 | viva inter       |
|  4 | scudetto         |
|  5 | champions league |
+----+------------------+

Let’s try first a search using the full-text index.

[Read more]
A (round-about) story about Jeffry P. Bezos

The following is what i wrote on “43people.com” about the boss. I thought it was worth keeping in my own archives, since it’s actually a story about my life as it pertains to Mr. Bezos.


Back a few years ago, I was taking some classes down in Edmonds. The one I’m thinking of in particular was on the care and feeding of unix. We were using red hat linux 6.0 or some crufty version that wasn’t so crufty at the time.

Anyway, the prof didn’t require that we buy any books, but he made some suggestions. And he also suggested that we buy them on this new fangled “Internet” thing through a few of his friends down south in Seattle at this place called Amazon.com.

And thus was my introduction to O’Reilly and Associates. I soon thereafter bought a book called “ …

[Read more]
MySQL Meetup Silicon Valley now at Google

For the past year I’ve been running the MySQL Meetup Silicon Valley, and it’s been fun. We normally either have open discussion, or a scheduled topic. I often present something. Starting with the February 12 Meetup we will be meeting at Google HQ in Mountain View, CA. (Thanks, Google!)

Feel free to come on down or up to Mountain View and hang out with us on the second Monday of each month! Wanna speak at one of the Meetups? Let me know!

MySQL Tools for Visual Studio 1.1.0 Alpha released!

Today we have released the first build of MySQL Tools for Microsoft Visual Studio 1.1 -- a downloadable plug-in for Visual Studio 2005 that allows Windows developers to quickly build MySQL data-driven applications with Visual Studio. With this plug-in, developers will be able to create, modify and manage MySQL database objects with an easy-to-use interface from within the Visual Studio IDE.  This product is delivered as a package compatible with Visual Studio 2005 and delivers the following features:

This release builds on the original 1.0 plugin by adding support for using the DataSource wizard and the DataSet designer in Visual Studio 2005.  The Data Source wizard can be found by choosing Data|Add Data Source from the Visual Studio menu.  It provides a way to connect the generic data-handling capabilities of Visual Studio to our provider.  Once a data source is added then custom datasets can be created using the …

[Read more]
Log Buffer #29: a Carnival of the Vanities for DBAs

Welcome to Log Buffer, the weekly, human-edited overview of database blogs. I’m on my own again this week, but I hope to make some new Log Buffer friends soon. Let’s begin with Colin Charles’s blog, where he offers some background of the reception of MySQL AB’s introduction of its dual-distribution model, using a quote, “MySQL [...]

Oscon Call For Papers Closing Soon

O'Reilly's Oscon 2007 call for papers will be closing February 5.  This is the last chance to submit talks.  Hopefully there will be lots of good technical sessions on the LAMP stack, Web 2.0 and MySQL.  If you've never been to Oscon, this is a great chance to take part in what is arguably the best open source conference on the planet.  Hey, why be a spectator when you can be an active participant?

The O'Reilly Open Source Convention
July 23-27, 2007
Portland, Oregon

New Review: NGS Software's Typhon III

I recently had the opportunity to review NGS Software's updated Typhon III general vulnerability scanner. I had previously reviewed it two years ago and was impressed with the product then. The updated version has some nice, new features. You can read my review here: A Review of Typhon III. It'll hit the main page of SQLServerCentral.com on Feburary 5, 2007.


Technorati Tags: DATABASE | SQL Server | Microsoft SQL Server | SQL Server 2000 | …

[Read more]
OSDC-chat at HUMBUG this Saturday (27 Jan)

Since so many HUMBUG members are interested in the OSDC-2007-in-Brisbane idea, there will be an initial gathering to discuss ideas and such at the HUMBUG meeting this Saturday, 27 January.

HUMBUG is run at Room S201, Hawken Engineering Building (no. 50) at the University of Queensland. The usual HUMBUG meetings start at 3pm, but the OSDC discussion will commence at 5pm. I did some venue scouting earlier this week, so I'll be able to give some info on that.

See you there, if you can make it - otherwise if you are interested in helping and haven't dropped me a line yet, please do so (at my-first-name @ my-last-name dot com dot au). I'm keeping a list and will make sure everybody is included for follow-up meetings and everything else. Thanks!

FrOSCon 2007: Sponsors Wanted!



The second edition of the annual Free and Open Source Software Conference (FrOSCon) will take place on August 25-26 2007 at the University of Applied Sciences Bonn-Rhein-Sieg in Sankt Augustin, Germany near the cities of Bonn and Cologne.

FrOSCon is a two day conference that revolves around a rich schedule of talks, highlighting current topics in Free Software and Open Source. Moreover, developers will be offered space to organize their own meetings or subconferences.

If you are interested in sponsoring this great event, do not hesitate to …

[Read more]
Showing entries 38706 to 38715 of 44043
« 10 Newer Entries | 10 Older Entries »