How to create an multi-statement table-valued function?
How to delete existing rows in a table?
Can we create clustered index on composite key?
What is the difference between count and distinct count?
What gets stored inside msdb database?
Explain what are the different index configurations a table can have?
Does sql server 2000 clustering support load balancing?
How to list all tables having unique constraints in any of the columns in a database.
Can a unique index be created on a column, which contains null?
What is the difference between stored procedure and functions?
If the job running very slow what is the action you do
Following are some of the question related to below mentioned query? select e1.salary from employee3 e1 where 2= ( select count(distinct(e2.salary)) from employee3 e2 where e2.salary>=e1.salary ) 1) What the query returns? 2) How it works? - Detail explanation (what the sub query does, why it is (where 2=)....etc...Please?
What is replication and database mirroring?