You administer a Microsoft SQL Server 2012 instance that has several SQL Server Agent jobs configured.When SQL Server Agent jobs fail, the error messages returned by the job steps do not provide the required detail.The following error message is an example error message:"The job failed. The Job was invoked by User CONTOSO\ServiceAccount. The last step to run was step 1 (Subplan_1)."You need to ensure that all available details of the job step failures for SQL Server Agent jobs are retained.What should you do?
You administer a Microsoft SQL Server 2012 instance.You need to configure a new database to support FILETABLES.What should you do? Choose all that apply.
You administer two instances of Microsoft SQL Server 2012. You deploy an application that uses a database on the named instance.The application is unable to connect to the database on the named instance.You need to ensure that the application can connect to the named instance.What should you do?
You use a contained database named ContosoDb within a domain.You need to create a user who can log on to the ContosoDb database. You also need to ensure that you can port the database to different database servers within the domain without additional user account configurations.Which type of user should you create?
You administer a Microsoft SQL Server 2012 database.You configure Transparent Data Encryption (TDE) on the Orders database by using the following statements:CREATE MASTER KEY ENCRYPTION BY PASSWORD = 'MyPassword1!'CREATE CERTIFICATE TDE_Certificate WITH SUBJECT = 'TDE Certificate';BACKUP CERTIFICATE TDE_Certificate TO FILE = ''d:\TDE_Certificate.cer'WITH PRIVATE KEY (FILE = 'D:\TDE_Certificate.key',ENCRYPTION BY PASSWORD = 'MyPassword1!');CREATE DATABASE ENCRYPTION KEY -WITH ALGORITHM = AES_256 -ENCRYPTION BY SERVER CERTIFICATE TDE_Certificate;ALTER DATABASE Orders SET ENCRYPTION ON;You attempt to restore the Orders database and the restore fails. You copy the encryption file to the original location.A hardware failure occurs and so a new server must be installed and configured.After installing SQL Server to the new server, you restore the Orders database and copy the encryption files to their original location. However, you are unable to access the database.You need to be able to restore the database.Which Transact-SQL statement should you use before attempting the restore?
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution. Determine whether the solution meets stated goals.Your company plans to use Microsoft Azure Resource Manager templates for all future deployments of SQL Server on Azure virtual machines.You need to create the templates.Solution: You use Visual Studio to create a XAML template that defines the deployment and configuration settings for the SQL Server environment.Does the solution meet the goal?