Ensurepass.com : Ensure you pass the IT Exams
2018 Jan Microsoft Official New Released 70-461
100% Free Download! 100% Pass Guaranteed!
http://www.EnsurePass.com/70-461.html
Querying Microsoft SQL Server 2012
Question No: 1
You are a database developer of a Microsoft SQL Server 2012 database.
The database contains a table named Customers that has the following definition:
You need to ensure that the CustomerId column in the Orders table contains only values that exist in the CustomerId column of the Customer table.
Which Transact-SQL statement should you use?
-
ALTER TABLE Orders
ADD CONSTRAINT FX_Orders_CustomerID FOREIGN KEY (CustomerId) REFERENCES Customer (CustomerId)
-
ALTER TABLE Customer
ADD CONSTRAINT FK_Customer_CustomerID FOREIGN KEY {CustomerID) REFERENCES
Orders (CustomerId)
-
ALTER TABLE Orders
ADD CONSTRAINT CK_Orders_CustomerID
CHECK (CustomerId IN (SELECT CustomerId FROM Customer))
-
ALTER TABLE Customer ADD OrderId INT NOT NULL; ALTER TABLE Customer
ADD CONSTRAINT FK_Customer_OrderID FOREIGN KEY (OrderID) REFERENCES
Orders (OrderID);
-
ALTER TABLE Orders
ADD CONSTRAINT PK Orders CustomerId PRIMARY KEY (CustomerID)
Answer: A
Reference: http://msdn.microsoft.com/en-us/library/ms189049.aspx
Question No: 2
You create a table that has the StudentCode, SubjectCode, and Marks columns to record mid-year marks for students. The table has marks obtained by 50 students for various subjects.
You need to ensure that the top half of the students arranged by their average marks must be given a rank of 1 and the remaining students must be given a rank of 2. Which Transact-SQL query should you use?
-
SELECT StudentCode as Code,
RANK() OVER (ORDER BY AVG (Marks) DESC) AS Value
FROM StudentMarks GROUP BY StudentCode
-
SELECT Id, Name, Marks,
DENSE_RANK() OVER (ORDER BY Marks DESC) AS Rank
FROM StudentMarks
-
SELECT StudentCode as Code,
DENSE_RANK() OVER (ORDER BY AVG (Marks) DESC) AS Value
FROM StudentMarks GROUP BY StudentCode
-
SELECT StudentCode as Code,
NTILE (2) OVER (ORDER BY AVG (Marks) DESC) AS Value
FROM StudentMarks GROUP BY StudentCode
-
SELECT StudentCode AS Code,Marks AS Value FROM ( SELECT StudentCode, Marks AS Marks,
RANK() OVER (PARTITION BY SubjectCode ORDER BY Marks ASC) AS Rank
FROM StudentMarks) tmp WHERE Rank = 1
-
SELECT StudentCode AS Code,Marks AS Value FROM ( SELECT StudentCode, Marks AS Marks,
RANK() OVER (PARTITION BY SubjectCode ORDER BY Marks DESC) AS Rank
FROM StudentMarks) tmp WHERE Rank = 1
-
SELECT StudentCode AS Code,Marks AS Value FROM ( SELECT StudentCode, Marks AS Marks,
RANK () OVER (PARTITION BY StudentCode ORDER BY Marks ASC) AS Rank
FROM StudentMarks) tmp WHERE Rank = 1
-
SELECT StudentCode AS Code,Marks AS Value FROM (
SELECT StudentCode, Marks AS Marks,
RANXO OVER (PARTITION BY StudentCode ORDER BY Marks DESC) AS Rank
FROM StudentMarks) tmp WHERE Rank = 1
Answer: D
Question No: 3
You administer a Microsoft SQL Server 2012 database. The database contains a table named Employee.
Part of the Employee table is shown in the exhibit. (Click the Exhibit button.)
Unless stated above, no columns in the Employee table reference other tables.
Confidential information about the employees is stored in a separate table named EmployeeData. One record exists within EmployeeData for each record in the Employee table.
You need to assign the appropriate constraints and table properties to ensure data integrity and visibility.
On which column in the Employee table should you create a Foreign Key constraint that references a different table in the database?
-
DateHired
-
DepartmentID
-
EmployeeID
-
EmployeeNum
-
FirstName
-
JobTitle
-
LastName
-
MiddleName
-
ReportsToID
Answer: C Explanation:
Use the EmployeeID, which would be used as a primary key in the Employee table, when defining a foreign key constraint from another table in the database.
Question No: 4
You are developing a database that will contain price information.
You need to store the prices that include a fixed precision and a scale of six digits. Which data type should you use?
-
Real
-
Small money
-
Money
-
Decimal
Answer: D
Question No: 5
You are developing a database application by using Microsoft SQL Server 2012. You have a query that runs slower than expected.
You need to capture execution plans that will include detailed information on missing indexes recommended by the query optimizer.
What should you do?
-
Add a HASH hint to the query.
-
Add a LOOP hint to the query.
-
Add a FORCESEEK hint to the query.
-
Add an INCLUDE clause to the index.
-
Add a FORCESCAN hint to the Attach query.
-
Add a columnstore index to cover the query.
-
Enable the optimize for ad hoc workloads option.
-
Cover the unique clustered index with a columnstore index.
-
Include a SET FORCEPLAN ON statement before you run the query.
-
Include a SET STATISTICS PROFILE ON statement before you run the query.
-
Include a SET STATISTICS SHOWPLAN_XML ON statement before you run the query.
-
Include a SET TRANSACTION ISOLATION LEVEL REPEATABLE READ statement before you run the query.
-
Include a SET TRANSACTION ISOLATION LEVEL SNAPSHOT statement before you run the query.
-
Include a SET TRANSACTION ISOLATION LEVEL SERIALIZABLE statement before you run the query.
Answer: K
Question No: 6
You need to build a table structure for a stored procedure to support data entry from a website form. The website form must meet the following requirements:
Which two actions should you perform? Each correct answer presents part of the solution.
-
Add the CHECK constraint to the table structure.
-
Add the DATEPART function to the stored procedure.
-
Add the DEFAULT constraint to the table structure.
-
Add the SYSDATETIMEOFFSET function to the stored procedure.
-
Add the ISDATE function to the stored procedure.
Answer: D,E Explanation:
SYSDATETIMEOFFSET returns a datetimeoffset(7) value that contains the date and time of the computer on which the instance of SQL Server is running.
ISDATE returns 1 if the expression is a valid date, time, or datetime value; otherwise, 0. References:https://msdn.microsoft.com/en-us/library/bb677334.aspx
Question No: 7
You are developing a database that will contain price information.
You need to store the prices that include a fixed precision and a scale of six digits. Which data type should you use?
-
Smallmoney
-
Numeric
-
Money
-
Varchar
Answer: B
Explanation: Numeric data types that have fixed precision and scale.
decimal[ (p[ , s] )] and numeric[ (p[ , s] )] where
-
p (precision)
The maximum total number of decimal digits that will be stored, both to the left and to the right of the decimal point. The precision must be a value from 1 through the maximum precision of 38. The default precision is 18.
-
(scale)
The number of decimal digits that will be stored to the right of the decimal point.
Reference: decimal and numeric (Transact-SQL) https://msdn.microsoft.com/en-us/library/ms187746.aspx
Question No: 8
You develop a Microsoft SQL Server 2012 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?
-
ALTER TABLE Inventory
ADD TotalItems AS ItemsInStore ItemsInWarehouse
-
ALTER TABLE Inventory
ADD ItemsInStore – ItemsInWarehouse = TotalItemss
-
ALTER TABLE Inventory
ADD TotalItems = ItemsInStore ItemsInWarehouse
-
ALTER TABLE Inventory
ADD TotalItems AS SUM(ItemsInStore, ItemsInWarehouse);
Answer: A
Reference: http://technet.microsoft.com/en-us/library/ms190273.aspx
Question No: 9
You administer several Microsoft SQL Server 2012 database servers. Merge replication has been configured for an application that is distributed across offices throughout a wide area network (WAN). Many of the tables involved in replication use the XML and varchar (max) data types. Occasionally, merge replication fails due to timeout errors. You need to reduce the occurrence of these timeout errors. What should you do?
-
Set the Merge agent on the problem subscribers to use the slow link agent profile.
-
Create a snapshot publication, and reconfigure the problem subscribers to use the snapshot publication.
-
Change the Merge agent on the problem subscribers to run continuously.
-
Set the Remote Connection Timeout on the Publisher to 0.
Answer: A
Question No: 10
You are developing a database application by using Microsoft SQL Server 2012. An application that uses a database begins to run slowly.
Your investigation shows the root cause is a query against a read-only table that has a clustered index.
The query returns the following six columns:
-> One column in its WHERE clause contained in a non-clustered index
-> Four additional columns
-> One COUNT (*) column based on a grouping of the four additional columns
You need to optimize the statement. What should you do?
-
Add a HASH hint to the query.
-
Add a LOOP hint to the query.
-
Add a FORCESEEK hint to the query.
-
Add an INCLUDE clause to the index.
-
Add a FORCESCAN hint to the Attach query.
-
Add a columnstore index to cover the query.
-
Enable the optimize for ad hoc workloads option.
-
Cover the unique clustered index with a columnstore index.
-
Include a SET FORCEPLAN ON statement before you run the query.
-
Include a SET STATISTICS PROFILE ON statement before you run the query.
-
Include a SET STATISTICS SHOWPLAN_XML ON statement before you run the query.
-
Include a SET TRANSACTION ISOLATION LEVEL REPEATABLE READ statement before you run the query.
-
Include a SET TRANSACTION ISOLATION LEVEL SNAPSHOT statement before you run the query.
-
Include a SET TRANSACTION ISOLATION LEVEL SERIALIZABLE statement before you run the query.
Answer: F
100% Ensurepass Free Download!
–Download Free Demo:70-461 Demo PDF
100% Ensurepass Free Guaranteed!
–70-461 Dumps
EnsurePass | ExamCollection | Testking | |
---|---|---|---|
Lowest Price Guarantee | Yes | No | No |
Up-to-Dated | Yes | No | No |
Real Questions | Yes | No | No |
Explanation | Yes | No | No |
PDF VCE | Yes | No | No |
Free VCE Simulator | Yes | No | No |
Instant Download | Yes | No | No |
100-105 Dumps VCE PDF
200-105 Dumps VCE PDF
300-101 Dumps VCE PDF
300-115 Dumps VCE PDF
300-135 Dumps VCE PDF
300-320 Dumps VCE PDF
400-101 Dumps VCE PDF
640-911 Dumps VCE PDF
640-916 Dumps VCE PDF
70-410 Dumps VCE PDF
70-411 Dumps VCE PDF
70-412 Dumps VCE PDF
70-413 Dumps VCE PDF
70-414 Dumps VCE PDF
70-417 Dumps VCE PDF
70-461 Dumps VCE PDF
70-462 Dumps VCE PDF
70-463 Dumps VCE PDF
70-464 Dumps VCE PDF
70-465 Dumps VCE PDF
70-480 Dumps VCE PDF
70-483 Dumps VCE PDF
70-486 Dumps VCE PDF
70-487 Dumps VCE PDF
220-901 Dumps VCE PDF
220-902 Dumps VCE PDF
N10-006 Dumps VCE PDF
SY0-401 Dumps VCE PDF