getcertified4sure.com

Finding Refresh 70-469 training tools




Our pass rate is high to 98.9% and the similarity percentage between our 70-469 study guide and real exam is 90% based on our seven-year educating experience. Do you want achievements in the Microsoft 70-469 exam in just one try? I am currently studying for the Microsoft 70-469 exam. Latest Microsoft 70-469 Test exam practice questions and answers, Try Microsoft 70-469 Brain Dumps First.

Q31. You use SQL Server 2012 to maintain the data used by the applications at your company. 

You plan to create a table named Table1 by using the following statement. (Line numbers are included for reference only.) 

You need to ensure that Table1 contains a column named UserName. The UserName column will: 

Store string values in any language. 

Accept a maximum of 200 characters. 

Be case-insensitive and accent-insensitive. 

Which code segment should you add at line 03? 

A. UserName nvarchar(200) COLLATE Latin1_General_CS_AS NOT NULL, 

B. UserName varchar(200) COLLATE Latin1_General_CI_AI NOT NULL, 

C. UserName varchar(200) COLLATE Latin 1_General_CS_AS NOT NULL, 

D. UserName nvarchar(200) COLLATE Latin1_General_CI_AI NOT NULL, 

Answer:


Q32. You need to monitor the health of your tables and indexes in order to implement the required index maintenance strategy. 

What should you do? 

A. Query system DMVs to monitor avg_chain_length and max_chain_length. Create alerts to notify you when these values converge. 

B. Create a SQL Agent alert when the File Table: Avg time per file I/O request value is increasing. 

C. Query system DMVs to monitor total_bucket_count. Create alerts to notify you when this value increases. 

D. Query system DMVs to monitor total_bucket_count. Create alerts to notify you when this value decreases. 

Answer:


Q33. You have a database that is accessed by 300 concurrent users. 

You need to log all of the queries that become deadlocked. The solution must meet the following requirements: 

. Provide a representation of the deadlock in XML format. 

. Minimize the impact on the server. 

What should you create? 

A. A SQL Server Profiler trace 

B. A script that enables trace flags 

C. A SQL Server Agent job that retrieves information from the sys.dm_tran_active_transactions dynamic management views 

D. A SQL Server Agent job that retrieves information from the sys.dm_tran_session_transactions dynamic management views 

Answer:


Q34. You execute IndexManagement.sql and you receive the following error message: "Msg 512, Level 16, State 1, Line 12 Subquery returned more than 1 value. This is not permitted when the subquery follows =, 

!= ,<, <= , >, > = or when the subquery is used as an expression." 

You need to ensure that IndexManagement.sql executes properly. Which WHILE statement should you use at line 18? 

A. WHILE SUM(@RowNumber) < (SELECT @counter FROM @indextable) 

B. WHILE @counter < (SELECT SUM(RowNumber) FROM @indextable) 

C. WHILE COUNT(@RowNumber) < (SELECT @counter FROM @indextable) 

D. WHILE @counter < (SELECT COUNT(RowNumber) FROM @indextable) 

Answer:


Q35. You need to prepare the database to use the .NET Framework ProcessProducts component. 

Which code segments should you execute? (Each correct answer presents part of the solution. Choose all that apply.) 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

E. Option E 

F. Option F 

G. Option G 

Answer: ACDE 


Q36. You need to implement a solution that meets the data recovery requirements. You update each stored procedure to accept a parameter named @transactionID. What should you add next to the beginning of each stored procedure? 

A. SAVE TRANSACTION WITH MARK @transactionID 

B. ROLLBACK DISTRIBUTED TRANSACTION @transactionID 

C. BEGIN TRANSACTION WITH MARK @transactionID 

D. COMMIT TRANSACTION @transactionID 

Answer:


Q37. You have a SQL Azure database. 

You execute the following script: 

You add 1 million rows to Table1. Approximately 85 percent of all the rows have a null value for Column2. 

You plan to deploy an application that will search Column2. 

You need to create an index on Table1 to support the planned deployment. The solution must minimize the storage requirements. 

Which code segment should you execute? 

A. CREATE INDEX IX_Table1 ON Table1 (Column2) WITH FILLFACTOR-0 

B. CREATE INDEX IX_Table1 OK Table1 (Column1) INCLUDE (Column2) 

C. CREATE INDEX IX_Table1 ON Table1 (Column2) WHERE Column2 IS NULL 

D. CREATE INDEX IX_Table1 ON Table1 (Column2) WHERE Column2 IS NOT NULL 

Answer:


Q38. 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:


Q39. You have a SQL Server 2012 environment that contains two servers. The servers are configured as shown in the following table. 

After the failover is complete, a user receives the following error message when connecting to DB1 on Server2: 

"Msg 916, Level 14, State 1, Line 1 The server principal "Account1" is not able to access the database "DB1" under the current security context." 

You verify that there is a server login for Account1 on Server2. 

You need to ensure that Account1 can connect to DB1. 

What should you do? 

More than one answer choice may achieve the goal. Select the BEST answer. 

A. Update the SID for Account1 on DB1. 

B. Add Account1 to the db_datareader role. 

C. Create a new database user on DB1. 

D. Implement Windows authentication. 

Answer:


Q40. You have the following query on a disk-based table: 

You discover that the query takes a long time to complete. 

The execution plan is shown in the Execution Plan exhibit. (Click the Exhibit button.) 

The index usage is show in the Index Usage exhibit. (Click the Exhibit button.) 

You need to reduce the amount of time it takes to complete the query. You must achieve this goal as quickly as possible. 

What should you do? 

A. Reorganize the index. 

B. Update statistics. 

C. Create an index on LastName. 

D. Rebuild the index. 

Answer: