[2017-New-Version]100% Real 70-461 VCE Exam Dumps 200Q-Braindump2go[119-131]

[2017-New-Version]100% Real 70-461 VCE Exam Dumps 200Q-Braindump2go[119-131]

greatexam May 8, 2017

2017 May New | Microsoft 70-461 Exam Dumps with VCE and PDF Free Updated in www.Braindump2go.com  Today!
100% Real Exam Questions! 100% Exam Pass Guaranteed!

1.|2017 New Version 70-461 Exam Dumps (PDF & VCE) 200Q&As Download:
http://www.braindump2go.com/70-461.html

2.|2017 New Version 70-461 Exam Questions & Answers Download:
https://drive.google.com/drive/folders/0B75b5xYLjSSNTUlVSmx1LXg1TlU?usp=sharing

QUESTION 119
Which of the following practices are considered bad practices? (Choose all that apply.)

A.    Aliasing columns by using the AS clause
B.    Aliasing tables by using the AS clause
C.    Not assigning column aliases when the column is a result of a computation
D.    Using * in the SELECT list

Answer: CD

QUESTION 120
Why is it important to use the appropriate type for attributes?

A.    Because the type of your attribute enables you to control the formatting of the values
B.    Because the type constrains the values to a certain domain of supported values
C.    Because the type prevents duplicates
D.    Because the type prevents NULLs

Answer: B

QUESTION 121
Which of the following functions would you consider using to generate surrogate keys? (Choose all that apply.)

A.    NEWID
B.    NEWSEQUENTIALID
C.    GETDATE
D.    CURRENT_TIMESTAMP

Answer: AB

QUESTION 122
You need to create a view named uv_CustomerFullNames.
The view must prevent the underlying structure of the customer table from being changed.
Part of the correct T-SQL statement has been provided in the answer area.
Provide the complete code.
 
Answer:
CREATE VIEW sales.uv_CustomerFullNames
WITH SCHEMABINDING
AS SELECT
FirstName,
LastName
FROM Sales.Customers

QUESTION 123
You are designing a data warehouse that uses SQL Server 2012.
You are preparing to update the contents of a fact table that contains a non-clustered columnstore index.
You need to run an update statement against the table.
What should you do first?

A.    Pause the columnstore index.
B.    Change the recovery model of the database to Bulk-logged.
C.    Change the non-clustered columnstore index to be a clustered columnstore index.
D.    Drop the columnstore index.

Answer: D

QUESTION 124
You are installing the Data Quality Server component of Data Quality Services.
You need to provision the hardware and install the software for the server that runs the Data Quality Server.
You must ensure that the minimum Data Quality Server prerequisites are met.
What should you do?

A.    Install Microsoft Internet Explorer 6.0 SP1 or later.
B.    Install SQL Server 2012 Database Engine.
C.    Make sure the server has at least 4 GB of RAM.
D.    Install Microsoft SharePoint Server 2010 Standard Edition.

Answer: B
Explanation:
Data Quality Server Minimum System Requirements
* SQL Server 2012 Database Engine.
* Memory (RAM):
Minimum: 2 GB
Recommended: 4 GB or more
Note: SQL Server Data Quality Services (DQS) is a new feature in SQL Server 2012 that contains the following two components: Data Quality Server and Data Quality Client.
QUESTION 125
You need to extract data from a table in a SQL Server 2012 database.
What connection manager types can you use? (Choose all that apply.)

A.    An ODBC connection manager
B.    An OLE DB connection manager
C.    A File connection manager
D.    An ADO.NET connection manager

Answer: ABD

QUESTION 126
You maintain a SQL Server Integration Services (SSIS) package.
The package was developed by using SQL Server 2008 Business Intelligence Development Studio (BIDS). The package includes custom scripts that must be upgraded.
You need to upgrade the package to SQL Server 2012.
Which tool should you use?

A.    SQL Server dtexec utility (dtexec.exe)
B.    SQL Server DTExecUI utility (dtexecui.exe)
C.    SSIS Upgrade Wizard in SQL Server Data Tools
D.    SQL Server Integration Services Deployment Wizard

Answer: C
Explanation:
Use the SSIS Package Upgrade Wizard to upgrade SQL Server 2005 Integration Services (SSIS) packages and SQL Server 2008 Integration Services (SSIS) packages to the package format for the current (2012) release of SQL Server Integration Services.

QUESTION 127
You install a SQL Server 2012 database engine instance on a production server.
A month later, you install SQL Server 2012 Integration Services (SSIS).
You must develop an SSIS project and deploy it to the server by using the Project Deployment model. Operations log records that are outside the configured retention period must be cleaned automatically.
You need to create the SSIS catalog on the production server and ensure that the operations log cleaning requirement is met.
What should you do? (Each correct answer presents part of the solution. Choose all that apply.)

A.    Enable CLR Integration.
B.    Enable FILESTREAM with Full Access.
C.    Enable the Resource Governor.
D.    Change the recovery mode of the msdb database to FULL.
E.     Change the Server-wide Default Logging Level in SSISDB to Verbose.
F.    Start the SQL Server Browser service.
G.    Start the SQL Server Agent service.

Answer: AG
QUESTION 128
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: D
QUESTION 129
You administer a Microsoft SQL Server 2012.
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_sessions WHERE session_id = 60
B.    DBCC OPENTRAN
C.    EXEC sp_helpdb 60
D.    SELECT * FROM sys.dm_exec_requests WHERE session_id = 60

Answer: D
Explanation:
The sp_helpdb – sp_helpdb [ [ @dbname= ] ‘name’ – does not accept a spid – http://technet.microsoft.com/en-us/library/ms178568.aspx
QUESTION 130
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.
C.    Run the sp_who command from a query window.
D.    Run the DBCC TRACEON 1222 command from a query window and review the SQL Server event log.

Answer: A
Explanation:
Trace 1222 is used for deadlocks. To take slow queries better to use Profile! –\Burgos Verified the SQL Profiler and DBCC answers as correct. However, while Profiler will show this information, the best practice with Profiler is to use it short-term.
The question specifically states “over an extended period of time”.
That means Profiler wouldn’t be the best tool for this scenario.
Therefore, DBCC would be the best answer.
http://www.mssqltips.com/sqlservertip/2130/finding-sql-server-deadlocks-using-trace-flag-1222/
http://msdn.microsoft.com/en-us/library/ms188396.aspx

QUESTION 131
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
Explanation:
http://msdn.microsoft.com/en-us/library/bb630282.aspx


!!!RECOMMEND!!!

1.|2017 New Version 70-461 Exam Dumps (PDF & VCE) 200Q&As Download:
http://www.braindump2go.com/70-461.html

2.|2017 New Version 70-461 Study Guide Video:
https://youtu.be/4zRgtUPZF-Y