Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

soundex error

Status
Not open for further replies.

Doug Barger

Programmer
Sep 24, 2019
1
0
0
US
select description,soundex(description) as sx from
parts
this generates the following error
<<<<<<<<<<<<<<<<<<<<<<<<
[LNA][Pervasive][ODBC Engine Interface]Error in expression: soundex ( description )
>>>>>>>>>>>>>>>>>>>>>>>>
 
What version of PSQL are you using? The soundex wasn't introduced until PSLQ v10. Also, what data type is the "description"? Does this query work against the DEMODATA database?

Code:
select description, soundex(description) from course

I tested it using PSQL v11 and got a result set.


Mirtheil
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top