Обсуждение: Foreign key from another database

Поиск
Список
Период
Сортировка

Foreign key from another database

От
antti.ijas@arcada.fi (Antti Ijäs)
Дата:
Hi,

Can I have a reference (with cascading), to another database? Let me
try to explain the situation a little better ;-)

I have a "main" database, clients. Then I have another database. Let's
call that program1. In program1 I have a table pTable and in clients I
have a table namned Client. Like this:

\c clients
CREATE TABLE Client (
CustId Serial PRIMARY KEY,
....
);

\c program1
CREATE TABLE pTable (
pId SERIAL PRIMARY KEY,
CustId INTEGER,
....
);

I would like the data to be dropped in pTable automatically, when the
client is deleted....

/ Antti



Re: Foreign key from another database

От
Joe Conway
Дата:
Antti Ijäs wrote:
> Can I have a reference (with cascading), to another database? Let me
> try to explain the situation a little better ;-)
>

You can write a trigger that uses functions from contrib/dblink to
execute a command in another database. However, without two-phase commit
support I don't think you can be sure the entire operation is atomic.

Joe



Re: Foreign key from another database

От
Rod Taylor
Дата:
You might want to look into using multiple schemas in a single database
rather than multiple databases.

If you switch to the above, then you can do what you're looking for.
Postgresql has limited cross database abilities (contrib/dblink), but
not cross database foreign keys.

On Thu, 2003-04-03 at 04:16, Antti Ijäs wrote:
> Hi,
>
> Can I have a reference (with cascading), to another database? Let me
> try to explain the situation a little better ;-)
>
> I have a "main" database, clients. Then I have another database. Let's
> call that program1. In program1 I have a table pTable and in clients I
> have a table namned Client. Like this:
>
> \c clients
> CREATE TABLE Client (
> CustId Serial PRIMARY KEY,
> ....
> );
>
> \c program1
> CREATE TABLE pTable (
> pId SERIAL PRIMARY KEY,
> CustId INTEGER,
> ....
> );
>
> I would like the data to be dropped in pTable automatically, when the
> client is deleted....
>
> / Antti
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 2: you can get off all lists at once with the unregister command
>     (send "unregister YourEmailAddressHere" to majordomo@postgresql.org)
--
Rod Taylor <rbt@rbt.ca>

PGP Key: http://www.rbt.ca/rbtpub.asc

Re: Foreign key from another database

От
CoL
Дата:
Use trigger on Client after delete, and dblink from contrib.

C.

Antti Ijäs wrote, On 4/3/2003 11:16 AM:
> Hi,
>
> Can I have a reference (with cascading), to another database? Let me
> try to explain the situation a little better ;-)
>
> I have a "main" database, clients. Then I have another database. Let's
> call that program1. In program1 I have a table pTable and in clients I
> have a table namned Client. Like this:
>
> \c clients
> CREATE TABLE Client (
> CustId Serial PRIMARY KEY,
> .....
> );
>
> \c program1
> CREATE TABLE pTable (
> pId SERIAL PRIMARY KEY,
> CustId INTEGER,
> .....
> );
>
> I would like the data to be dropped in pTable automatically, when the
> client is deleted....
>
> / Antti