Search Postgresql Archives

Re: XML -> PG ?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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@xxxxxxxxx] 
Sent: Wednesday, May 06, 2009 11:23 AM
To: Gauthier, Dave
Cc: pgsql-general@xxxxxxxxxxxxxx
Subject: Re:  XML -> PG ?

On Wed, May 6, 2009 at 10:47 AM, Gauthier, Dave <dave.gauthier@xxxxxxxxx> 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

-- 
Sent via pgsql-general mailing list (pgsql-general@xxxxxxxxxxxxxx)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Postgresql Jobs]     [Postgresql Admin]     [Postgresql Performance]     [Linux Clusters]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]
  Powered by Linux