how do you determine the Load performance of any query in sql server {example how do u determine performance of a select stmnt which returns Dynamically many no of records ... some times 100,1000,10000 etc., }
2344Join 3 tables (table1, table2 & table3) in a single query. Inner join should be applied for table1 & table 2 and left outer join for table1 & table3 where table2.dept is ABC
2 79491. SELECT SUM(sal) as “Gross Salary” from EMPLOYEES; 2. SELECT MAX(sal) as “Highest Salary” from EMPLOYEES; ouput should be in table format
2 13627two tables with table name ship(name,year) and battle (name,year),how to find the latest added year in the table ship
1 4021If suppose in a table ship(name,year),find ship name having first and last name(i.e having space in between) ex: SAINT LOUIS,JET LAKE.
4 6643select name of emplyoee whose total salary is 130 from following table. id name salary 1 a 100 2 b 20 3 c 50 1 a 30 2 b 70 Post the resulantant Query?
7 8755here id col have primary key and identity id name 1 a 2 b 3 c 4 d delete 2nd row then o/p will be id name 1 a 3 c 4 d next inssert 2nd row and i want o/p will be id name 1 a 2 e 3 c 4 d
7 9057
What are the differences between union, intersect, and minus operators?
How can you insert values in multiple rows using one Insert statement?
How to manipulate data from one table to another table ?
What are different types of raid levels?
What is the difference between truncate and delete commands?
Explain external key management in sql server 2008
How to list all objects in a given schema?
Explain what is lock escalation?
Is it possible to import data directly from t-sql commands without using sql server integration services? If so, what are the commands?
Can you index views?
What is index, cluster index and nonclustered index?
How many types of database relationship in sql server?
You are doing log shipping due to some reasons it is failing. How you will proceed from there
Explain can SSRS reports Cache results?
How sql server executes a statement with nested subqueries?