Re: Trigger function to know which fields are being updated

Поиск
Список
Период
Сортировка
От Jeff Eckermann
Тема Re: Trigger function to know which fields are being updated
Дата
Msg-id 20040510213856.65983.qmail@web20812.mail.yahoo.com
обсуждение исходный текст
Ответ на Trigger function to know which fields are being updated  ("Bernard Cheung" <cheungsw@hotmail.com>)
Список pgsql-sql
--- Bernard Cheung <cheungsw@hotmail.com> wrote:
> I am writing a trigger function. How can I know
> which fields are being 
> updated in the PL/SQL function?
> 
> For example I have a table here:
> 
> 
> CREATE TABLE COMPANY (
>   COMPANY_ID VARCHAR(10) NOT NULL,
>   NAME VARCHAR(30),
>   ADDRESS VARCHAR(30));
> 
> I want to write a trigger to block all update
> statements without updating 
> NAME. I tried the following code block and it
> doesn't work:
> 
> 
>   IF TG_OP = ''UPDATE'' THEN
>      IF NEW.NAME IS NULL THEN
>         RAISE NOTICE ''Field NAME must be
> provided!'';
>      END IF;
>   END IF;

That should work.  Perhaps "name" is not actually
null, but rather an empty string?  In that case, your
test needs to be: "IF NEW.NAME IS NULL OR NEW.NAME =
'''' THEN..."

> 
> Are there any functions like the Oracle's UPDATING()
> predicate?
> 
> Bernard Cheung
> 
>
_________________________________________________________________
> Linguaphone :  Learning English? Get Japanese
> lessons for FREE 
> http://go.msnserver.com/HK/46165.asp
> 
> 
> ---------------------------(end of
> broadcast)---------------------------
> TIP 1: subscribe and unsubscribe commands go to
majordomo@postgresql.org


    
__________________________________
Do you Yahoo!?
Win a $20,000 Career Makeover at Yahoo! HotJobs  
http://hotjobs.sweepstakes.yahoo.com/careermakeover 


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

Предыдущее
От: Jeff Kowalczyk
Дата:
Сообщение: update table where rows are selected by inner join?
Следующее
От: Stephan Szabo
Дата:
Сообщение: Re: update table where rows are selected by inner join?