Hi
Is there a german version of soundex available? I read it's called
"Cologne Algorithm" - but i can't find anything.
Best regards
michael
---(end of broadcast)---
TIP 1: if posting/reading through Usenet, please send an appropriate
subsc
Thanks for the replies,
And all the functions work with levenstein and soundex? Can they also
return the percentage of similarity?
Regards
michael
---(end of broadcast)---
TIP 5: don't forget to increase your free space map settings
Hi
How can i do a full text fuzzy search with PgSQL?
For example: i got a text domain. I search for Postgresql
He should return a result for 'Postgresql' if i enter following values:
PostgreSQL, Postgresql, postgresql
but also
bostgresql, posdgresql, bosdgresql
Is this possible?
Regrads
michae
Hi!
I have a table called "tbltest". There i want to avoid multiple updates at
the same time. so i tried to use the transaction method.
transaction 1 transaction 2
BEGIN;
SET TRANSACTION ISOLATION LEVEL
SERIALIZABLE;