Re: Existe alguna función similar a DIFFERENCE() y SOUNDEX() de sql server en Postgres?

From: "Yessica Brinkmann" <yessica(dot)brinkmann(at)gmail(dot)com>
To: "Yessica Brinkmann" <yessica(dot)brinkmann(at)gmail(dot)com>, "Jaime Casanova" <systemguards(at)gmail(dot)com>, Postgres Español <pgsql-es-ayuda(at)postgresql(dot)org>
Subject: Re: Existe alguna función similar a DIFFERENCE() y SOUNDEX() de sql server en Postgres?
Date: 2007-02-06 17:26:51
Message-ID: a3b0d4880702060926t72be9af8l2a05d06de88d9c@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

Hola.
Muchas gracias por el interés.

Si escribo:

\df+ difference

no me dice nada.

Si escribo:
select difference('probando', 'Provando');
Me dice:
ERROR: function difference("unknown", "unknown") does not exist
HINT: No function matches the given name and argument types. You may
need to add explicit type casts.
Gracias una vez más por la ayuda.
Yessica.

El 6/02/07, Alvaro Herrera <alvherre(at)commandprompt(dot)com> escribió:
> Yessica Brinkmann escribió:
>
> > El error que obtengo al tratar de ejecutar esta consulta es:
> > ERROR: function difference(character varying, character varying) does not
> > exist
> > HINT: No function matches the given name and argument types. You may
> > need to add explicit type casts.
> >
> > No sé si la función no existe o los tipos de datos están mal, ya que
> > los tipos de datos que utilizo para la comparación son de tipo
> > varchar, y supuse que de este modo debería funcionar la consulta.
> > También ya probé convirtiendo los argumentos a datos tipo text, ya que
> > esa es la definición explícita de la función, pero tampoco me
> > funcionó.
>
> Que te dice si ejecutas
> \df+ difference
> en psql?
>
> Aca instalé fuzzystrmatch y parece funcionar bien:
>
> alvherre=# select difference('probando', 'Provando');
> difference
> ------------
> 4
> (1 fila)
>
> No me queda claro si el valor es el correcto o no ;-)
>
> --
> Alvaro Herrera http://www.CommandPrompt.com/
> PostgreSQL Replication, Consulting, Custom Development, 24x7 support
>

In response to

Responses

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message Jonathan ....nem4 2007-02-06 17:31:07 Postgres+postgis
Previous Message Alvaro Herrera 2007-02-06 17:12:29 Re: Existe alguna función similar a DIFFERENCE() y SOUNDEX() de sql server en Postgres?