PrepAway - Latest Free Exam Questions & Answers

Which Transact-SQL statement should you use?

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 following requirements are met:
The Sales role does not have the Select permission on the Customers schema. UserA has the Select
permission on the Regions table.
Which Transact-SQL statement should you use?

PrepAway - Latest Free Exam Questions & Answers

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

Explanation:
Use REVOKE to remove the grant or deny of a permission.
https://docs.microsoft.com/en-us/sql/t-sql/statements/permissions-grant-deny-revoke-azure-sqldata-warehouse-parallel-data-warehouse

2 Comments on “Which Transact-SQL statement should you use?

  1. Arambula says:

    Hi, passed today! come to share some questions:

    QUESTION
    You have a server named Serverl that is hosted in an Azure virtual machine.
    Server1 contains the following:
    – One instance of SQL Server 2016 Enterprise
    – 10 databases
    – 500 stored procedures
    You have a database named Databasel that is hosted on Server1.
    Database1 contains 100 queries that are executed dynamically from web applications.
    You plan to remove data from the procedure cache on Database1.
    You have the following requirements:
    – Changes to Database1 must not affect other databases that are hosted on Server1
    – Changes to Database1 must not affect the performance of queries that are stored in other databases.
    – The solution must minimize administrative effort.
    You need to remove the data from the procedure cache as quickly as possible.
    What should you do?

    A. Run DBCC FREEPROCCACHE.
    B. Run ALTER DATABASE SCOPED CONFIGURATION CLEAR PROCEDURE CACHE in the context of Database 1.
    C. Run DBCC DROPCLEANBUFFERS.
    D. Write a script that iterates through each stored procedure definition and add WITH RECOMPILE to the definition.

    Answer: B

    QUESTION
    You are designing a Windows Azure SQL Database for an order fulfillment system.
    You create a table named Sales.Orders with the following script.

    Each order is tracked by using one of the following statuses:
    – Fulfilled
    – Shipped
    – Ordered
    – Received
    You need to design the database to ensure that that you can retrieve the following information:
    – The current status of an order
    – The previous status of an order.
    – The date when the status changed.
    – The solution must minimize storage.
    More than one answer choice may achieve the goal. Select the BEST answer.

    A. To the Sales.Orders table, add three columns named Status, PreviousStatus and ChangeDate.
    Update rows as the order status changes.
    B. Create a new table named Sales.OrderStatus that contains three columns named OrderID,
    StatusDate, and Status. Insert new rows into the table as the order status changes.
    C. Implement change data capture on the Sales.Orders table.
    D. To the Sales.Orders table, add three columns named FulfilledDate, ShippedDate, and ReceivedDate.
    Update the value of each column from null to the appropriate date as the order status changes.

    Answer: B

    QUESTION
    You are using dynamic management views to monitor an SQL Server server named SQL1.
    A database administrator named Dba1 must monitor the health of SQL1.
    You need to ensure that Dba1 can access dynamic management views for SQL1.
    The solution must use the principle of least privilege.
    Which permissions should you assign to Dba1?

    A. VIEW ANY DEFINITION
    B. VIEW SERVER STATE
    C. VIEW DEFINITION
    D. CONTROL SERVER

    Answer: B

    QUESTION
    You are the administrator for a SQL Server 2016 instance that stores the data for an online transaction processing sales system.
    The company takes full backups every week; differential backups on the days with no full backups; and hourly transaction backups.
    These backups are stored on a backup server in the company’s data center.
    Every week, the company places the full backup on a tape and sends it to a third-party backup storage system.
    The company is worried that a disaster might occur that could destroy their computer center and cause them to lose orders.
    You need to determine the best method for providing the smallest amount of data loss and downtime without leasing or purchasing additional physical locations.
    What should you do? More than one answer choice may achieve the goal. Select the BEST answer.

    A. Set up SQL Server Always On with a SQL Azure database as a replica.
    B. Set up SQL Server Always On by using a SQL Server on a Windows Azure Virtual Machine.
    C. Put the differential backup on tape and send it to the third-party backup storage system.
    D. Use the Microsoft SQL Server Backup to Microsoft Windows Azure Tool to direct all backups
    to a different geographical location.

    Answer: D

    QUESTION
    You have a SQL Server 2016 database named DB1.
    You plan to import a large number of records from a SQL Azure database to DB1.
    You need to recommend a solution to minimize the amount of space used in the transaction log during the import operation.
    What should you include in the recommendation?

    A. The bulk-logged recovery model
    B. The full recovery model
    C. A new partitioned table
    D. A new log file
    E. A new file group

    Answer: A
    Explanation:
    Compared to the full recovery model, which fully logs all transactions, the bulk-logged recovery model minimally logs bulk operations, although fully logging other transactions.
    The bulk-logged recovery model protects against media failure and, for bulk operations, provides the best performance and least log space usage.
    Note:
    The bulk-logged recovery model is a special-purpose recovery model that should be used only intermittently to improve the performance of certain large-scale bulk operations, such as bulk imports of large amounts of data.

    QUESTION
    You administer a Microsoft SQL Server 2012 database.
    Users report that an application that accesses the database displays an error, but the error does not provide meaningful information.
    No entries are found in the SQL Server log or Windows event logs related to the error.
    You need to identify the root cause of the issue by retrieving the error message.
    What should you do?

    A. Create an Extended Events session by using the sqlserver.error_reported event.
    B. Create a SQL Profiler session to capture all ErrorLog and EventLog events.
    C. Flag all stored procedures for recompilation by using sp_recompile.
    D. Execute sp_who.

    Answer: A

    QUESTION
    You administer a Microsoft SQL Server 2012 server.
    One of the databases on the server supports a highly active OLTP application.
    Users report abnormally long wait times when they submit data into the application.
    You need to identify which queries are taking longer than 1 second to run over an extended period of time.
    What should you do?

    A. use SQL Profiler to trace all queries that are processing on the server.
    Filter queries that have a Duration value of more than 1,000.
    B. Use sp_configure to set a value for blocked process threshold.
    Create an extended event session.
    C. Use the Job Activity monitor to review all processes that are actively running.
    Review the Job History to find out the duration of each step.
    D. Run the sp_who command from a query window.
    E. Run the DBCC TRACEON 1222 command from a query window and review the SQL Server event log.

    Answer: A

    QUESTION
    You administer a Microsoft SQL Server 2012 database.
    You need to ensure that the size of the transaction log file does not exceed 2 GB.
    What should you do?

    A. Execute sp_configure ‘max log size’, 2G.
    B. use the ALTER DATABASE…SET LOGFILE command along with the maxsize parameter.
    C. In SQL Server Management Studio, right-click the instance and select Database Settings. Set the maximum size of the file for the transaction log.
    D. In SQL Server Management Studio, right-click the database, select Properties, and then click Files.
    Open the Transaction log Autogrowth window and set the maximum size of the file.

    Answer: B

    QUESTION
    You administer a Microsoft SQL Server 2012 server.
    The MSSQLSERVER service uses a domain account named CONTOSO\SQLService.
    You plan to configure Instant File Initialization.
    You need to ensure that Data File Autogrow operations use Instant File Initialization.
    What should you do? Choose all that apply.

    A. Restart the SQL Server Agent Service.
    B. Disable snapshot isolation.
    C. Restart the SQL Server Service.
    D. Add the CONTOSO\SQLService account to the Perform Volume Maintenance Tasks local security policy.
    E. Add the CONTOSO\SQLService account to the Server Operators fixed server role.
    F. Enable snapshot isolation.

    Answer: CD

    QUESTION
    You administer a Microsoft SQL Server 2012 failover cluster that contains two nodes named Node A and Node B.
    A single instance of SQL Server is installed on the cluster.
    An additional node named Node C has been added to the existing cluster.
    You need to ensure that the SQL Server instance can use all nodes of the cluster.
    What should you do?

    A. Run the New SQL Server stand-alone installation Wizard on Node C.
    B. Run the Add Node to SQL Server Failover Cluster Wizard on Node C.
    C. Use Node B to install SQL Server on Node C.
    D. Use Node A to install SQL Server on Node C.

    Answer: B

    All questions here: http://www.examsforalls.com/?s=70-765

    Wish they can be useful!




    0



    0

Leave a Reply