Welcome to TestSimulate

Pass Your Next Certification Exam Fast!

Everything you need to prepare, learn & pass your certification exam easily.

365 days free updates. First attempt guaranteed success.

Microsoft Administering Relational Databases on Microsoft Azure (DP-300日本語版) (DP-300日本語) Free Practice Test

Question 1
Always On 可用性グループを使用する高可用性構成で、Azure 仮想マシンに SQL Server のインスタンスを 2 つ展開する予定です。
次の要件を満たす展開ソリューションを推奨する必要があります。
* 99.95%以上のサービスレベル契約(SLA)を提供します
* 同じグループ内のデータベースを同期的に複製します
* データベース書き込みの遅延を最小限に抑えます
何をお勧めしますか?

Correct Answer: C
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 2
オンプレミスのMicrosoft SQL Server 2016インスタンスがあり、db1というデータベースをホストしています。Azureサブスクリプションには、MilというAzure SQLマネージドインスタンスが含まれています。
Azure Database Migration Service を使用して、db1 から MM へのオンライン移行を実行する予定です。
移行のためにバックアップを作成する必要があります。ソリューションでは、作成されるバックアップファイルの数を最小限に抑える必要があります。
どのような種類のバックアップを作成し、どのようにバックアップを保存する必要がありますか? 回答するには、回答エリアで適切なオプションを選択してください。
注意: 正しい選択ごとに 1 ポイントが加算されます。
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
DB1 という名前の 2 TB Microsoft SQL Server 2019 データベースを含むオンプレミス データセンターがあります。
DB1 を Azure SQL マネージド インスタンスに移行するソリューションを推奨する必要があります。ソリューションでは、ダウンタイムと管理労力を最小限に抑える必要があります。
推奨事項には何を含めるべきですか?

Correct Answer: A
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 4
VM1 という名前の Azure Virtual Machines に SQL Server のインスタンスをデプロイします。
VM1 でホストされているデータベースのインデックスを再構築する SQL Server エージェント ジョブを作成する必要があります。このソリューションでは、最小権限の原則を適用する必要があります。
最初に何を作成すればよいですか?

Correct Answer: B
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 5
SQLMI1という名前のAzureSQLDatabaseマネージドインスタンスがあります。 Microsoft SQLServerエージェントジョブはSQLMI1で実行されます。
ジョブが完了したら、自動電子メール通知が送信されるようにする必要があります。
ソリューションに何を含める必要がありますか?

Correct Answer: C
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 6
VM1 という Azure 仮想マシンがあり、Windows Server 2022 を実行し、SQL1 という Microsoft SQL Server 2019 インスタンスをホストしています。混合モード認証を使用するように SQL! を構成する必要があります。どの手順を実行すればよいですか?

Correct Answer: C
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 7
注:この質問は、同じシナリオを提示する一連の質問の一部です。シリーズの各質問には、述べられた目標を達成する可能性のある独自の解決策が含まれています。一部の質問セットには複数の正しい解決策がある場合がありますが、他の質問セットには正しい解決策がない場合があります。
このセクションの質問に回答した後は、その質問に戻ることはできません。その結果、これらの質問はレビュー画面に表示されません。
Salesという名前のAzureSQLデータベースがあります。
次の要件を満たすには、Salesのディザスタリカバリを実装する必要があります。
*通常の操作中に、Salesの読み取り可能なコピーを少なくとも2つ提供します。
*データセンターに障害が発生した場合でも、セールスを引き続き利用できるようにします。
解決策:汎用サービス層とジオレプリケーションを使用するAzureSQLデータベースをデプロイします。
これは目標を達成していますか?

Correct Answer: A
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 8
タスク7
Azure AD ID から db1 にデータベース ユーザーを作成する自動化 Runbook を作成する予定です。
新しいデータベース ユーザーの作成をサポートするには、sq1370O6895 を構成する必要があります。
Correct Answer:
See the explanation part for the complete Solution.
Explanation:
To configure sq1370O6895 to support the creation of new database users from Azure AD identities, you need to do the following steps:
Set up a Microsoft Entra tenant and associate it with your Azure subscription. You can use the Microsoft Entra portal or the Azure portal to create and manage your Microsoft Entra users and groups12.
Configure a Microsoft Entra admin for sq1370O6895. You can use the Azure portal or the Azure CLI to set a Microsoft Entra user as the admin for the server34. The Microsoft Entra admin can create other database users from Microsoft Entra identities5.
Connect to db1 using the Microsoft Entra admin account and run the following Transact-SQL statement to create a new database user from a Microsoft Entra identity: CREATE USER [Microsoft Entra user name] FROM EXTERNAL PROVIDER;6 You can replace the Microsoft Entra user name with the name of the user or group that you want to create in the database.
Grant the appropriate permissions to the new database user by adding them to a database role or granting them specific privileges. For example, you can run the following Transact-SQL statement to add the new user to the db_datareader role: ALTER ROLE db_datareader ADD MEMBER [Microsoft Entra user name]; These are the steps to configure sq1370O6895 to support the creation of new database users from Azure AD identities.