Re: Trouble Accessing Schema-Qualified Table

Поиск
Список
Период
Сортировка
От bricklen
Тема Re: Trouble Accessing Schema-Qualified Table
Дата
Msg-id AANLkTik8pwk7n33Sbt4nBrMFgAWgO=3JA1YU99A7Uo2V@mail.gmail.com
обсуждение исходный текст
Ответ на Trouble Accessing Schema-Qualified Table  (Jerry Richards <jerry.richards@teotech.com>)
Ответы Re: Trouble Accessing Schema-Qualified Table  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-general
On Mon, Nov 15, 2010 at 8:35 AM, Jerry Richards
<jerry.richards@teotech.com> wrote:
>
> teo=# select * from sip_presence('ts_sofia_internal') where
> sip_presence.sip_user='1003';
>
> ERROR:  function sip_presence(unknown) does not exist
>
> LINE 1: select * from sip_presence('ts_sofia_internal') where sip_pr...
>                       ^
> HINT:  No function matches the given name and argument types. You might need
> to add explicit type casts.

The problem isn't the schema name, it is with the parameter you are
using in your function. Since you don't show the definition of your
function, I'm going to take a guess and assume your input
'ts_sofia_internal' is a TEXT type, so you might do something like:

select * from sip_presence('ts_sofia_internal'::TEXT) where ...

If not "TEXT" type, check your function to see what it expects the type to be

\df sip_presence

В списке pgsql-general по дате отправления:

Предыдущее
От: Jerry Richards
Дата:
Сообщение: Trouble Accessing Schema-Qualified Table
Следующее
От: Vincent Veyron
Дата:
Сообщение: Re: Basic Tutorials for 9.0