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 Korean Version) (DP-300 Korean) Free Practice Test

Question 1
Azure SQL Database 관리형 인스턴스가 있습니다.
인스턴스에 성능 문제가 발생하기 시작합니다.
문제를 일으키는 쿼리를 식별하고 쿼리에 대한 실행 계획을 검색해야 합니다. 솔루션은 관리 노력을 최소화해야 합니다.
무엇을 사용해야 합니까?

Correct Answer: A
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 2
VNet1이라는 가상 네트워크에 VM1이라는 Azure 가상 머신이 있습니다. VM1에서 인터넷으로의 아웃바운드 트래픽이 차단됩니다.
SqlSrv1이라는 논리 서버에 SqlDb1이라는 Azure SQL 데이터베이스가 있습니다.
다음 요구 사항을 충족하려면 VM1과 SqlDb1 간의 연결을 구현해야 합니다.
- VM1이 이외의 Azure SQL Server에 연결할 수 없는지 확인합니다.
SQLSrv1.
- SqlSrv1에 대한 네트워크 연결을 제한합니다.
VNet1에서 무엇을 만들어야 합니까?

Correct Answer: B
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 3
PostgreSQL 데이터베이스를 마이그레이션하려면 무엇을 사용해야 할까요?

Correct Answer: D
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 4
온프레미스 Microsoft SQL Server 2022 인스턴스에 DB1이라는 데이터베이스가 있습니다. Azure 구독에는 SQLDB1이라는 Azure SQL 데이터베이스가 있습니다. DB1을 SQLDB1로 복제해야 합니다. 어떤 유형의 복제를 사용해야 합니까?

Correct Answer: D
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 5
VNet1이라는 가상 네트워크에 VM1이라는 Azure 가상 머신이 있습니다. VM1에서 인터넷으로의 아웃바운드 트래픽이 차단됩니다.
SqlSrv1이라는 논리 서버에 SqlDb1이라는 Azure SQL 데이터베이스가 있습니다.
다음 요구 사항을 충족하려면 VM1과 SqlDb1 간의 연결을 구현해야 합니다.
- SqlSrv1의 공용 끝점에 대한 모든 트래픽이 차단되었는지 확인합니다.
- VM1이 SqlDb1에 저장된 데이터를 유출할 가능성을 최소화합니다.
VNet1에서 무엇을 만들어야 합니까?

Correct Answer: C
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 6
매출 데이터의 스트리밍 집계를 수행하려면 어떤 윈도우 함수를 사용해야 합니까?

Correct Answer: A
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 7
과제 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
Question 8
귀하는 DB1이라는 이름의 Azure SQL 데이터베이스와 관리 ID가 포함된 Azure 구독을 보유하고 있습니다.
관리 ID에서 자동화된 작업을 수행하는 데 사용할 DB1 사용자를 생성해야 합니다. 쿼리를 어떻게 완료해야 합니까? 정답을 선택하려면 답변 영역에서 적절한 옵션을 선택하십시오. 참고: 각 정답은 1점입니다.
Correct Answer:

Explanation:

Basic Concept: This question tests monitor, configure, and optimize database resources in the DP-300 exam context. The correct choice is determined by the exact service boundary and operational requirement stated in the scenario.
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 a user in DB1 that will be used by the managed identity to perform automated tasks.
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.