70-462 Exam Details

  • Exam Code
    :70-462
  • Exam Name
    :Administering Microsoft SQL Server 2012/2014 Databases
  • Certification
    :Microsoft Certifications
  • Vendor
    :Microsoft
  • Total Questions
    :324 Q&As
  • Last Updated
    :Feb 06, 2022

Microsoft 70-462 Online Questions & Answers

  • Question 101:

    Note: This question is part of a series of questions that use the same set of answer choices. An answer choice may be correct for more than one question in the series.

    You administer a SQL Server 2012 server that contains a database named SalesDB. SalesDb contains a schema named Customers that has a table named Regions. A user named UserA is a member of a role named Sales.

    UserA is granted the Select permission on the Regions table. The Sales role is granted the Select permission on the Customers schema.

    You need to ensure that the Sales role, including UserA, is disallowed to select from any of the tables in the Customers schema.

    Which Transact-SQL statement should you use?

    A. REVOKE SELECT ON Schema::Customers FROM UserA
    B. DENY SELECT ON Object::Regions FROM UserA
    C. EXEC sp_addrolemember 'Sales', 'UserA'
    D. DENY SELECT ON Object::Regions FROM Sales
    E. REVOKE SELECT ON Object::Regions FROM UserA
    F. DENY SELECT ON Schema::Customers FROM Sales
    G. DENY SELECT ON Schema::Customers FROM UserA
    H. EXEC sp_droprolemember 'Sales', 'UserA'
    I. REVOKE SELECT ON Object::Regions FROM Sales
    J. REVOKE SELECT ON Schema::Customers FROM Sales

  • Question 102:

    You administer a Microsoft SQL Server instance that contains a financial database hosted on a storage area network (SAN).

    The financial database has the following characteristics:

    A data file of 2 terabytes is located on a dedicated LUN (drive D).

    A transaction log of 10 GB is located on a dedicated LUN (drive E).

    Drive D has 1 terabyte of free disk space.

    Drive E has 5 GB of free disk space.

    The database is continually modified by users during business hours from Monday through Friday between 09:00 hours and 17:00 hours. Five percent of the existing data is modified each day.

    The Finance department loads large CSV files into a number of tables each business day at 11:15 hours and 15:15 hours by using the BCP or BULK INSERT commands. Each data load adds 3 GB of data to the database.

    These data load operations must occur in the minimum amount of time.

    A full database backup is performed every Sunday at 10:00 hours. Backup operations will be performed every two hours (11:00, 13:00, 15:00, and 17:00) during business hours.

    The financial database has been damaged.

    You need to perform a tail-log backup.

    Which backup option should you use?

    A. NORECOVERY
    B. FULL
    C. NO_CHECKSUM
    D. CHECKSUM
    E. Differential
    F. BULK_LOGGED
    G. STANDBY
    H. RESTART
    I. SKIP
    J. Transaction log

  • Question 103:

    DRAG DROP

    You administer a Microsoft SQL Server 2012 instance.

    An application executes a large volume of dynamic queries.

    You need to reduce the amount of memory used for cached query plans.

    What should you do? (To answer, move the appropriate statements from the list of statements to the answer area and arrange them in the correct order.)

    Select and Place:

  • Question 104:

    You administer a Microsoft SQL Server 2012 instance.

    You need to stop a blocking process that has an SPID of 64 without stopping other processes

    What should you do?

    A. Execute the following Transact-SQL statement: EXECUTE sp_KillSPID 64
    B. Restart the SQL Server service.
    C. Execute the following Transact-SQL statement: KILL 64
    D. Execute the following Transact-SQL statement: ALTER SESSION KILL '64'

  • Question 105:

    You administer a Microsoft SQL Server 2012 database.

    The database contains a Product table created by using the following definition:

    You need to ensure that the minimum amount of disk space is used to store the data in the Product table. What should you do?

    A. Convert all indexes to Column Store indexes.
    B. Implement Unicode Compression.
    C. Implement row-level compression.
    D. Implement page-level compression.

  • Question 106:

    Which of the following is NOT a database role that you can assign users in SQL Server 2012?

    A. db_ddladmin
    B. db_owner
    C. db_datawriter
    D. db_databaseadmin

  • Question 107:

    You administer a Microsoft SQL Server.

    A process that normally runs in less than 10 seconds has been running for more than an hour.

    You examine the application log and discover that the process is using session ID 60.

    You need to find out whether the process is being blocked.

    Which Transact-SQL statement should you use?

    A. SELECT * FROM sys.dm_exec_requests WHERE session_id = 60
    B. SELECT * FROM sys.dm_exec_sessions WHERE session_id = 60
    C. DBCC INPUTBUFFER (60)
    D. DBCC OPENTRAN

  • Question 108:

    You administer a Microsoft Azure SQL Database instance named Inventory that contains a stored procedure named p_AddInventory.

    Users need to be able to SELECT from all tables in the database and execute the stored procedure.

    You need to grant only the necessary permissions.

    What should you do?

    A. Create a new database role. Grant EXECUTE permission on p_AddInventory to the new role. Add all users to the role. Add all users to the db_datareader role.
    B. Create a new database role. Grant EXECUTE permission on p_AddInventory to the new role. Grant VIEW DEFINITION to the role. Add all users to the role.
    C. Add EXECUTE AS OWNER to the stored procedure. Add all users to the db_datareader role.
    D. Grant EXECUTE permission on p_AddInventory to all users. Grant VIEW DEFINITION to all users.

  • Question 109:

    You create an availability group named HaContoso that has replicas named Server01/HA, Server02/HA, and Server03/HA.

    Currently, Server01/HA is the primary replica.

    You need to ensure that the following requirements are met:

    Backup operations occur on Server03/HA.

    If Server03/HA is unavailable, backup operations occur on Server02/HA. Backup operations do not occur on Server01/HA.

    How should you configure HaContoso?

    A. Set the backup preference of HaContoso to Prefer Secondary. Set the backup priority of Server02/HA to 20. Set the backup priority of Server03/HA to 10.
    B. Set the backup preference of HaContoso to Secondary only. Set the backup priority of Server02/HA to 20. Set the backup priority of Server03/HA to 10.
    C. Set the backup preference of HaContoso to Secondary only. Set the backup priority of Server02/HA to 10. Set the backup priority of Server03/HA to 20.
    D. Set the exclude replica of Server01/HA to true. Set the backup priority of Server02/HA to 10. Set the backup priority of Server03/HA to 20.

  • Question 110:

    You administer a Microsoft SQL Server environment. One of the SQL Server instances contains a database named Sales.

    You plan to migrate Sales to Microsoft Azure SQL Database.

    To do so, you need to implement a contained database.

    What should you do? (Each correct answer presents part of the solution. Choose all that apply.)

    A. Set database containment to AZURE.
    B. Enable server property contained database authentication.
    C. Disable server property cross db ownership chaining.
    D. Set database containment to PARTIAL.
    E. Disable server property contained database authentication.
    F. Set database containment to FULL.

Tips on How to Prepare for the Exams

Nowadays, the certification exams become more and more important and required by more and more enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare for the exam in a short time with less efforts? How to get a ideal result and how to find the most reliable resources? Here on Vcedump.com, you will find all the answers. Vcedump.com provide not only Microsoft exam questions, answers and explanations but also complete assistance on your exam preparation and certification application. If you are confused on your 70-462 exam preparations and Microsoft certification application, do not hesitate to visit our Vcedump.com to find your solutions here.