Re: Help converting Oracle instead of triggers to PostgreSQL

Поиск
Список
Период
Сортировка
От Clint Stotesbery
Тема Re: Help converting Oracle instead of triggers to PostgreSQL
Дата
Msg-id BAY9-F346WKVc0sG2Vy000135cc@hotmail.com
обсуждение исходный текст
Ответ на Help converting Oracle instead of triggers to PostgreSQL  ("Clint Stotesbery" <cstotes@hotmail.com>)
Ответы Re: Help converting Oracle instead of triggers to PostgreSQL  (Robert Treat <xzilla@users.sourceforge.net>)
Re: Help converting Oracle instead of triggers to PostgreSQL  (Robert Treat <xzilla@users.sourceforge.net>)
Список pgsql-sql
Hi Christoph,
Thanks for the links but the techdoc links for converting from Oracle to 
PostgreSQL has 2 links that don't go to their intended targets anymore, one 
is in the 7.3 docs which is really limited (only covers simple things), and 
the Ora2Pg one I don't really get that well.

As far as updateable views, that's why you need instead of triggers. Regular 
triggers can't be done on views. So if I make an instead of trigger on a 
view that's for updates then I have an updateable view. I figured it out 
last night and I was along the right track in my original post with using an 
instead of rule to call a function. The trick is that I have to pass in all 
the old.col and new.col stuff into the function that I call from the rule. 
In Oracle since the instead of stuff is a trigger I had access to the 
new.col and old.col stuff. To do it in PostgreSQL rules I had to pass it all 
in. I'm going to write a doc about the problems I've encountered during my 
conversion project and then submit it to the Postgres people I think (to who 
though?). My programming and tech writing background should help I hope. 
Thanks for the suggestions Christoph.
-Clint


----Original Message Follows----
From: Christoph Haller <ch@rodos.fzk.de>
To: cstotesbery@acm.org
CC: pgsql-sql@postgresql.org
Subject: Re: [SQL] Help converting Oracle instead of triggers to PostgreSQL
Date: Thu, 04 Dec 2003 17:16:32 MET

Not sure if this is of any help ...
AFAIK there are no updatable views in pg.
But aside from that, I cannot see nothing what could not be
done by a pg trigger function:
CREATE TRIGGER name { BEFORE | AFTER } { event [OR ...] }    ON table FOR EACH { ROW | STATEMENT }EXECUTE PROCEDURE
func( arguments )
 

Also try

http://techdocs.postgresql.org/#convertfrom
Converting from other Databases to PostgreSQL

and/or

http://openacs.org/search/search?q=oracle+to+pg+porting&t=Search

HTH

Regards, Christoph


---------------------------(end of broadcast)---------------------------
TIP 5: Have you checked our extensive FAQ?
               http://www.postgresql.org/docs/faqs/FAQ.html

_________________________________________________________________
Get holiday tips for festive fun. 
http://special.msn.com/network/happyholidays.armx



В списке pgsql-sql по дате отправления:

Предыдущее
От: Christoph Haller
Дата:
Сообщение: Re: Help converting Oracle instead of triggers to PostgreSQL
Следующее
От: Wei Weng
Дата:
Сообщение: How do I convert an interval into integer?