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., }
2413Join 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 80651. SELECT SUM(sal) as “Gross Salary” from EMPLOYEES; 2. SELECT MAX(sal) as “Highest Salary” from EMPLOYEES; ouput should be in table format
2 13742two tables with table name ship(name,year) and battle (name,year),how to find the latest added year in the table ship
1 4078If 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 6831select 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 9013here 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 9286
Explain can SSRS reports Cache results?
Tell me what is a linked server?
How to defragment table indexes?
What are cursors stored procedures and triggers?
What is user-defined function? Explain its types i.e. Scalar and inline table value user-defined function?
How to get @@error and @@rowcount at the same time?
What are “lock” hints?
How to make remote connection in database?
What is the default server name for sql server?
How to create indexed view?
in the physical file layout, where should the transaction log be stored in relation to the data file? : Sql server administration
What is SQL Server?
What is the difference between indexing and hashing?
Which trace flags are enabled in sql server?
What is difference between equi join and inner join?