Thread: Nuance speech recognition server and Postgres

Nuance speech recognition server and Postgres

From
Denis Gasparin
Date:
Is there anyone using the Nuance speech recognition server with Postgresql?
The Nuance odbc database provider tryies to create its tables with
xxx.tttttt names where xxx is the name of the user accessing the db and
tttttt is the true name of the table.

Obviously Postgres is not accepting table names with the dot character.

Has anyone possible ideas to solve the problem?

Thank you for your help...

Doct. Eng. Denis Gasparin
---------------------------------------
denis@edistar.com


Re: Nuance speech recognition server and Postgres

From
Darko Prenosil
Date:
On Monday 14 October 2002 07:50, Denis Gasparin wrote:
> Is there anyone using the Nuance speech recognition server with Postgresql?
> The Nuance odbc database provider tryies to create its tables with
> xxx.tttttt names where xxx is the name of the user accessing the db and
> tttttt is the true name of the table.
>
> Obviously Postgres is not accepting table names with the dot character.
>

Postgres 7.3 accepts that format of table names, but the first part of the
table name is SCHEMA, which you must first create with CREATE SCHEMA.
It is all described in documentation.