What are tables in sql server?
No Answer is Posted For this Question
Be the First to Post Answer
List some case manipulation functions in sql?
Explain trigger and its types?
How to view existing indexes on an given table using sys.indexes?
Retrieve the unique rows from table without using UNIQUE and DISTINCT keywords.
What is the difference between varchar and nvarchar types?
What is the maximum rows in sql server table?
What are the steps you will take to improve performance of a poor performing query?
Explain the difference between primary keys and foreign keys?
Define right outer join in sql server joins?
Explain transaction server consistency?
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.
How do you maintain database integrity where deletions from one table will automatically cause deletions in another table?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)