Download Microsoft.70-461.BrainDumps.2020-02-14.151q.vcex

Download Exam

File Info

Exam Querying Microsoft SQL Server 2012/2014
Number 70-461
File Name Microsoft.70-461.BrainDumps.2020-02-14.151q.vcex
Size 12 MB
Posted Feb 14, 2020
Download Microsoft.70-461.BrainDumps.2020-02-14.151q.vcex

How to open VCEX & EXAM Files?

Files with VCEX & EXAM extensions can be opened by ProfExam Simulator.

Purchase

Coupon: MASTEREXAM
With discount: 20%






Demo Questions

Question 1

You develop a Microsoft SQL Server server database that supports an application. The application contains a table that has the following definition:
CREATE TABLE Inventory 
(ItemID int NOT NULL PRIMARY KEY, 
ItemsInStore int NOT NULL, 
ItemsInWarehouse int NOT NULL) 
You need to create a computed column that returns the sum total of the ItemsInStore and ItemsInWarehouse values for each row. 
Which Transact-SQL statement should you use?


  1. ALTER TABLE Inventory 
    ADD TotalItems AS ItemsInStore + ItemsInWarehouse
  2. ALTER TABLE Inventory 
    ADD ItemsInStore - ItemsInWarehouse = TotalItemss
  3. ALTER TABLEInventory 
    ADD TotalItems = ItemsInStore + ItemsInWarehouse
  4. ALTER TABLE Inventory 
    ADD TotalItems AS SUM(ItemsInStore, ItemsInWarehouse);
Correct answer: A
Explanation:
Reference: http://technet.microsoft.com/en-us/library/ms190273.aspx
Reference: http://technet.microsoft.com/en-us/library/ms190273.aspx



Question 2

You develop a Microsoft SQL Server database. You create a view from the Orders and OrderDetails tables by using the following definition. 
  
You need to improve the performance of the view by persisting data to disk. What should you do?


  1. Create anINSTEAD OFtrigger on the view.
  2. Create anAFTERtrigger on the view.
  3. Modify the view to use theWITH VIEW_METADATAclause.
  4. Create a clustered index on the view.
Correct answer: D
Explanation:
Reference: http://msdn.microsoft.com/en-us/library/ms188783.aspx
Reference: http://msdn.microsoft.com/en-us/library/ms188783.aspx



Question 3

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 develop a database for a travel application. You need to design tables and other database objects. 
You create the Airline_Schedules table. 
You need to store the departure and arrival dates and times of flights along with time zone information. 
What should you do?


  1. Use the CAST function.
  2. Use the DATE data type.
  3. Use the FORMAT function.
  4. Use an appropriate collation.
  5. Use a user-defined table type.
  6. Use the VARBINARY data type.
  7. Use the DATETIME data type.
  8. Use the DATETIME2 data type.
  9. Use the DATETIMEOFFSET data type.
  10. Use the TODATETIMEOFFSET function.
Correct answer: I
Explanation:
Reference:http://msdn.microsoft.com/en-us/library/ff848733.aspxhttp://msdn.microsoft.com/en-us/library/bb630289.aspx
Reference:
http://msdn.microsoft.com/en-us/library/ff848733.aspx
http://msdn.microsoft.com/en-us/library/bb630289.aspx



Question 4

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 develop a database for a travel application. You need to design tables and other database objects. 
You create a stored procedure. You need to supply the stored procedure with multiple event names and their dates as parameters. 
What should you do?


  1. Use the CAST function.
  2. Use the DATE data type.
  3. Use the FORMAT function.
  4. Use an appropriate collation.
  5. Use a user-defined table type.
  6. Use the VARBINARY data type.
  7. Use the DATETIME data type.
  8. Use the DATETIME2 data type.
  9. Use the DATETIMEOFFSET data type.
  10. Use the TODATETIMEOFFSET function.
Correct answer: E



Question 5

You create a stored procedure that will update multiple tables within a transaction. 
You need to ensure that if the stored procedure raises a run-time error, the entire transaction is terminated and rolled back. 
Which Transact-SQL statement should you include at the beginning of the stored procedure?


  1. SET XACT_ABORT ON
  2. SET ARITHABORT ON
  3. TRY
  4. BEGIN
  5. SET ARITHABORT OFF
  6. SET XACT_ABORT OFF
Correct answer: A
Explanation:
Reference: http://msdn.microsoft.com/en-us/library/ms190306.aspxhttp://msdn.microsoft.com/en-us/library/ms188792.aspx
Reference: http://msdn.microsoft.com/en-us/library/ms190306.aspx
http://msdn.microsoft.com/en-us/library/ms188792.aspx



Question 6

Your database contains two tables named DomesticSalesOrders and InternationalSalesOrders. Both tables contain more than 100 million rows. Each table has a Primary Key column named SalesOrderId. The data in the two tables is distinct from one another. 
Business users want a report that includes aggregate information about the total number of global sales and total sales amounts. 
You need to ensure that your query executes in the minimum possible time. 
Which query should you use? 


  1. SELECT COUNT(*) AS NumberOfSales, SUM(SalesAmount) AS TotalSalesAmount
    FROM ( 
        SELECT SalesOrderId, SalesAmount 
        FROM DomesticSalesOrders 
        UNION ALL 
        SELECT SalesOrderId, SalesAmount 
        FROM InternationalSalesOrders 
      ) AS p 
  2. SELECT COUNT(*) AS NumberOfSales, SUM(SalesAmount) AS TotalSalesAmount
    FROM ( 
        SELECT SalesOrderId, SalesAmount 
        FROM DomesticSalesOrders 
        UNION 
        SELECT SalesOrderId, SalesAmount 
        FROM InternationalSalesOrders 
      ) AS p 
  3. SELECT COUNT(*) AS NumberOfSales, SUM(SalesAmount) AS TotalSalesAmount
    FROM DomesticSalesOrders 
      UNION 
      SELECT COUNT(*) AS NumberOfSales, SUM(SalesAmount) AS TotalSalesAmount 
      FROM InternationalSalesOrders 
  4. SELECT COUNT(*) AS NumberOfSales, SUM(SalesAmount) AS TotalSalesAmount
    FROM DomesticSalesOrders 
      UNION ALL 
      SELECT COUNT(*) AS NumberOfSales, SUM(SalesAmount) AS TotalSalesAmount 
      FROM InternationalSalesOrders
Correct answer: A
Explanation:
Reference: http://msdn.microsoft.com/en-us/library/ms180026.aspxhttp://blog.sqlauthority.com/2009/03/11/sql-server-difference-between-union-vs-union-all-optimalperformance-comparison/
Reference: http://msdn.microsoft.com/en-us/library/ms180026.aspx
http://blog.sqlauthority.com/2009/03/11/sql-server-difference-between-union-vs-union-all-optimalperformance-comparison/



Question 7

You are a database developer at an independent software vendor. You create stored procedures that contain proprietary code. 
You need to protect the code from being viewed by your customers. 
Which stored procedure option should you use?


  1. ENCRYPTBYKEY
  2. ENCRYPTION
  3. ENCRYPTBYPASSPHRASE
  4. ENCRYPTBYCERT
Correct answer: B
Explanation:
References:http://technet.microsoft.com/en-us/library/bb510663.aspxhttp://technet.microsoft.com/en-us/library/ms174361.aspxhttp://msdn.microsoft.com/en-us/library/ms187926.aspxhttp://technet.microsoft.com/en-us/library/ms190357.aspxhttp://technet.microsoft.com/en-us/library/ms188061.aspx
References:
http://technet.microsoft.com/en-us/library/bb510663.aspx
http://technet.microsoft.com/en-us/library/ms174361.aspx
http://msdn.microsoft.com/en-us/library/ms187926.aspx
http://technet.microsoft.com/en-us/library/ms190357.aspx
http://technet.microsoft.com/en-us/library/ms188061.aspx



Question 8

You use a Microsoft SQL Server database. 
You want to create a table to store Microsoft Word documents. 
You need to ensure that the documents must only be accessible via Transact-SQL queries. 
Which Transact-SQL statement should you use? 


  1. CREATE TABLE DocumentStore
        [Id] INT NOT NULL PRIMARY KEY, 
        [Document] VARBINARY(MAX) NULL 
      ) 
      GO 
  2. CREATE TABLE DocumentStore
        [Id] hierarchyid, 
        [Document] NVARCHAR NOT NULL 
      ) 
      GO 
  3. CREATE TABLE DocumentStore AS FileTable
  4. CREATE TABLE DocumentStore
        [Id] [uniqueidentifier] ROWGUIDCOL NOT NULL UNIQUE, 
        [Document] VARBINARY(MAX) FILESTREAM NULL 
      ) 
      GO
Correct answer: A
Explanation:
Reference: http://msdn.microsoft.com/en-us/library/gg471497.aspxhttp://msdn.microsoft.com/en-us/library/ff929144.aspx
Reference: http://msdn.microsoft.com/en-us/library/gg471497.aspx
http://msdn.microsoft.com/en-us/library/ff929144.aspx



Question 9

You administer a Microsoft SQL Server database that contains a table named OrderDetail. You discover that the NCI_OrderDetail_CustomerID non-clustered index is fragmented. You need to reduce fragmentation. 
You need to achieve this goal without taking the index offline. Which Transact-SQL batch should you use? 


  1. CREATE INDEX NCI_OrderDetail_CustomerID ON OrderDetail.CustomerID
    WITH DROP EXISTING 
  2. ALTER INDEX NCI_OrderDetail_CustomerID ON OrderDetail.CustomerID
    REORGANIZE 
  3. ALTER INDEX ALL ON OrderDetail REBUILD
  4. ALTER INDEX NCI_OrderDetail_CustomerID ON OrderDetail.CustomerID
    REBUILD
Correct answer: B
Explanation:
Reference: http://msdn.microsoft.com/en-us/library/ms188388.aspx
Reference: http://msdn.microsoft.com/en-us/library/ms188388.aspx



Question 10

You develop a Microsoft SQL Server database. The database is used by two web applications that access a table named Products. 
You want to create an object that will prevent the applications from accessing the table directly while still providing access to the required data. 
You need to ensure that the following requirements are met:
  • Future modifications to the table definition will not affect the applications' ability to access data. 
  • The new object can accommodate data retrieval and data modification. 
You need to achieve this goal by using the minimum amount of changes to the existing applications. 
What should you create for each application?


  1. views
  2. table partitions
  3. table-valued functions
  4. stored procedures
Correct answer: A









CONNECT US

Facebook

Twitter

PROFEXAM WITH A 20% DISCOUNT

You can buy ProfExam with a 20% discount!



HOW TO OPEN VCEX FILES

Use ProfExam Simulator to open VCEX files