Re: Problems on "copy" statement

Поиск
Список
Период
Сортировка
От Leung Wing Lap Ellery
Тема Re: Problems on "copy" statement
Дата
Msg-id 425E831A.9000003@netvigator.com
обсуждение исходный текст
Ответ на Re: Problems on "copy" statement  (Michael Fuhr <mike@fuhr.org>)
Список pgsql-novice
Thanks all your help. The command run successfully as follow:

copy "HSI" from $$c:\java\hsi.txt$$


By the way, since I use a HTML table in mail but it seems not parsed
well in community, so it was strange to see several blank lines when run
SQL and get the schemaname and tablename.

Thanks all again for your kind help.

Rgds

Ellery Leung



Michael Fuhr wrote:

>On Wed, Apr 13, 2005 at 12:43:09PM -0400, Keith Worthington wrote:
>
>
>>On Thu, 14 Apr 2005 00:24:42 +0800, Leung Wing Lap Ellery wrote
>>
>>
>>>SELECT schemaname, tablename
>>>FROM pg_tables
>>>WHERE tablename ILIKE '%hsi%';
>>>
>>>get:
>>>
>>>schemaname     tablename
>>>
>>>public
>>>
>>>
>>>
>>>HSI
>>>
>>>
>>I wonder if there are some hidden characters or perhaps whitespace in the
>>table name.  It seems odd that the output of Michael's suggestion is split
>>across several lines.
>>
>>
>
>Hmmm...when I saw that I assumed it was just a matter of message
>formatting.  Is that what the query output really looks like?  What
>client are you using?  If you run the query in psql then the output
>should look like this:
>
> schemaname | tablename
>------------+-----------
> public     | HSI
>(1 row)
>
>If the COPY command I suggested in another message still fails with
>"relation does not exist" then please copy and paste the output of
>the following query:
>
>SELECT schemaname, quote_ident(tablename)
>FROM pg_tables
>WHERE tablename ILIKE '%hsi%';
>
>
>

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: duplicate rows mystery
Следующее
От: Olivier Thauvin
Дата:
Сообщение: Function with variable number of arguments