Which database stores the information about logins in SQL Server?
The latest changes and updates from the administration for this exam.
Latest Update: Jun 25 2026
All questions are working fine.
Which database stores the information about logins in SQL Server?
Natasha is working at the new Avengers facility and has been assigned a problem to solve. At this point, she needs to understand:
• The problem that the company needs to solve.
• Any requirements and constraints that go along with a solution.
It's a formal set of paragraphs that clearly define the circumstances, present condition, and desired outcomes for a solution. At this point, you want to avoid exploring how to solve the problem and focus on what you want to solve.
In production, there are normally six phases to create a solution.
Which of the following are elements of these phases? (Select six)
Select all that apply
Identify the missing word(s) in the following sentence within the context of Microsoft Azure.
Index design is a little bit art and a little bit science. A narrow index with few columns in its key requires less time to update and has lower maintenance overhead; however it may not be useful for as many queries as a wider index that includes more columns.
Columnstore indexes were introduced to offer improved performance for queries that run large aggregation workloads. This type of index was originally targeted at data warehouses, but over time they have been used in a number of other workloads in order to help solve query performance issues on large tables.
[?] are typically used in two scenarios:
1. When a column in the table has a data type that is not supported in a columnstore index. Most data types are supported but XML, CLR, sql_variant, ntext, text, and image are not supported in a columnstore index. Since a clustered columnstore always contains all the columns of the table (because it IS the table), a nonclustered is the only option.
2. As a filtered index—this scenario is used in an architecture called hybrid transactional analytic processing (HTAP), where data is being loaded into the underlying table, and at the same time reports are being run on the table. By filtering the index (typically on a date field), this design allows for both good insert and reporting performance.
Identify the missing word(s) in the following sentence within the context of Microsoft Azure.
[?] occurs when one transaction has a lock on a resource, and another transaction has a lock on a second resource. Each transaction then attempts to take a lock on the resource which is currently locked by the other transaction. This scenario would lead to an infinite wait, as neither transaction could complete. [?] is recorded in the system_health extended event session which is enabled by default.
Security Principal objects (identities) can represent. (Select four)
Select all that apply
Happy Hogan was hired at Hammer Advanced Systems to build a mission-critical cloud application that requires 99.995 percent availability because downtime might be life threatening.
High performance is required, because any delay in response carries high risk and can be life-threatening. Given the sensitivity of the collected personal information, data sovereignty must be guaranteed. His main mission is to ensure that the app is designed and deployed with the appropriate data redundancy and fault resilience to meet the availability and data sovereignty goals.
The emergency dispatch system coordinators are concerned about protecting sensitive data (PII) while allowing database analysts (DBAs) to perform their jobs.
DBAs must not be able to see sensitive data stored in specific columns, and all access to tables that contain sensitive data must be monitored.
At the same time, DBAs need to be able to troubleshoot performance by using the Azure portal, SQL Server Management Studio, and Azure Data Studio. They also need the ability to create new contained database users who must be mapped to Azure AD principals.
How can you ensure that DBAs can't see sensitive data stored in specific columns?
Identify the missing word(s) in the following sentence within the context of Microsoft Azure.
[?] frameworks include PowerShell and the Azure CLI, which follow a prescriptive order of tasks to be executed.
Identify the missing word(s) in the following sentence within the context of Microsoft Azure.
[?] service forms a new information-protection paradigm for Azure SQL Database and Azure SQL Managed Instance. The service is aimed at protecting the data and not just the database.
This paradigm includes:
• Finding and making recommendations for potentially sensitive data that should be classified.
• The ability to persistently add labels to columns by using metadata attributes.
• The ability to audit and query sensitive data access.
Which are Azure SQL deployment options? (Select four)
Select all that apply
How do you maintain indexes with Azure SQL?