Re: Normalising an existing table - how? - Mailing list pgsql-sql

From Graham Leggett
Subject Re: Normalising an existing table - how?
Date
Msg-id 40DBF70A.6060605@sharp.fm
Whole thread Raw
In response to Re: Normalising an existing table - how?  (Richard Huxton <dev@archonet.com>)
Responses Re: Normalising an existing table - how?  (Richard Huxton <dev@archonet.com>)
List pgsql-sql
Richard Huxton wrote:

>> How would I put the primary key of each row in newtable back into 
>> oldtable? Also, newtable already exists and contains data - I need to 
>> add normalised data to an already partially normalised database.

> How can newtable contain data if you don't have any keys for it?
> 
> Perhaps a fuller example, with the schemas of the tables in question 
> would help.

I have a system that keeps track of money. Part of the system's money 
handling is already normalised, in that there is a money table, 
containing information about the amount concerned, the amount of tax 
appropriate, the currency involved, etc. Part of the system is not 
normalised, in that a simple column in table contains the amount of 
money, but not the tax appropriate, nor the currency involved. My task 
is to fix this situation to make it consistent throughout.

Because the database is partially normalised, the money table already 
contains rows corresponding to the properly normalised part of the 
database. New rows need to be added on top of the existing rows, 
replacing the rest of the columns that need to be normalised. As a 
result, creating a new money table is not possible, as this table 
already exists.

Regards,
Graham
--


pgsql-sql by date:

Previous
From: Radu-Adrian Popescu
Date:
Subject: Re: feature request ?
Next
From: Richard Huxton
Date:
Subject: Re: Normalising an existing table - how?