What are constraints?
How you can move data or databases between servers and databases in sql server?
When do you use SQL Profiler?
Delete duplicate rows from a table without primary key by using a single query Table Employee empname salary A 200 B 300 A 200 C 400 D 500 D 500 Output should be A 200 B 300 C 400 D 500
What is the difference between varchar and varchar(max) datatypes?
What is standby servers? Explain types of standby servers.
What will be query used to get the list of triggers in a database?
What is 'Join' and explain its various types.
Explain where clause?
Without Using Cursors , How to Select the Selected row??
3 Answers CarrizalSoft Technologies, Wipro,
What is a transaction and what are ACID properties?
Which is better in performance - CONSTRAINT or TRIGGER over a column which restricts say an input of particular value in a column of a table?
When would you use an insert into .. Select option versus an insert into .. Values option? Give an example of each?