What are the maximum number of tables that can be joined together in a query?
16
32
256
1024
By Default Data and log files expand by what increment?
8kb
64kb
512kb
1Mb
is it possible to create web service from SQL Server 2005?
Yes
No
What is the maximum number of rows that a table can store in SQL Server 2000?
255
1,048,516
2,147,483,647
No limit besides physical storage size
Select the correct Query to get the user with highest salary.
Select Top 1 UserName FROM tblUser ORDER BY Salary DESC
Select Top 1 UserName FROM tblUser ORDER BY Salary ASC
Select Top 1 UserName FROM tblUser