Microsoft Administering Relational Databases on Microsoft Azure (DP-300 Deutsch Version) (DP-300 Deutsch) Free Practice Test
Question 1
Sie haben eine Azure SQL-Datenbank. Die Datenbank enthält eine Tabelle, die einen Columnstore-Index verwendet und auf die selten zugegriffen wird.
Sie aktivieren die Columnstore-Archivierungskomprimierung.
Was sind zwei mögliche Ergebnisse der Konfiguration? Jede richtige Antwort stellt eine vollständige Lösung dar.
HINWEIS: Jede richtige Auswahl ist einen Punkt wert.
Sie aktivieren die Columnstore-Archivierungskomprimierung.
Was sind zwei mögliche Ergebnisse der Konfiguration? Jede richtige Antwort stellt eine vollständige Lösung dar.
HINWEIS: Jede richtige Auswahl ist einen Punkt wert.
Correct Answer: A,B
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 2
Sie besitzen eine lokale Microsoft SQL Server 2016-Instanz, die eine Datenbank namens db1 hostet. Sie besitzen ein Azure-Abonnement, das eine verwaltete Azure SQL-Instanz namens Mil enthält.
Sie planen, eine Online-Migration von db1 zu MM mithilfe des Azure Database Migration Service durchzuführen.
Sie müssen Backups für die Migration erstellen. Die Lösung muss die Anzahl der zu erstellenden Backup-Dateien minimieren.
Welche Art von Backups sollten Sie erstellen und wie sollten Sie diese speichern? Wählen Sie dazu die entsprechenden Optionen im Antwortbereich aus.
HINWEIS: Jede richtige Auswahl zählt als ein Punkt.

Sie planen, eine Online-Migration von db1 zu MM mithilfe des Azure Database Migration Service durchzuführen.
Sie müssen Backups für die Migration erstellen. Die Lösung muss die Anzahl der zu erstellenden Backup-Dateien minimieren.
Welche Art von Backups sollten Sie erstellen und wie sollten Sie diese speichern? Wählen Sie dazu die entsprechenden Optionen im Antwortbereich aus.
HINWEIS: Jede richtige Auswahl zählt als ein Punkt.

Correct Answer:

Explanation:

Basic Concept: This question tests choosing the correct Azure migration approach by matching the source platform, target service, downtime tolerance, and administrative effort.
Why the selected answer is Correct: The selected values fit this scenario because they apply the required Azure SQL configuration at the correct scope and sequence: You need to create the backups for the migration.
Why the alternate choices are Wrong: The alternate selections would either use a migration tier that does not match the downtime requirement, choose a network resource that does not support the migration path, or add an unnecessary deployment component.
Question 3
Aufgabe 6
Sie müssen sicherstellen, dass Sie über eine private IP-Adresse in einem virtuellen Netzwerk namens VNET1 eine Verbindung zu db1 herstellen können. Möglicherweise müssen Sie SQL Server Management Studio und das Azure-Portal verwenden.
Sie müssen sicherstellen, dass Sie über eine private IP-Adresse in einem virtuellen Netzwerk namens VNET1 eine Verbindung zu db1 herstellen können. Möglicherweise müssen Sie SQL Server Management Studio und das Azure-Portal verwenden.
Correct Answer:
See the explanation part for the complete Solution.
Explanation:
Create an Azure Private Endpoint for the Azure SQL logical server that hosts db1, place the private endpoint in VNET1, and integrate it with the private DNS zone:
privatelink.database.windows.net
This is the correct solution because Azure SQL Database is a PaaS service. You do not assign a private IP directly to db1. Instead, Azure creates a private endpoint network interface in the virtual network. That private endpoint receives a private IP address from a subnet in VNET1, and clients in VNET1 use that private IP path to reach the SQL server. Microsoft defines a private endpoint as a network interface that uses a private IP address from your virtual network to connect privately to a Private Link resource such as Azure SQL Database.
Azure Portal Method - Recommended for Simulation
Step 1: Identify the SQL logical server that hosts db1
Sign in to the Azure portal.
Search for SQL databases.
Open db1.
On the database overview page, identify the Server name.
The private endpoint is created for the Azure SQL logical server, not for the database object alone. For Azure SQL Database, the Private Link resource type is:
Microsoft.Sql/servers
and the target subresource is:
sqlServer
Microsoft lists Azure SQL Database private endpoint DNS configuration under Microsoft.Sql/servers with subresource sqlServer.
Step 2: Open the SQL server networking page
Open the Azure SQL logical server that hosts db1.
In the left menu, go to:
Security > Networking
Select the Private access tab.
Select Create a private endpoint.
Microsoft's Azure SQL private endpoint workflow is performed from the SQL server resource under Networking > Private access, where you can create or manage private endpoint connections.
Step 3: Configure the private endpoint basics
On the Create private endpoint page:
Setting
Value
Subscription
Use the lab subscription
Resource group
Use the lab resource group
Name
pe-db1-sql
Region
Same region as VNET1, if possible
The name is not exam-critical. The critical part is that the endpoint is associated with VNET1 and the SQL server that hosts db1.
Step 4: Configure the target resource
On the Resource tab, configure:
Setting
Value
Connection method
Connect to an Azure resource in my directory
Resource type
Microsoft.Sql/servers
Resource
SQL logical server that hosts db1
Target sub-resource
sqlServer
Do not choose storage, VM, managed instance, or any unrelated resource type. This is Azure SQL Database, so the target subresource must be sqlServer.
Step 5: Configure VNET1 and subnet
On the Virtual Network tab:
Setting
Value
Virtual network
VNET1
Subnet
Select an available subnet in VNET1
Private IP configuration
Dynamic is fine unless the lab requires static
Azure will create a network interface for the private endpoint and assign it a private IP address from the selected subnet. Microsoft notes that the network interface page for the private endpoint shows the private IP address assigned to the private endpoint connection.
Step 6: Configure private DNS integration
On the DNS tab:
Enable private DNS zone integration.
Use or create the private DNS zone:
privatelink.database.windows.net
Link the private DNS zone to:
VNET1
This is not optional in a clean exam solution. Without DNS integration, clients may still resolve the SQL server name to the public endpoint instead of the private endpoint. Microsoft states that DNS is critical because it resolves the private endpoint IP address, and for Azure SQL Database the recommended private DNS zone is privatelink.database.windows.net.
Step 7: Review and create
Select Review + create.
Confirm:
Resource: SQL logical server hosting db1
Target subresource: sqlServer
Virtual network: VNET1
Private DNS zone: privatelink.database.windows.net
Select Create.
After deployment, the SQL server will have a private endpoint connection associated with VNET1.
Step 8: Approve the private endpoint connection if required
In most same-directory deployments, approval may be automatic. If approval is pending:
Open the SQL logical server.
Go to:
Networking > Private access
Select the pending private endpoint connection.
Select Approve.
Microsoft documents that SQL administrators can approve or reject private endpoint connections from the SQL server private access page.
Step 9: Optional but recommended - Disable public network access
The task only says you need to connect by private IP from VNET1. It does not explicitly say to block public access. But if the exam expects private-only access, then disable public access after the private endpoint works.
On the SQL logical server:
Go to:
Security > Networking > Public access
Set Public network access to:
Disabled
or select:
Deny public network access
Save.
Be careful: Microsoft states that adding a private endpoint does not automatically block public routing to the logical server. Public access must be denied separately if you want private-only access.
How to Connect from SSMS
You should connect from a machine that is inside VNET1, such as an Azure VM joined to VNET1.
Step 1: Test DNS from a VM in VNET1
From a VM in VNET1, run:
nslookup < sql-server-name > .database.windows.net
Expected result: the name should resolve through the private endpoint path and return a private IP address from VNET1's address space.
Microsoft explains that connection URLs do not change; DNS resolution is overridden so the existing service FQDN resolves to the private endpoint private IP address.
Step 2: Connect with SSMS
In SSMS, connect using the normal Azure SQL server name:
< sql-server-name > .database.windows.net
Then select database:
db1
Use normal SQL authentication or Microsoft Entra authentication.
Do not type the raw private IP address into SSMS unless the lab specifically forces it. For Azure SQL, the correct operational pattern is to connect to the SQL server FQDN and allow private DNS to resolve that FQDN to the private endpoint IP. Direct IP connection can cause TLS/certificate name problems because the server certificate matches the DNS name, not the private IP.
Verification
The task is complete when all of these are true:
Private endpoint exists for the SQL logical server hosting db1.
Target subresource is sqlServer.
The private endpoint is deployed into VNET1.
A private IP address is assigned to the private endpoint NIC.
Private DNS zone privatelink.database.windows.net exists.
The private DNS zone is linked to VNET1.
The SQL server FQDN resolves to the private endpoint private IP from inside VNET1.
SSMS can connect to db1 from a VM or client connected to VNET1.
Final Exam-Lab Action
Use the Azure portal and configure:
SQL server hosting db1
> Networking
> Private access
> Create private endpoint
Resource type: Microsoft.Sql/servers
Target subresource: sqlServer
Virtual network: VNET1
Private DNS zone: privatelink.database.windows.net
Then connect from a VM or client in VNET1 using:
< sql-server-name > .database.windows.net
That is the correct way to ensure db1 is reachable through a private IP address on VNET1.
Explanation:
Create an Azure Private Endpoint for the Azure SQL logical server that hosts db1, place the private endpoint in VNET1, and integrate it with the private DNS zone:
privatelink.database.windows.net
This is the correct solution because Azure SQL Database is a PaaS service. You do not assign a private IP directly to db1. Instead, Azure creates a private endpoint network interface in the virtual network. That private endpoint receives a private IP address from a subnet in VNET1, and clients in VNET1 use that private IP path to reach the SQL server. Microsoft defines a private endpoint as a network interface that uses a private IP address from your virtual network to connect privately to a Private Link resource such as Azure SQL Database.
Azure Portal Method - Recommended for Simulation
Step 1: Identify the SQL logical server that hosts db1
Sign in to the Azure portal.
Search for SQL databases.
Open db1.
On the database overview page, identify the Server name.
The private endpoint is created for the Azure SQL logical server, not for the database object alone. For Azure SQL Database, the Private Link resource type is:
Microsoft.Sql/servers
and the target subresource is:
sqlServer
Microsoft lists Azure SQL Database private endpoint DNS configuration under Microsoft.Sql/servers with subresource sqlServer.
Step 2: Open the SQL server networking page
Open the Azure SQL logical server that hosts db1.
In the left menu, go to:
Security > Networking
Select the Private access tab.
Select Create a private endpoint.
Microsoft's Azure SQL private endpoint workflow is performed from the SQL server resource under Networking > Private access, where you can create or manage private endpoint connections.
Step 3: Configure the private endpoint basics
On the Create private endpoint page:
Setting
Value
Subscription
Use the lab subscription
Resource group
Use the lab resource group
Name
pe-db1-sql
Region
Same region as VNET1, if possible
The name is not exam-critical. The critical part is that the endpoint is associated with VNET1 and the SQL server that hosts db1.
Step 4: Configure the target resource
On the Resource tab, configure:
Setting
Value
Connection method
Connect to an Azure resource in my directory
Resource type
Microsoft.Sql/servers
Resource
SQL logical server that hosts db1
Target sub-resource
sqlServer
Do not choose storage, VM, managed instance, or any unrelated resource type. This is Azure SQL Database, so the target subresource must be sqlServer.
Step 5: Configure VNET1 and subnet
On the Virtual Network tab:
Setting
Value
Virtual network
VNET1
Subnet
Select an available subnet in VNET1
Private IP configuration
Dynamic is fine unless the lab requires static
Azure will create a network interface for the private endpoint and assign it a private IP address from the selected subnet. Microsoft notes that the network interface page for the private endpoint shows the private IP address assigned to the private endpoint connection.
Step 6: Configure private DNS integration
On the DNS tab:
Enable private DNS zone integration.
Use or create the private DNS zone:
privatelink.database.windows.net
Link the private DNS zone to:
VNET1
This is not optional in a clean exam solution. Without DNS integration, clients may still resolve the SQL server name to the public endpoint instead of the private endpoint. Microsoft states that DNS is critical because it resolves the private endpoint IP address, and for Azure SQL Database the recommended private DNS zone is privatelink.database.windows.net.
Step 7: Review and create
Select Review + create.
Confirm:
Resource: SQL logical server hosting db1
Target subresource: sqlServer
Virtual network: VNET1
Private DNS zone: privatelink.database.windows.net
Select Create.
After deployment, the SQL server will have a private endpoint connection associated with VNET1.
Step 8: Approve the private endpoint connection if required
In most same-directory deployments, approval may be automatic. If approval is pending:
Open the SQL logical server.
Go to:
Networking > Private access
Select the pending private endpoint connection.
Select Approve.
Microsoft documents that SQL administrators can approve or reject private endpoint connections from the SQL server private access page.
Step 9: Optional but recommended - Disable public network access
The task only says you need to connect by private IP from VNET1. It does not explicitly say to block public access. But if the exam expects private-only access, then disable public access after the private endpoint works.
On the SQL logical server:
Go to:
Security > Networking > Public access
Set Public network access to:
Disabled
or select:
Deny public network access
Save.
Be careful: Microsoft states that adding a private endpoint does not automatically block public routing to the logical server. Public access must be denied separately if you want private-only access.
How to Connect from SSMS
You should connect from a machine that is inside VNET1, such as an Azure VM joined to VNET1.
Step 1: Test DNS from a VM in VNET1
From a VM in VNET1, run:
nslookup < sql-server-name > .database.windows.net
Expected result: the name should resolve through the private endpoint path and return a private IP address from VNET1's address space.
Microsoft explains that connection URLs do not change; DNS resolution is overridden so the existing service FQDN resolves to the private endpoint private IP address.
Step 2: Connect with SSMS
In SSMS, connect using the normal Azure SQL server name:
< sql-server-name > .database.windows.net
Then select database:
db1
Use normal SQL authentication or Microsoft Entra authentication.
Do not type the raw private IP address into SSMS unless the lab specifically forces it. For Azure SQL, the correct operational pattern is to connect to the SQL server FQDN and allow private DNS to resolve that FQDN to the private endpoint IP. Direct IP connection can cause TLS/certificate name problems because the server certificate matches the DNS name, not the private IP.
Verification
The task is complete when all of these are true:
Private endpoint exists for the SQL logical server hosting db1.
Target subresource is sqlServer.
The private endpoint is deployed into VNET1.
A private IP address is assigned to the private endpoint NIC.
Private DNS zone privatelink.database.windows.net exists.
The private DNS zone is linked to VNET1.
The SQL server FQDN resolves to the private endpoint private IP from inside VNET1.
SSMS can connect to db1 from a VM or client connected to VNET1.
Final Exam-Lab Action
Use the Azure portal and configure:
SQL server hosting db1
> Networking
> Private access
> Create private endpoint
Resource type: Microsoft.Sql/servers
Target subresource: sqlServer
Virtual network: VNET1
Private DNS zone: privatelink.database.windows.net
Then connect from a VM or client in VNET1 using:
< sql-server-name > .database.windows.net
That is the correct way to ensure db1 is reachable through a private IP address on VNET1.
Question 4
Sie besitzen ein Azure-Abonnement, das eine Azure SQL-Datenbank mit dem Namen DB1 enthält.
Sie müssen DB1 mithilfe der Azure-Befehlszeilenschnittstelle (Azure CLI) auf ein vCore-basiertes Beschaffungsmodell migrieren. Die Lösung muss die folgenden Anforderungen erfüllen:
* Zwei hochverfügbare Replikate sind enthalten.
* Minimieren Sie Ausfallzeiten.
Wie sollte der Azure CLI-Befehl vollständig ausgeführt werden? Wählen Sie dazu die entsprechenden Optionen im Antwortbereich aus.
HINWEIS: Jede richtige Auswahl zählt als ein Punkt.

Sie müssen DB1 mithilfe der Azure-Befehlszeilenschnittstelle (Azure CLI) auf ein vCore-basiertes Beschaffungsmodell migrieren. Die Lösung muss die folgenden Anforderungen erfüllen:
* Zwei hochverfügbare Replikate sind enthalten.
* Minimieren Sie Ausfallzeiten.
Wie sollte der Azure CLI-Befehl vollständig ausgeführt werden? Wählen Sie dazu die entsprechenden Optionen im Antwortbereich aus.
HINWEIS: Jede richtige Auswahl zählt als ein Punkt.

Correct Answer:

Explanation:

Basic Concept: This question tests choosing the correct Azure migration approach by matching the source platform, target service, downtime tolerance, and administrative effort.
Why the selected answer is Correct: The selected values fit this scenario because they apply the required Azure SQL configuration at the correct scope and sequence: You need to migrate DB1 to a vCore-based purchasing model by using the Azure Command-Line Interface (Azure CLI).
Why the alternate choices are Wrong: The alternate selections would either use a migration tier that does not match the downtime requirement, choose a network resource that does not support the migration path, or add an unnecessary deployment component.
Question 5
Hinweis: Diese Frage ist Teil einer Reihe von Fragen, die dasselbe Szenario darstellen. Jede Frage in der Reihe enthält eine einzigartige Lösung, die die angegebenen Ziele erfüllen könnte. Einige Fragensätze haben möglicherweise mehr als eine richtige Lösung, während andere möglicherweise keine richtige Lösung haben.
Nachdem Sie eine Frage in diesem Abschnitt beantwortet haben, können Sie NICHT mehr dorthin zurückkehren. Daher werden diese Fragen nicht auf dem Überprüfungsbildschirm angezeigt.
Sie haben zwei Azure SQL-Datenbankserver namens Server1 und Server2. Jeder Server enthält eine Azure SQL-Datenbank mit dem Namen Database1.
Sie müssen Database1 von Server1 auf Server2 wiederherstellen. Die Lösung muss die vorhandene Database1 auf Server2 ersetzen.
Lösung: Löschen Sie im Azure-Portal Database1 von Server2 und erstellen Sie dann eine neue Datenbank auf Server2, indem Sie die Sicherung von Database1 von Server1 verwenden.
Erreicht dies das Ziel?
Nachdem Sie eine Frage in diesem Abschnitt beantwortet haben, können Sie NICHT mehr dorthin zurückkehren. Daher werden diese Fragen nicht auf dem Überprüfungsbildschirm angezeigt.
Sie haben zwei Azure SQL-Datenbankserver namens Server1 und Server2. Jeder Server enthält eine Azure SQL-Datenbank mit dem Namen Database1.
Sie müssen Database1 von Server1 auf Server2 wiederherstellen. Die Lösung muss die vorhandene Database1 auf Server2 ersetzen.
Lösung: Löschen Sie im Azure-Portal Database1 von Server2 und erstellen Sie dann eine neue Datenbank auf Server2, indem Sie die Sicherung von Database1 von Server1 verwenden.
Erreicht dies das Ziel?
Correct Answer: A
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 6
Sie haben eine lokale Microsoft SQL Server 2019-Datenbank namens SQL1, die die Mergereplikation verwendet. Sie müssen SQL1 zu Azure migrieren. Welchen Dienst sollten Sie nutzen?
Correct Answer: A
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 7
Hinweis: Diese Frage ist Teil einer Reihe von Fragen, die dasselbe Szenario darstellen. Jede Frage in der Reihe enthält eine einzigartige Lösung, die die angegebenen Ziele erfüllen könnte. Einige Fragensätze haben möglicherweise mehr als eine richtige Lösung, während andere möglicherweise keine richtige Lösung haben.
Nachdem Sie eine Frage in diesem Abschnitt beantwortet haben, können Sie NICHT mehr dorthin zurückkehren. Daher werden diese Fragen nicht auf dem Überprüfungsbildschirm angezeigt.
Sie haben einen dedizierten Azure Synapse Analytics-SQL-Pool, der eine Tabelle mit dem Namen „Table1“ enthält.
Sie haben Dateien, die erfasst und in einen Azure Data Lake Storage Gen2-Container mit dem Namen container1 geladen werden.
Sie planen, Daten aus den Dateien in Tabelle1 einzufügen und die Daten a umzuwandeln. Jede Datenzeile in den Dateien erzeugt eine Zeile in der Bereitstellungsebene von Table1.
Sie müssen sicherstellen, dass DateTime beim Laden der Quelldatendateien in container1 als zusätzliche Spalte in Table1 gespeichert wird.
Lösung: In einer Azure Synapse Analytics-Pipeline verwenden Sie eine Get Metadata-Aktivität, die DateTime der Dateien abruft.
Erreicht dies das Ziel?
Nachdem Sie eine Frage in diesem Abschnitt beantwortet haben, können Sie NICHT mehr dorthin zurückkehren. Daher werden diese Fragen nicht auf dem Überprüfungsbildschirm angezeigt.
Sie haben einen dedizierten Azure Synapse Analytics-SQL-Pool, der eine Tabelle mit dem Namen „Table1“ enthält.
Sie haben Dateien, die erfasst und in einen Azure Data Lake Storage Gen2-Container mit dem Namen container1 geladen werden.
Sie planen, Daten aus den Dateien in Tabelle1 einzufügen und die Daten a umzuwandeln. Jede Datenzeile in den Dateien erzeugt eine Zeile in der Bereitstellungsebene von Table1.
Sie müssen sicherstellen, dass DateTime beim Laden der Quelldatendateien in container1 als zusätzliche Spalte in Table1 gespeichert wird.
Lösung: In einer Azure Synapse Analytics-Pipeline verwenden Sie eine Get Metadata-Aktivität, die DateTime der Dateien abruft.
Erreicht dies das Ziel?
Correct Answer: A
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 8
Sie verfügen über eine lokale Microsoft SQL Server 2022-Instanz mit einer Datenbank namens DB1. Sie besitzen ein Azure-Abonnement mit einer Azure SQL-Datenbank namens SQLDB1. Sie möchten DB1 nach SQLDB1 replizieren. Welchen Replikationstyp sollten Sie verwenden?
Correct Answer: D
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 9
Sie verfügen über eine verwaltete Azure SQL-Instanz.
Sie müssen eine Datenbank namens DB1 mithilfe von Transact-SQL wiederherstellen.
Welchen Befehl sollten Sie ausführen? Wählen Sie dazu die entsprechenden Optionen im Antwortbereich aus.
HINWEIS: Jede richtige Auswahl zählt als ein Punkt.

Sie müssen eine Datenbank namens DB1 mithilfe von Transact-SQL wiederherstellen.
Welchen Befehl sollten Sie ausführen? Wählen Sie dazu die entsprechenden Optionen im Antwortbereich aus.
HINWEIS: Jede richtige Auswahl zählt als ein Punkt.

Correct Answer:

Explanation:

Basic Concept: This question tests high availability and disaster recovery design for Azure SQL, SQL Server on Azure VMs, and regional failure scenarios.
Why the selected answer is Correct: The selected values fit this scenario because they apply the required Azure SQL configuration at the correct scope and sequence: You need to restore a database named DB1 by using Transact-SQL.
Why the alternate choices are Wrong: The alternate selections apply to different administrative stages or different scopes. In a hotspot or drag-drop task, order and scope are part of the answer, so a technically valid Azure feature can still be wrong if it is placed in the wrong step.
Question 10
Sie besitzen ein Azure-Abonnement, das zwei verwaltete Azure SQL-Instanzen mit den Namen SQLMI1 und SQLMI2 enthält. SQLMI2 enthält eine Datenbank mit dem Namen DB1 und einen Benutzer mit dem Namen User1.
Benutzer1 löscht DB1.
Sie müssen eine Wiederherstellung von DB1 zu einem bestimmten Zeitpunkt in SQLMI2 durchführen.
Benutzer1 löscht DB1.
Sie müssen eine Wiederherstellung von DB1 zu einem bestimmten Zeitpunkt in SQLMI2 durchführen.
Correct Answer: D
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 11
Sie haben eine Microsoft SQL Server 2019-Datenbank namens DB1 und eine verwaltete Azure SQL-Instanz namens SQLMI1. Sie müssen einen SQL Server-Agent-Auftrag von DB1 nach SQLMI1 verschieben. Welches Auftragsattribut wird in SQLMI1 nicht unterstützt?
Correct Answer: A
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 12
Sie erstellen eine verwaltete Azure SQL-Instanz und einen Auftrag, der Sicherungskopien durchführt.
Der Auftrag muss so konfiguriert werden, dass bei einem Fehler eine Verteilergruppe per E-Mail benachrichtigt wird. Die Lösung muss den administrativen Aufwand minimieren.
Welche drei Aktionen sollten Sie nacheinander ausführen? Um diese Frage zu beantworten, verschieben Sie die entsprechenden Aktionen aus der Aktionsliste in den Antwortbereich und ordnen Sie sie in der richtigen Reihenfolge an.
Hinweis: Mehrere Reihenfolgen der Antwortmöglichkeiten sind richtig. Sie erhalten Punkte für jede richtige Reihenfolge.

Der Auftrag muss so konfiguriert werden, dass bei einem Fehler eine Verteilergruppe per E-Mail benachrichtigt wird. Die Lösung muss den administrativen Aufwand minimieren.
Welche drei Aktionen sollten Sie nacheinander ausführen? Um diese Frage zu beantworten, verschieben Sie die entsprechenden Aktionen aus der Aktionsliste in den Antwortbereich und ordnen Sie sie in der richtigen Reihenfolge an.
Hinweis: Mehrere Reihenfolgen der Antwortmöglichkeiten sind richtig. Sie erhalten Punkte für jede richtige Reihenfolge.

Correct Answer:

Explanation:

Basic Concept: This question tests high availability and disaster recovery design for Azure SQL, SQL Server on Azure VMs, and regional failure scenarios.
Why the selected answer is Correct: The selected values fit this scenario because they apply the required Azure SQL configuration at the correct scope and sequence: You need to configure the job to notify a distribution group by email when the job fails.
Why the alternate choices are Wrong: The alternate selections apply to different administrative stages or different scopes. In a hotspot or drag-drop task, order and scope are part of the answer, so a technically valid Azure feature can still be wrong if it is placed in the wrong step.