1.

In SQL Server, which one of the following is true for an aligned index?



 
 

  1. If a table and its indexes are aligned, MS SQL Server switches in between the partition structure of both the table and its indexes for a quick and an efficient data maintenance.





  2.  
  3.  

  4. An index has to be in the same partition function if you have to align it with the base table.





  5.  
  6.  

  7. The alignment in between the partition table and partition index will follow the same partition function in terms of arguments, datatypes, and the number of partitions.




  8.  
  9.  


  10.  
2.
In SQL Server, the stored procedure prcDispEmpDetails prints the details of the employees based on their employee code by using multiple base tables. Alice wants to view the names of all the tables involved in printing this report. Therefore, she issues the sp_helptext command for the mentioned procedure, but she is unable to view any details. Identify the reason for this error?
3.

You are managing an SQL Server which includes a database named Tester1. Which of the following will you use to keep the customer information safely?
4.

You are managing an SQL Server which includes a database named Tester1. Which of the following will you use to keep the customer information safely?
5.
You are managing an SQL Server which includes a database called CustomersDB. There is a table called Product which is contained in the Sales Product. Which of the following is used to test to a new schema called Tester?
6.

In an SQL Server, which of the following will ensure that the backup mode contains only the updated data since the last backup?

7.
Which of the following is used to develop an SQL Server Agent job which implements the stored procedure and also deletes the job after it is completed?
8.
In an SQL Server, consider the toys table which has the following columns:
|ToyID|vToyName|CategoryID| | :-: | :-: | :-: |
Consider the category table which consists of the following columns:
CategoryID cCategory

Which of the following displays the list of all the toy names that belong to the category Stuffed Toys?

9.

Consider the table Shipment which consists of the following columns:

cOrderNo OrderName dShipmentDate

In SQL Server, which of the following queries is used to retrieve the Order NameShipment DateActual Delivery Date, and Days in Transit for every order?

10.

A schedule for interviews is required with the following information that has to be printed in alphabetical order of candidates name:



 
 
Candidate Name

Interviewer

Date

Week Day


 
 

The following is the structure of the original table ExternalCandidate:


 
 

  • ID



  •  
  • vFirstName



  •  
  • vLastName



  •  
  • cInterviewer



  •  
  • dInterviewdate





  •  
  •  

  •  




  •  
  •  


  •  

 
 

In an SQL Server, which of the following queries is used to accomplish the task?