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., }
2283Join 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 78311. SELECT SUM(sal) as “Gross Salary” from EMPLOYEES; 2. SELECT MAX(sal) as “Highest Salary” from EMPLOYEES; ouput should be in table format
2 13510two tables with table name ship(name,year) and battle (name,year),how to find the latest added year in the table ship
1 3951If 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 6479select 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 8537here 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 8832
How many partitions a clustered index has by default in sql server 2012?
What are subqueries in sql server? Explain its properties.
Explain sql server authentication modes?
What is dbcc? Give few examples.
What is meant by datasource?
What is the difference between for xml raw and for xml auto?
What were the latest updates to SQL Azure service?
Sql studio em braces a variety of capabilities, but will I need them all? Is there a simpler product ? : sql server management studio
What is difference between join and natural join?
How to configure odbc dsn with different port numbers?
We are updating a field in sql and alter the row also.after giving the commit command the system is crashed.what will happen to the commands given,whether it will update and alter the table or not?
What is the purpose of floor function?
What is the cartesian product of the table?
What is set nocount on and what is set nocount off?
What are the benefits of normalization?