Re: large XML data type appears empty when doing a select

From: René Romero Benavides <ichbinrene(at)gmail(dot)com>
To: pgsql-novice(at)postgresql(dot)org
Subject: Re: large XML data type appears empty when doing a select
Date: 2012-01-14 15:26:19
Message-ID: 4F119E9B.9010609@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

El 12/01/2012 12:58 p.m., Paula Price escribió:
>
> Postgresql 9.0.5 on Red Hat/Linux
>
> In the table described below, the report xml contains xml (DOCUMENT)
> that ranges in size from 31KB to 518KB. When I do 'select reportxml
> from somereportxml where reportkey = 'silly';' the terminal screen
> appears blank with 'more' displayed on the bottom. The data is in the
> database -- verified using EMS SQL Studio for PostgreSQL -- but does
> not show up using pgadmin3 or typing the Select statement from the
> terminal screen. Any ideas?
>
> CREATE TABLE somereportxml
>
> (
>
> reportkey character varying(36) NOT NULL DEFAULT uuid_generate_v1(),
>
> objectname character varying(200) NOT NULL,
>
> reportxml xml NOT NULL,
>
> recordtimestamp timestamp(2) with time zone NOT NULL DEFAULT now(),
>
> CONSTRAINT pkey_somereportxml PRIMARY KEY (reportkey )
>
> )
>
> WITH (
>
> OIDS=FALSE
>
> );
>
> Paula Price
>
Maybe it has to do with this:

8.13.2. Encoding Handling

Care must be taken when dealing with multiple character encodings on the
client, server, and in the XML data passed through them. When using the
text mode to pass queries to the server and query results to the client
(which is the normal mode), PostgreSQL converts all character data
passed between the client and the server and vice versa to the character
encoding of the respective end; see Section 22.2
<http://www.postgresql.org/docs/9.0/static/multibyte.html>.
http://www.postgresql.org/docs/9.0/static/datatype-xml.html

Or maybe with this
"An alternative solution for comparing XML values is to*convert them to
character strings first, *but note that character string comparison has
little to do with a useful XML comparison method."

So**try casting reportxml to varchar

Greetings!
--
http://sharingtechknowledge.blogspot.com/

In response to

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message René Romero Benavides 2012-01-14 15:38:07 Re: large XML data type appears empty when doing a select
Previous Message Tom Lane 2012-01-13 23:15:07 Re: Postgres V9.1 - unix socket directory Ubuntu /tmp vs /var/run/postgres