Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have a trigger for a certain table in my database,

CREATE TRIGGER trig_trig
AFTER DELETE OR UPDATE OR INSERT ON A 
FOR EACH ROW
EXECUTE PROCEDURE trig_func();

anyway.. i want to create a copy of the old table, and then run some tests on the difference between the 2.

to copy a table is easy , simply i do :

CREATE OR REPLACE FUNCTION trig_func() RETURNS TRIGGER AS $$
BEGIN

CREATE TABLE temp as(SELECT * FROM A);
DROP TABLE temp;
return new; 
END;
$$ LANGUAGE plpgsql;

but i want to get the version before and after the change. this will simply give me one of them i tried:

CREATE TABLE temp as(SELECT * FROM OLD.A); 

or

CREATE TABLE temp as(SELECT * FROM NEW.A);

but i just get an error.

does anyone know how to do it?

thanx. matt

share|improve this question
This is nothing to do with "SQL Server" from Microsoft at all... tags changed to reflect the question – gbn Dec 5 '11 at 19:44

1 Answer

up vote 0 down vote accepted

OLD and NEW are pseudo-records. Rows, not tables, you can't select from them.

I can hard suggest how to do it, because it is not clear what exactly your intention is. Maybe you want to create one copy BEFORE the operation and one AFTER? In separate triggers?

share|improve this answer
hey, thanx for the response.. that is exactly what i want. i want to have the copy of the table before it was changed, and then compare it to the new copy. what do you mean by seperate trigers? – user690936 Dec 5 '11 at 19:51
you have a trigger AFTER DELETE... — what I mean is creating another trigger with BEFORE. I hope your table isn't too big :) – Michael Krelin - hacker Dec 5 '11 at 19:55
thanx. you helped me allot. – user690936 Dec 6 '11 at 0:28
You're welcome. – Michael Krelin - hacker Dec 6 '11 at 7:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.