Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is trigger ?

Answers were Sorted based on User's Feedback



What is trigger ?..

Answer / ramesh tankala

Trigeer is like stored procedure which executes
automatically .

Trigger is User defined data integrity

Is This Answer Correct ?    11 Yes 0 No

What is trigger ?..

Answer / piyush

Triggers are those procedures written in PL/SQL that fire whenever one of the following operation occur, DML statements on a particular schema object, DDL statements issued within a schema or database, user log on or log off events, server errors, database startup, or instance shutdown.

Is This Answer Correct ?    4 Yes 0 No

What is trigger ?..

Answer / indu bala

trigger is any event which is raised automatically by
database server after any instruction like
update,delete,insert is performed

Is This Answer Correct ?    4 Yes 2 No

What is trigger ?..

Answer / kalyana chakravarthy maddipati

A trigger is a stored procedure fires implicitly when ever a DML(Insert, update & Delete) occurs. It is stored at server side. Its compiled and no need to compile and execute always.

Is This Answer Correct ?    2 Yes 0 No

What is trigger ?..

Answer / ramya

Trigger is a server-side progrm used for events(user
actions-click,key press etc..)

Is This Answer Correct ?    3 Yes 3 No

What is trigger ?..

Answer / guest

its an willow

Is This Answer Correct ?    1 Yes 2 No

What is trigger ?..

Answer / abdulla

Trigger is Limited form stored procedure associated with tables.

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More SQL Server Interview Questions

Explain about sql server login?

0 Answers  


What do you mean by table and field in sql?

0 Answers  


How do I list the available tables in a database I'm querying?

4 Answers  


A successfully created SSIS package in SQL Server 2005 runs fine in MS BIDS and Integration Services. But gives error when run through an SQL-Job. What are the possible reasons?

2 Answers   Sapient,


How do you create a data source?

0 Answers  


CREATE TABLE [dbo].[HPMS_CompetencyTypes](CompetencyType varchar(50) ) go create trigger hpms_create_Insert on HPMS_CompetencyTypes for insert as if Exists ( select * from [HPMS_CompetencyTypes] where CompetencyType=(select * from [HPMS_CompetencyTypes])) begin Rollback tran Raiserror ('duplicate value',12,6) go insert HPMS_CompetencyTypes (CompetencyType) values ('new') I'm new to trigger can any one tell me where is the issue. Please.

2 Answers  


How to check if stored procedure is running in sql server?

0 Answers  


Does index slows down insert statements?

0 Answers  


What is instead of dml trigger?

0 Answers  


What is the difference between 2-Tier architecture and 3-Tier architecture

15 Answers   CTS, MCN Solutions, Oracle,


What are different types of constraints?

0 Answers  


How to add a new column to an existing table with "alter table ... Add" in ms sql server?

0 Answers  


Categories