Re: XML -> PG ?

Поиск
Список
Период
Сортировка
От Gauthier, Dave
Тема Re: XML -> PG ?
Дата
Msg-id 482E80323A35A54498B8B70FF2B879800400FFD347@azsmsx504.amr.corp.intel.com
обсуждение исходный текст
Ответ на Re: XML -> PG ?  (Merlin Moncure <mmoncure@gmail.com>)
Ответы Re: XML -> PG ?  (Thomas Kellerer <spam_eater@gmx.net>)
Список pgsql-general
Maybe...

<ALL>
  <EMPLOYEES>
    <EMP EMP_NAME="JOE" JOB="CARPENTER" />
    EMP EMP_NAME="FRANK" JOB="PLUMBER"/>
    EMP EMP_NAME="SUE" JOB="CARPENTER"/>
  </EMPLOYEES>
  <JOBS>
    <JOB JOB_NAME="CARPENTER" SALARY=25.50 />
    <JOB JOB_NAME="PLUMBER" SALARY=28.75 />
  </JOBS>
</ALL>

...equals...

create table employees (emp_name varchar[64], job varchar[64]);
create table jobs (job_name varchar[64], salary float);
insert into employees (emp_name,job) values ('JOE','CARPENTER');
insert into employees (emp_name,job) values ('FRANK','PLUMBER');
insert into employees (emp_name,job) values ('SUE','CARPENTER');
insert into jobs (job_name,salary) values ("CARPENTER",25.50);
insert into jobs (job_name,salary) values ("PLUMBER",28.75);

After that, it's up to the user to understand that employees.job = jobs.job_name and index appropriately.





-----Original Message-----
From: Merlin Moncure [mailto:mmoncure@gmail.com]
Sent: Wednesday, May 06, 2009 11:23 AM
To: Gauthier, Dave
Cc: pgsql-general@postgresql.org
Subject: Re: [GENERAL] XML -> PG ?

On Wed, May 6, 2009 at 10:47 AM, Gauthier, Dave <dave.gauthier@intel.com> wrote:
> Is there a way to read an XML file into a postgres DB?  I'm thinking that it
> will create and relate whatever tables are necessary to reflect whatever's
> implied by the XML file structure.

since xml is basically completely unstructured, you are not giving
enough information about what you'd like to do. that said, be sure and
check out the pg xml extensions...

merlin

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

Предыдущее
От: Christophe
Дата:
Сообщение: Re: XML -> PG ?
Следующее
От: Joao Ferreira gmail
Дата:
Сообщение: Re: XML -> PG ?