From: | "Joshua D(dot) Drake" <jd(at)commandprompt(dot)com> |
---|---|
To: | mike <mike(at)redtux1(dot)uklinux(dot)net> |
Cc: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: Problem restoring Database |
Date: | 2004-04-01 19:08:54 |
Message-ID: | 406C68C6.7010300@commandprompt.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
mike wrote:
> I have just upgraded froom Fedora test1 to test2 which has upgraded
> postgres version from 7.4.2 to 7.4.5 (frrom rpm -q)
Uhh unless I am missing something what you have done is impossible.
There is no 7.4.5....
Are you sure it didn't upgrade from 7.3.2 to 7.3.5? Or WORSE:
7.3.2 to 7.4.2?
If you have your dump still, you should be in fine shape. What flags
did you pass to pg_dumpall?
Sincerely,
Joshua D. Drake
>
> I have used pg_dumpall to dump my database, the restore appeared to go
> OK, except there is no data in two of my tables (only these two)
>
> output from \d \d tb_invoice_header
> Table
> "public.tb_invoice_header"
> Column | Type
> | Modifiers
> --------------------+-----------------------+-----------------------------------------------------------------------
> inv_id | integer | not null default
> nextval('public.tb_invoice_header_inv_id_seq'::text)
> client_id | integer |
> payable_recievable | character varying(15) |
> amount | money |
> amount_paid | money |
> date_paid | date |
> cheque | character varying(20) |
> Indexes:
> "ih_pk" primary key, btree (inv_id)
>
> \d tb_invoice_detail
> Table "public.tb_invoice_detail"
> Column | Type |
> Modifiers
> -------------+------------------------+-------------------------------------------------------------------
> id | integer | not null default
> nextval('public.tb_invoice_detail_id_seq'::text)
> invoice_id | integer |
> code | character varying(15) |
> description | character varying(100) |
> amount | money |
> vat_code | smallint |
> line_total | money |
> Indexes:
> "tb_id_pk" primary key, btree (id)
> Foreign-key constraints:
> "$1" FOREIGN KEY (invoice_id) REFERENCES tb_invoice_header(inv_id)
>
> The dump file contains all the data
>
> Anyone have any idea what is happening, and more important how to rescue
>
> thanks
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster
--
Command Prompt, Inc., home of Mammoth PostgreSQL - S/ODBC and S/JDBC
Postgresql support, programming shared hosting and dedicated hosting.
+1-503-667-4564 - jd(at)commandprompt(dot)com - http://www.commandprompt.com
Mammoth PostgreSQL Replicator. Integrated Replication for PostgreSQL
Attachment | Content-Type | Size |
---|---|---|
jd.vcf | text/x-vcard | 640 bytes |
From | Date | Subject | |
---|---|---|---|
Next Message | Randall Skelton | 2004-04-01 19:48:45 | Re: Select Union |
Previous Message | John DeSoi | 2004-04-01 18:59:43 | Re: row-level security model |