delete cascade question - Mailing list pgsql-admin

From Glenn MacGregor
Subject delete cascade question
Date
Msg-id 408821D6.2000106@highstreetnetworks.com
Whole thread Raw
Responses Re: delete cascade question
List pgsql-admin
Hi All,

I am using a cascade delete on the following table:

vid    vname        parentname
1     n1@test.com
2     n2@test.com         n1@test.com
3     n3@test.com         n1@test.com
4     n4@test.com         n1@test.com
5     n5@test.com         n3@test.com

So the delete cascade states if I am deleting a row whose vname matches
the parentname delete those rows and it works fine.

I just changed the values of parentname (but the vname values stay the same)

vid    vname        parentname
1     n1@test.com
2     n2@test.com         n1
3     n3@test.com         n1
4     n4@test.com         n1
5     n5@test.com         n3

Is there a way to do the same cascade delete with these values? I can
select the correct info from vname in a query:

select substring(vname, from 0 for position('@' in vname)) from table1;

This works, so I tried to put that in the cascade but it failed.

Is there any way to accomplish this?

    Thanks

        Glenn MacGregor



pgsql-admin by date:

Previous
From: Gaetano Mendola
Date:
Subject: Re: Real time replication of PG DBs accross two servers - any experiences?
Next
From: "Eloy Mier Pérez"
Date:
Subject: How configure Oracle 9i not case sensitive...