What method is used by the Command classes to execute SQL statements that return single values?
What are the types of normalization?
Is it true, that there is no difference between a rule and a check constraint?
Please explain the characteristics of a transaction server for example atomicity, consistency, isolation, durability?
Define primary key?
What are the hotfixes and patches in sql server?
What is user-defined multi-statement table-valued function?
How to disconnect from a sql server using mssql_close()?
2) Consider a Table name A which has below records ID --- 5 5 5 5 5 Consider another table B which has below records ID -- 5 5 5 5 5 5 5 5 How many rows will be returned by each of the below queries a) select * from A inner join B on A.id = b.ID b) select * from A left join B on A.id = b.ID c) select * from A right join B on A.id = b.ID
Does an index slow down updates on indexed columns?
Find top Nth employee from each department in terms of salary?
What is analysis service repository?
You notice that the transaction log on one of your databases is over 4gb the size of the data file is 2mb what could cause this situation, and how can you fix it?