Microsoft Administering Relational Databases on Microsoft Azure (DP-300 Korean Version) - DP-300 Korean Exam Practice Test

Azure 구독을 보유하고 계십니다.
Microsoft SQL Server 인스턴스를 호스팅할 VM1 및 VM2라는 이름의 가상 머신 두 대를 배포해야 합니다. 솔루션은 다음 요구 사항을 충족해야 합니다.
* VM1은 가장 높은 I/O 처리량 대 vCore 비율을 제공해야 합니다.
* VM2는 가장 높은 메모리 대 vCore 비율을 제공해야 합니다.
각 가상 머신에 어떤 시리즈를 선택해야 할까요? 답변하려면 답변 영역에서 적절한 옵션을 선택하세요.
참고: 정답 하나당 1점입니다.
Correct Answer:

Explanation:

Basic Concept: This question tests Azure SQL sizing and purchasing choices, where compute model, scaling behavior, licensing benefits, and cost pattern must be evaluated together.
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 deploy two virtual machines named VM1 and VM2 that will host Microsoft SQL Server instances.
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.
과제 4
db1에 대해 변경 데이터 캡처(CDC)를 활성화해야 합니다.
Correct Answer:
See the explanation part for the complete Solution.
Explanation:
To enable change data capture (CDC) for db1, you need to run the stored procedure sys.sp_cdc_enable_db in the database context. CDC is a feature that records activity on a database when tables and rows have been modified1. CDC can be used for various scenarios, such as data synchronization, auditing, or ETL processes2.
Here are the steps to enable CDC for db1:
Connect to db1 using SQL Server Management Studio, Azure Data Studio, or any other tool that supports Transact-SQL statements.
Open a new query window and run the following command: EXEC sys.sp_cdc_enable_db; GO This command will enable CDC for the database and create the cdc schema, cdc user, metadata tables, and other system objects for the database3.
To verify that CDC is enabled for db1, you can query the is_cdc_enabled column in the sys.databases catalog view. The value should be 1 for db1.
These are the steps to enable CDC for db1
Windows Server 2019를 실행하는 VM1과 VM2라는 두 개의 Azure 가상 머신이 있습니다. VM1과 VM2에는 각각 기본 Microsoft SQL Server 2019 인스턴스가 호스팅되어 있습니다. VM1에는 DB1이라는 데이터베이스가 있으며, 이 데이터베이스는 D:\DB1.bak이라는 파일로 백업됩니다.
다음과 같은 구성을 갖춘 Always On 가용성 그룹을 배포할 계획입니다.
* VM1은 DB1의 기본 복제본을 호스팅합니다.
* VM2는 DB1의 보조 복제본을 호스팅합니다.
가용성 그룹을 위해 VM2에 보조 데이터베이스를 준비해야 합니다.
Transact-SQL 문을 어떻게 완성해야 합니까? 답하려면 답변 영역에서 적절한 옵션을 선택하십시오.
Correct Answer:

Explanation:

Reference:
https://docs.microsoft.com/en-us/sql/database-engine/availability-groups/windows/manually-prepare-a- secondary-database-for-an-availability-group-sql-server?view=sql-server-ver15 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 prepare the secondary database on VM2 for the availability group.
Why the alternate choices are Wrong: The alternate choices do not satisfy the stated availability design because quorum and listener resources must match Azure failover-cluster behavior and the required SLA.
Azure SQL 데이터베이스에 대한 가용성 전략을 권장해야 합니다. 전략은 다음 요구 사항을 충족해야 합니다.
- 클라이언트 애플리케이션 변경이 필요하지 않은 장애 조치 지원
그들의 연결 문자열.
- 데이터베이스를 보조 Azure 지역에 복제합니다.
- 보조 지역으로의 장애 조치(failover)를 지원합니다.
추천서에 무엇을 포함해야 하나요?

Correct Answer: D Vote an answer
Explanation: Only visible for Fast2test members. You can sign-up / login (it's free).
온프레미스 Microsoft SQL Server 2016 서버(Server1)가 있으며, 이 서버에는 DB1이라는 데이터베이스가 있습니다.
Azure Database Migration Service를 사용하여 DB1을 Azure SQL Database 관리형 인스턴스로 온라인 마이그레이션해야 합니다.
DB1의 백업을 어떻게 구성해야 합니까? 답변하려면 답변 영역에서 적절한 옵션을 선택하십시오.
참고: 정답 하나당 1점입니다.
Correct Answer:

Explanation:

Box 1: Full and log backups only
Make sure to take every backup on a separate backup media (backup files). Azure Database Migration Service doesn ' t support backups that are appended to a single backup file. Take full backup and log backups to separate backup files.
Box 2: WITH CHECKSUM
Azure Database Migration Service uses the backup and restore method to migrate your on-premises databases to SQL Managed Instance. Azure Database Migration Service only supports backups created using checksum.
Reference:
https://docs.microsoft.com/en-us/azure/dms/known-issues-azure-sql-db-managed-instance-online 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 perform an online migration of DB1 to an Azure SQL Database managed instance by using Azure Database Migration Service.
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.
표준 가격 책정 계층에는 Workspace1이라는 Azure Databricks 작업 영역이 있습니다.
Workspace1에는 Cluster1이라는 다목적 클러스터가 포함되어 있습니다.
Cluster1을 시작하고 확장하는 데 걸리는 시간을 줄여야 합니다. 솔루션은 비용을 최소화해야 합니다.
먼저 무엇을 해야 할까요?

Correct Answer: B Vote an answer
Explanation: Only visible for Fast2test members. You can sign-up / login (it's free).
온-프레미스 Microsoft SQL Server 데이터베이스를 Azure SQL Database로 마이그레이션해야 합니다.
솔루션은 가동 중지 시간을 최소화해야 합니다.
당신은 무엇을 해야 합니까?

Correct Answer: A Vote an answer
Explanation: Only visible for Fast2test members. You can sign-up / login (it's free).
Azure 구독이 있습니다. 이 구독에는 SQL1이라는 이름의 Azure 가상 머신에 설치된 SQL Server 인스턴스와 account1이라는 이름의 Azure Automation 계정이 포함되어 있습니다. SQL Server Agent 서비스가 중지될 경우 account1 계정이 해당 서비스를 다시 시작하도록 구성해야 합니다. 어떤 설정을 구성해야 할까요?

Correct Answer: D Vote an answer
Explanation: Only visible for Fast2test members. You can sign-up / login (it's free).
참고: 이 질문은 동일한 시나리오를 제시하는 일련의 질문의 일부입니다. 시리즈의 각 질문에는 명시된 목표를 달성할 수 있는 고유한 솔루션이 포함되어 있습니다. 일부 질문 세트에는 정답이 두 개 이상 있을 수 있지만 다른 질문 세트에는 정답이 없을 수도 있습니다.
이 섹션의 질문에 답변한 후에는 해당 질문으로 돌아갈 수 없습니다. 결과적으로 이러한 질문은 검토 화면에 표시되지 않습니다.
Server1과 Server2라는 두 개의 Azure SQL Database 서버가 있습니다. 각 서버에는 Database1이라는 Azure SQL 데이터베이스가 포함되어 있습니다.
Database1을 Server1에서 Server2로 복원해야 합니다. 솔루션은 Server2의 기존 Database1을 대체해야 합니다.
해결 방법: Server2에서 Database1에 대해 Remove-AzSqlDatabase PowerShell cmdlet을 실행합니다. Server2에서 Database1에 대해 Restore-AzSqlDatabase PowerShell cmdlet을 실행합니다.
이것이 목표를 달성합니까?

Correct Answer: A Vote an answer
Explanation: Only visible for Fast2test members. You can sign-up / login (it's free).

Contact Us

If you have any question please leave me your email address, we will reply and send email to you in 12 hours.

Our Working Time: ( GMT 0:00-15:00 ) From Monday to Saturday

Support: Contact now 

日本語 Deutsch 繁体中文 한국어