Re: trigger

Поиск
Список
Период
Сортировка
От Aftab Alam
Тема Re: trigger
Дата
Msg-id 002101c5ecdd$03071310$ec1010ac@aftabn463
обсуждение исходный текст
Ответ на Re: trigger  (Richard Huxton <dev@archonet.com>)
Список pgsql-general
Hi there,

 CREATE TABLE emp_mas
(
  emp_com_cd char(2) NOT NULL,
  emp_loc_cd numeric NOT NULL,
  emp_cd numeric NOT NULL,
  emp_sal numeric,
  emp_m_name varchar(50),
  emp_full_name varchar(50),
  emp_sex varchar(1)
)

delete from emp_mas where emp_com_cd  = 'KB' and emp_loc_cd  = 1 and emp_cd
in (1,2);
insert into emp_mas values ('KB', 1, 1,1,'aftab','aftab alam','M');
insert into emp_mas values ('KB', 1, 1,2,'amit','amit sharma','M');

in the above statement if aftab is already available in the database then
the trigger does not allowing to delete the data for the database if not
insert statement is going to fire.

wating for reply.

thanks & regrds,
aftab








-----Original Message-----
From: pgsql-general-owner@postgresql.org
[mailto:pgsql-general-owner@postgresql.org]On Behalf Of Richard Huxton
Sent: Friday, November 18, 2005 7:06 PM
To: aalam@tatashare.com
Cc: pgsql-general@postgresql.org
Subject: Re: [GENERAL] trigger


Aftab Alam wrote:
> Hello,
>
> I want to create a trigger in PostgresSQL
>
> In trigger, Before inserting the record, if data is already in the table,
> the trigger fire the mesaage that data is already there, and after that
> trigger ckeck for next insert statement.

Aftab - can you explain in some more detail. Raising an error on an
insert will happen automatically if you violate a unique constraing.

What is this "next insert statment" you're talking about?

--
   Richard Huxton
   Archonet Ltd

---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
       subscribe-nomail command to majordomo@postgresql.org so that your
       message can get through to the mailing list cleanly


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

Предыдущее
От: Oliver Elphick
Дата:
Сообщение: Re: Upgrading from 8.0 to 8.1 on Debian
Следующее
От: Rikard Pavelic
Дата:
Сообщение: permission issue