{"id":11839,"date":"2026-09-14T12:31:54","date_gmt":"2026-09-14T12:31:54","guid":{"rendered":"https:\/\/www.examlabs.com\/certification\/?p=11839"},"modified":"2026-09-14T12:31:54","modified_gmt":"2026-09-14T12:31:54","slug":"microsoft-dp-800-practice-test-questions-and-exam-dumps-part-13-q241-q260","status":"publish","type":"post","link":"https:\/\/www.examlabs.com\/certification\/microsoft-dp-800-practice-test-questions-and-exam-dumps-part-13-q241-q260\/","title":{"rendered":"Microsoft DP-800 Practice Test Questions and Exam Dumps Part 13: Q241\u2013Q260"},"content":{"rendered":"<h2><b>View Full\u00a0<a href=\"https:\/\/www.examlabs.com\/dp-800-exam-dumps\">Microsoft DP-800 Exam Dumps<\/a>\u00a0and Practice Test Dumps.<\/b><\/h2>\n<p>&nbsp;<\/p>\n<h3><b>Question 241<\/b><\/h3>\n<p><b>Which SQL Server object is used to group multiple operations into a single unit of work that can be committed or rolled back?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">View<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Transaction<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Index<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Schema<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 2<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">A transaction groups one or more database operations into a logical unit of work. The operations can be committed when everything succeeds or rolled back if an error occurs. Transactions help maintain data consistency when multiple related changes must succeed together. In T-SQL, administrators commonly use <\/span><span style=\"font-weight: 400;\">BEGIN TRANSACTION<\/span><span style=\"font-weight: 400;\">, <\/span><span style=\"font-weight: 400;\">COMMIT<\/span><span style=\"font-weight: 400;\">, and <\/span><span style=\"font-weight: 400;\">ROLLBACK<\/span><span style=\"font-weight: 400;\"> to control transactions. Proper transaction design is especially important when applications modify multiple related tables.<\/span><\/p>\n<h3><b>Question 242<\/b><\/h3>\n<p><b>Which transaction isolation level provides the highest level of protection against dirty reads, non-repeatable reads, and phantom reads?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">READ UNCOMMITTED<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">READ COMMITTED<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">SERIALIZABLE<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">SNAPSHOT<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 3<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The SERIALIZABLE isolation level provides the strictest standard transaction isolation. It prevents dirty reads, non-repeatable reads, and phantom reads by using locking behavior that can restrict other transactions from modifying or inserting qualifying rows during the transaction. This strong protection can reduce concurrency and may increase blocking. Administrators should use SERIALIZABLE only when the application&#8217;s consistency requirements justify its additional locking and concurrency impact.<\/span><\/p>\n<h3><b>Question 243<\/b><\/h3>\n<p><b>Which isolation level allows a transaction to read data that another transaction has not yet committed?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">SNAPSHOT<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">SERIALIZABLE<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">READ COMMITTED<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">READ UNCOMMITTED<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 4<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">READ UNCOMMITTED is the least restrictive standard transaction isolation level. It allows a transaction to read data that another transaction has modified but not yet committed. Such reads are called dirty reads. This isolation level can reduce locking and improve concurrency, but the returned data may be inconsistent or later rolled back. It should therefore be used carefully and only when the application can tolerate potentially uncommitted data.<\/span><\/p>\n<h3><b>Question 244<\/b><\/h3>\n<p><b>Which isolation level uses row versions to provide transactionally consistent reads without normally blocking writers?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">SNAPSHOT<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">SERIALIZABLE<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">READ UNCOMMITTED<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">REPEATABLE READ<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The SNAPSHOT isolation level uses row versions to provide a consistent view of data as it existed when the transaction began. Readers generally do not block writers, which can improve concurrency compared with lock-based approaches. Row versions are maintained in the version store, which has storage and workload implications. Administrators should understand the application&#8217;s consistency requirements and monitor version-store usage when enabling row-versioning-based isolation.<\/span><\/p>\n<h3><b>Question 245<\/b><\/h3>\n<p><b>Which system database is primarily used for temporary objects, intermediate query results, and row-versioning information?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">master<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">msdb<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">tempdb<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">model<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 3<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">tempdb<\/span><span style=\"font-weight: 400;\"> is a system database used for temporary tables, table variables, worktables, sorting, hashing, and other temporary operations. It can also store row versions for supported row-versioning features. Because many database operations depend on tempdb, insufficient storage or heavy tempdb contention can affect overall SQL Server performance. Administrators should monitor tempdb usage and configure its files appropriately for the workload.<\/span><\/p>\n<h3><b>Question 246<\/b><\/h3>\n<p><b>Which system database stores information used by SQL Server Agent jobs and schedules?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">msdb<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">master<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">tempdb<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">model<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The <\/span><span style=\"font-weight: 400;\">msdb<\/span><span style=\"font-weight: 400;\"> system database stores information used by SQL Server Agent, including jobs, schedules, operators, and job history. It also contains information related to tasks such as backup and restore history. Because SQL Server Agent depends on msdb, administrators should include msdb in their backup strategy when using SQL Server environments that require recovery of jobs and related configuration. Azure SQL Database does not provide SQL Server Agent in the same way.<\/span><\/p>\n<h3><b>Question 247<\/b><\/h3>\n<p><b>Which system database contains information about SQL Server instance configuration and databases?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">tempdb<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">master<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">msdb<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">model<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 2<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The <\/span><span style=\"font-weight: 400;\">master<\/span><span style=\"font-weight: 400;\"> database contains critical system-level information about the SQL Server instance. It stores information about databases, logins, endpoints, and other instance configuration details. If the master database is unavailable or damaged, the SQL Server instance can have serious startup and operational problems. Administrators should therefore protect the master database through appropriate backup and recovery procedures, especially on SQL Server installations where they manage the underlying instance.<\/span><\/p>\n<h3><b>Question 248<\/b><\/h3>\n<p><b>Which system database provides the template used when new databases are created?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">model<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">master<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">msdb<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">tempdb<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The <\/span><span style=\"font-weight: 400;\">model<\/span><span style=\"font-weight: 400;\"> database acts as a template for newly created databases. Settings and objects configured in model can influence the initial configuration of new databases. Administrators can use this behavior when they need consistent defaults across newly created databases. However, changes to model should be made carefully because they can affect future database creation. Existing databases are not automatically changed when the model database is modified.<\/span><\/p>\n<h3><b>Question 249<\/b><\/h3>\n<p><b>Which database object automatically executes when a specified data modification or database event occurs?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">View<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Trigger<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Index<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Function<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 2<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">A trigger is a database object that automatically executes in response to specific events. DML triggers can respond to operations such as INSERT, UPDATE, or DELETE, while other trigger types can respond to supported database or server events. Triggers can be useful for enforcing rules or recording changes, but excessive trigger logic can make applications harder to troubleshoot and may affect performance. Administrators should keep trigger behavior simple and well documented.<\/span><\/p>\n<h3><b>Question 250<\/b><\/h3>\n<p><b>Which database object provides a stored query that can be used like a virtual table?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">View<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Trigger<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Index<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Constraint<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">A view is a virtual table based on a SELECT query. It can present data from one or more underlying tables while hiding query complexity from users or applications. Views can also help provide a controlled interface to data by exposing only selected columns or rows. The underlying data is normally stored in the base tables rather than in the view itself. Administrators should consider indexing and query complexity when designing frequently used views.<\/span><\/p>\n<h3><b>Question 251<\/b><\/h3>\n<p><b>Which database object can contain multiple T-SQL statements and accept parameters for reusable database operations?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Stored procedure<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Index<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Constraint<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Schema<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">A stored procedure is a reusable database program that can contain multiple T-SQL statements and accept input or output parameters. Stored procedures are commonly used to centralize database operations, simplify application code, and control access to underlying data. Permissions can be granted to execute a procedure without necessarily granting direct access to every underlying object in suitable ownership-chain scenarios. Administrators should monitor procedure performance and maintain clear permission boundaries.<\/span><\/p>\n<h3><b>Question 252<\/b><\/h3>\n<p><b>Which type of function returns a table as its result?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Scalar function<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Table-valued function<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Trigger<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Stored procedure<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 2<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">A table-valued function returns a table result that can be queried similarly to a table expression. It can accept parameters and encapsulate reusable logic for returning rows. Table-valued functions can be useful when applications need reusable query logic that integrates into SELECT statements. Administrators should understand the performance characteristics of the specific function type and query design because poorly designed functions can introduce unnecessary overhead.<\/span><\/p>\n<h3><b>Question 253<\/b><\/h3>\n<p><b>Which database object is primarily used to improve the speed of data retrieval operations?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Trigger<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Index<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">View<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Constraint<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 2<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">An index provides an additional data structure that can help the database engine locate rows more efficiently. Proper indexing can significantly improve SELECT, JOIN, filtering, and ordering operations. However, indexes also require storage and must be maintained when data changes. Too many indexes can increase INSERT, UPDATE, and DELETE costs. Administrators should use execution plans, workload information, and index usage statistics when deciding which indexes are beneficial.<\/span><\/p>\n<h3><b>Question 254<\/b><\/h3>\n<p><b>Which type of index determines the physical order of rows in a SQL Server table?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Nonclustered index<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Filtered index<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Clustered index<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">XML index<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 3<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">A clustered index determines the logical order in which the table&#8217;s data rows are organized based on the clustering key. Because a table can have only one clustered index, administrators should choose its key carefully. Clustered indexes are often useful for columns commonly used for range searches, ordering, or joins. The exact physical storage behavior depends on the storage engine, but the clustered index provides the primary organization of the table&#8217;s data.<\/span><\/p>\n<h3><b>Question 255<\/b><\/h3>\n<p><b>How many clustered indexes can a SQL Server table have?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">One<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Two<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Five<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Unlimited<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">A table can have only one clustered index because the clustered index defines the organization of the table&#8217;s data rows. A table can have multiple nonclustered indexes because these are separate structures that reference the underlying data. Administrators must therefore carefully select the clustered index key based on query patterns, uniqueness, size, and data modification behavior. Choosing an unsuitable clustered index can negatively affect both query performance and maintenance operations.<\/span><\/p>\n<h3><b>Question 256<\/b><\/h3>\n<p><b>Which feature divides a large table or index into smaller logical portions based on a partitioning key?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Compression<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Partitioning<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Encryption<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Replication<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 2<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">Table and index partitioning divides data into smaller partitions based on a partitioning column and partition function. Partitioning can make large tables easier to manage and can improve performance for queries that can eliminate unnecessary partitions. It can also simplify operations such as loading or archiving specific ranges of data. Partitioning does not automatically improve every workload, so administrators should design partitions around actual data distribution and query patterns.<\/span><\/p>\n<h3><b>Question 257<\/b><\/h3>\n<p><b>What is partition elimination?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Removing unused database users<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Reading only the table partitions relevant to a query<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Deleting old database backups<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Removing unused indexes<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 2<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">Partition elimination occurs when the query optimizer can determine that only certain partitions can contain the rows required by a query. The database engine can then avoid scanning irrelevant partitions, reducing the amount of data that must be processed. Effective partition elimination depends on query predicates matching the partitioning strategy. Administrators should design partition keys and queries carefully so that common filtering operations can take advantage of partition elimination.<\/span><\/p>\n<h3><b>Question 258<\/b><\/h3>\n<p><b>Which feature can reduce the amount of storage required by database data or indexes?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Data compression<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Row-Level Security<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Query Store<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Database auditing<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">Data compression reduces the storage space required by database data and, in supported scenarios, indexes. Compression can also reduce I\/O because fewer pages may need to be read from storage. However, compression requires additional CPU resources for compression and decompression operations. Administrators should evaluate workload characteristics before enabling compression and should monitor CPU usage and performance after applying it. The best choice depends on the balance between storage, I\/O, and CPU resources.<\/span><\/p>\n<h3><b>Question 259<\/b><\/h3>\n<p><b>Which feature can retain historical query plans and runtime statistics for performance troubleshooting?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Query Store<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Azure Firewall<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Resource Group<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Key Vault<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">Query Store maintains historical information about queries, execution plans, and runtime performance, depending on its configuration. This allows administrators to investigate how query performance changes over time rather than relying only on current execution information. Query Store is particularly useful for identifying plan regressions and understanding which queries consume significant resources. Administrators can use this information when troubleshooting slow applications and deciding whether plan forcing or query optimization is appropriate.<\/span><\/p>\n<h3><b>Question 260<\/b><\/h3>\n<p><b>Which SQL Server tool provides a graphical interface for viewing current sessions, processes, locks, and database activity?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Activity Monitor<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">SQL Server Configuration Manager<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">SQL Server Profiler<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Database Engine Tuning Advisor<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">Activity Monitor provides a graphical overview of current SQL Server activity. Administrators can use it to examine processes, resource usage, waits, and other operational information while troubleshooting database performance. It can help identify active sessions and potentially problematic workloads. For deeper investigation, administrators may combine Activity Monitor with dynamic management views, execution plans, Query Store, and Extended Events. Activity Monitor is mainly useful for real-time operational observation rather than long-term performance history.<\/span><\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>View Full\u00a0Microsoft DP-800 Exam Dumps\u00a0and Practice Test Dumps. &nbsp; Question 241 Which SQL Server object is used to group multiple operations into a single unit of work that can be committed or rolled back? View Transaction Index Schema Correct Answer: 2 Explanation A transaction groups one or more database operations into a logical unit of [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":[],"categories":[1648,1647],"tags":[],"_links":{"self":[{"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/posts\/11839"}],"collection":[{"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/comments?post=11839"}],"version-history":[{"count":1,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/posts\/11839\/revisions"}],"predecessor-version":[{"id":11840,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/posts\/11839\/revisions\/11840"}],"wp:attachment":[{"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/media?parent=11839"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/categories?post=11839"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/tags?post=11839"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}