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:[email protected]] 
Sent: Wednesday, May 06, 2009 11:23 AM
To: Gauthier, Dave
Cc: [email protected]
Subject: Re: [GENERAL] XML -> PG ?

On Wed, May 6, 2009 at 10:47 AM, Gauthier, Dave <[email protected]> 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 ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general

Reply via email to