Describe in brief authentication modes in sql server.
No Answer is Posted For this Question
Be the First to Post Answer
What is the system function to get the current user's user id?
How to drop an existing table?
HOW TO RENAME A COLUMN NAME
you have couple of stored procedures that depend on a table you dropped the table and recreated it what do you have to do to reestablish those stored procedure dependencies?
what is for foreign key ??
4 Answers CarrizalSoft Technologies, Sabic,
How do I shrink an ldf file?
What is named query? : sql server analysis services, ssas
What is the difference between ddl and dml?
How do I create a trace in sql server?
Explain primary key, foreign key and unique key?
What gets stored inside msdb database?
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.