Re: Xml Schemas

From: Peter Eisentraut <peter_e(at)gmx(dot)net>
To: pgsql-sql(at)postgresql(dot)org
Cc: Isaac Dover <isaacdover(at)gmail(dot)com>
Subject: Re: Xml Schemas
Date: 2009-06-08 20:53:34
Message-ID: 200906082353.36278.peter_e@gmx.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Saturday 06 June 2009 22:53:19 Isaac Dover wrote:
> Hello, I am attempting to build an xml representation of any database, but
> I'm having trouble doing so. I was interested in using the existing xml
> functions, such as "schema_to_xmlschema", but the results are strange and
> unusable. The resulting schema doesn't even contain the column names,
> though it doesn't include the table names. Often, the type information is
> incomplete as well.
>
> Are there any examples for using this family of functions,
> "schema_to_xmlschema", etc? My end goal is any xml representation of the
> database that includes type information.

It appears to me that there is some kind of bug in schema_to_xmlschema. As
you say, it misses a bunch of information, such as the column names of the
tables. As far as I can tell, the SQL standard actually defines it that way,
but that must be a bug.

If you use table_to_xmlschema, you will get the proper output, separately for
each table.

Note, however, that the XML mapping is not designed to be reversible.
Depending on what you want to do, this may not be the right format for you.

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Jyoti Seth 2009-06-09 09:32:05 pg_restore
Previous Message Richard Huxton 2009-06-08 17:57:47 Re: 'cost' and 'rows' for volitile function