最新の2023年最新の実際に出ると確認されたDP-300日本語問題集で100%無料DP-300日本語試験問題集
無料提供中で2023年最新のに更新されたMicrosoft DP-300日本語試験問題と解答
質問 # 99
db1という名前のAzureSQLデータベースがあります。
先週からdb1のリソース使用量を取得する必要があります。
どのようにステートメントを完成させる必要がありますか?回答するには、回答領域で適切なオプションを選択します。
注:正しい選択はそれぞれ1ポイントの価値があります。
正解:
解説:
Reference:
https://docs.microsoft.com/en-us/sql/relational-databases/system-catalog-views/sys-resource-stats-azure-sql-database
質問 # 100
Microsoft SQL Server インスタンスをホストする Azure 仮想マシンをデプロイするには、Azure Resource Manager ARM) テンプレートを使用する必要があります。ソリューションは、SQL Server データベースとログ ファイルのディスク I/O パフォーマンスを最大化する必要があります。どのようにテンプレートを完成させる必要がありますか? 回答するには、回答で適切なオプションを選択します。
注: それぞれの正しい選択は 1 ポイントの価値があります。
正解:
解説:
Explanation
Read onlyReadWrite
質問 # 101
Server1という名前のサーバー上にDatabaseAという名前のAzureSQLデータベースインスタンスがあります。
App1という名前の新しいユーザーをDatabaseAに追加し、App1にdb_datacenter権限を付与する予定です。 App1はSQLServer認証を使用します。
App1を作成する必要があります。このソリューションでは、同じ資格情報を使用してApp1に他のデータベースへのアクセスを許可できるようにする必要があります。
どの3つのアクションを順番に実行する必要がありますか?回答するには、適切なアクションをアクションのリストから回答領域に移動し、正しい順序で配置します。
正解:
解説:
Explanation:
Step 1: On the master database, run CREATE LOGIN [App1] WITH PASSWORD = 'p@aaW0rd!' Logins are server wide login and password pairs, where the login has the same password across all databases. Here is some sample Transact-SQL that creates a login:
CREATE LOGIN readonlylogin WITH password='1231!#ASDF!a';
You must be connected to the master database on SQL Azure with the administrative login (which you get from the SQL Azure portal) to execute the CREATE LOGIN command.
Step 2: On DatabaseA, run CREATE USER [App1] FROM LOGIN [App1]
Users are created per database and are associated with logins. You must be connected to the database in where you want to create the user. In most cases, this is not the master database. Here is some sample Transact-SQL that creates a user:
CREATE USER readonlyuser FROM LOGIN readonlylogin;
Step 3: On DatabaseA run ALTER ROLE db_datareader ADD Member [App1]
Just creating the user does not give them permissions to the database. You have to grant them access. In the Transact-SQL example below the readonlyuser is given read only permissions to the database via the db_datareader role.
EXEC sp_addrolemember 'db_datareader', 'readonlyuser';
Reference:
https://azure.microsoft.com/en-us/blog/adding-users-to-your-sql-azure-database/
質問 # 102
2 つの 100 GB データベースを Azure に移動する予定です。
ワークロードに基づいてリソース消費を動的にスケーリングする必要があります。ソリューションは、スケーリング操作中のダウンタイムを最小限に抑える必要があります。
何を使うべきですか?
- A. Azure 仮想マシン上の SQL Server でホストされている 2 つのデータベース
- B. Azure SQL マネージド インスタンス内の 2 つのデータベース
- C. 2 つの単一 Azure SQL データベース
- D. エラスティック プール内の 2 つの Azure SQL データベース
正解:D
解説:
Azure SQL Database elastic pools are a simple, cost-effective solution for managing and scaling multiple databases that have varying and unpredictable usage demands. The databases in an elastic pool are on a single server and share a set number of resources at a set price.
Reference:
https://docs.microsoft.com/en-us/azure/azure-sql/database/elastic-pool-overview
質問 # 103
SQLServerがインストールされているAzure仮想マシンが10台あります。
特定のデータベースを他のSQLServerインスタンスに確実に復元できるように、バックアップ戦略を実装する必要があります。ソリューションは、バックアップの集中管理を提供する必要があります。
バックアップ戦略には何を含める必要がありますか?
- A. SQLServerエージェントジョブ
- B. Azureバックアップ
- C. SQL仮想マシン設定での自動バックアップ
- D. Azureサイトの回復
正解:B
解説:
Explanation
Azure Backup provides an Enterprise class backup capability for SQL Server on Azure VMs. All backups are stored and managed in a Recovery Services vault. There are several advantages that this solution provides, especially for Enterprises.
Reference:
https://docs.microsoft.com/en-us/azure/azure-sql/virtual-machines/windows/backup-restore#azbackup
質問 # 104
SalesSQLDb1の統計更新を実装する必要があります。ソリューションは技術要件を満たす必要があります。
順番に実行する必要がある4つのアクションはどれですか?回答するには、適切なアクションをアクションのリストから回答領域に移動し、正しい順序で配置します。
正解:
解説:
Explanation
Automating Azure SQL DB index and statistics maintenance using Azure Automation:
1. Create Azure automation account (Step 1)
2. Import SQLServer module (Step 2)
3. Add Credentials to access SQL DB
This will use secure way to hold login name and password that will be used to access Azure SQL DB
4. Add a runbook to run the maintenance (Step 3)
Steps: 1. Click on "runbooks" at the left panel and then click "add a runbook"
2. Choose "create a new runbook" and then give it a name and choose "Powershell" as the type of the runbook and then click on "create"
5. Schedule task (Step 4)
Steps:1. Click on Schedules2. Click on "Add a schedule" and follow the instructions to choose existing schedule or create a new schedule.
Reference:
https://techcommunity.microsoft.com/t5/azure-database-support-blog/automating-azure-sql-db-index-and-statisti
質問 # 105
Azure SQL マネージド インスタンス、db1 という名前のデータベース、および Appl という名前の Azure Web アプリを含む Azure サブスクリプションがあります。Appl は db1 を使用します。
App1 のリソース ガバナーを有効にする必要があります。ソリューションは、次の要件を満たす必要があります。
App1 は、使用可能なすべての CPU リソースを消費できる必要があります。
App1 には、使用可能な CPU リソースの少なくとも半分が常に使用可能である必要があります。
順番に実行する必要がある 3 つのアクションはどれですか? 答える。適切なアクションをアクションのリストから回答領域に移動し、正しい順序で並べ替えます。 注: 回答の選択肢の順序が複数あっても問題ありません。選択した正しい注文のいずれかに対してクレジットを受け取ります。
正解:
解説:
Explanation
質問 # 106
トランザクションデータの分析ストレージソリューションを設計する必要があります。ソリューションは、販売トランザクションデータセットの要件を満たす必要があります。
ソリューションに何を含める必要がありますか?回答するには、回答領域で適切なオプションを選択します。
注:正しい選択はそれぞれ1ポイントの価値があります。
正解:
解説:
Reference:
https://rajanieshkaushikk.com/2020/09/09/how-to-choose-right-data-distribution-strategy-for-azure-synapse/
質問 # 107
SalesSQLDb1の統計更新を実装する必要があります。ソリューションは技術要件を満たす必要があります。
順番に実行する必要がある4つのアクションはどれですか?回答するには、適切なアクションをアクションのリストから回答領域に移動し、正しい順序で配置します。
正解:
解説:
1 - Create an Azure automation account.
2 - Import the SqlServer module.
3 - Create a runbook that runs a PowerShell script.
4 - Create and configure a schedule.
Reference:
https://techcommunity.microsoft.com/t5/azure-database-support-blog/automating-azure-sql-db-index-and-statistics-maintenance-using/ba-p/368974
質問 # 108
SalesSQLDb1の統計更新を実装する必要があります。ソリューションは技術要件を満たす必要があります。
順番に実行する必要がある4つのアクションはどれですか?回答するには、適切なアクションをアクションのリストから回答領域に移動し、正しい順序で配置します。
正解:
解説:
1 - Create an Azure Automation account.
2 - Import the SqlServer module.
3 - Create a runbook that runs a PowerShell script.
4 - Create and configure a schedule.
Reference:
https://techcommunity.microsoft.com/t5/azure-database-support-blog/automating-azure-sql-db-index-and-statistics-maintenance-using/ba-p/368974
Topic 2, Contoso Ltd
Existing Environment
Contoso, Ltd. is a financial data company that has 100 employees. The company delivers financial data to customers.
Active Directory
Contoso has a hybrid Azure Active Directory (Azure AD) deployment that syncs to on-premises Active Directory.
Database Environment
Contoso has SQL Server 2017 on Azure virtual machines shown in the following table.
SQL1 and SQL2 are in an Always On availability group and are actively queried. SQL3 runs jobs, provides historical data, and handles the delivery of data to customers.
The on-premises datacenter contains a PostgreSQL server that has a 50-TB database.
Current Business Model
Contoso uses Microsoft SQL Server Integration Services (SSIS) to create flat files for customers. The customers receive the files by using FTP.
Requirements
Planned Changes
Contoso plans to move to a model in which they deliver data to customer databases that run as platform as a service (PaaS) offerings. When a customer establishes a service agreement with Contoso, a separate resource group that contains an Azure SQL database will be provisioned for the customer. The database will have a complete copy of the financial data. The data to which each customer will have access will depend on the service agreement tier. The customers can change tiers by changing their service agreement.
The estimated size of each PaaS database is 1 TB.
Contoso plans to implement the following changes:


Business Goals
Contoso identifies the following business requirements:






Technical Requirements
Contoso identifies the following technical requirements:



Monitoring Requirements
Contoso identifies the following monitoring requirements:



PaaS Prototype
During prototyping of the PaaS solution in Azure, you record the compute utilization of a customer's Azure SQL database as shown in the following exhibit.
Role Assignments
For each customer's Azure SQL Database server, you plan to assign the roles shown in the following exhibit.
質問 # 109
30の新しいデータベースに適切な購入モデルと展開オプションを推奨する必要があります。ソリューションは、技術要件とビジネス要件を満たす必要があります。
あなたは何をお勧めしますか?回答するには、回答領域で適切なオプションを選択します。
注:正しい選択はそれぞれ1ポイントの価値があります。
正解:
解説:
Reference:
https://docs.microsoft.com/en-us/azure/azure-sql/database/elastic-pool-overview
https://docs.microsoft.com/en-us/azure/azure-sql/database/reserved-capacity-overview
質問 # 110
db1 という名前のデータベースをホストするオンプレミスの Microsoft SQL Server 2016 インスタンスがあります。Mil という名前の Azure SQL マネージド インスタンスを含む Azure サブスクリプションがあります。
Azure Database Migration Service を使用して、db1 から MM へのオンライン移行を実行する予定です。
移行のためのバックアップを作成する必要があります。このソリューションでは、作成されるバックアップ ファイルの数を最小限に抑える必要があります。
どのタイプのバックアップを作成し、どのようにバックアップを保存する必要がありますか? 回答するには、回答エリアで適切なオプションを選択します。
注: それぞれの正しい選択は 1 ポイントの価値があります。
正解:
解説:
質問 # 111
次の表に示すように、ログを格納するaccount1という名前のAzure Data Lake StorageGen2アカウントがあります。
保存期間中にログにアクセスすることは想定していません。
次の要件を満たすaccount1のソリューションを推奨する必要があります。
各保存期間の終了時にログを自動的に削除します
ストレージコストを最小限に抑える
推奨事項には何を含める必要がありますか?回答するには、回答領域で適切なオプションを選択します。
注:正しい選択はそれぞれ1ポイントの価値があります。
正解:
解説:
Reference:
https://docs.microsoft.com/en-us/azure/storage/blobs/storage-blob-storage-tiers
質問 # 112
SERVER1データベースの移行を計画しています。ソリューションはビジネス要件を満たす必要があります。
移行計画には何を含める必要がありますか?回答するには、回答領域で適切なオプションを選択します。
注:正しい選択はそれぞれ1ポイントの価値があります。
正解:
解説:
Reference:
https://azure.microsoft.com/pricing/details/database-migration/
https://docs.microsoft.com/en-us/azure/dms/tutorial-sql-server-azure-sql-online
Topic 2, Contoso Ltd
To start the case study
To display the first question in this case study, click the Next button. Use the buttons in the left pane to explore the content of the case study before you answer the questions. Clicking these buttons displays information such as business requirements, existing environment, and problem statements. If the case study has an All Information tab, note that the information displayed is identical to the information displayed on the subsequent tabs. When you are ready to answer a question, click the Question button to return to the question.
Overview
Existing Environment
Contoso, Ltd. is a financial data company that has 100 employees. The company delivers financial data to customers.
Active Directory
Contoso has a hybrid Azure Active Directory (Azure AD) deployment that syncs to on-premises Active Directory.
Database Environment
Contoso has SQL Server 2017 on Azure virtual machines shown in the following table.
SQL1 and SQL2 are in an Always On availability group and are actively queried. SQL3 runs jobs, provides historical data, and handles the delivery of data to customers.
The on-premises datacenter contains a PostgreSQL server that has a 50-TB database.
Current Business Model
Contoso uses Microsoft SQL Server Integration Services (SSIS) to create flat files for customers. The customers receive the files by using FTP.
Requirements
Planned Changes
Contoso plans to move to a model in which they deliver data to customer databases that run as platform as a service (PaaS) offerings. When a customer establishes a service agreement with Contoso, a separate resource group that contains an Azure SQL database will be provisioned for the customer. The database will have a complete copy of the financial data. The data to which each customer will have access will depend on the service agreement tier. The customers can change tiers by changing their service agreement.
The estimated size of each PaaS database is 1 TB.
Contoso plans to implement the following changes:
Business Goals
Contoso identifies the following business requirements:
Technical Requirements
Contoso identifies the following technical requirements:
Monitoring Requirements
Contoso identifies the following monitoring requirements:
PaaS Prototype
During prototyping of the PaaS solution in Azure, you record the compute utilization of a customer's Azure SQL database as shown in the following exhibit.
Role Assignments
For each customer's Azure SQL Database server, you plan to assign the roles shown in the following exhibit.
質問 # 113
DB1 という名前の Microsoft SQL Server 2019 データベースと、SQLMI1 という名前の Azure SQL マネージド インスタンスがあります。SQL Server エージェント ジョブを DB1 から SQLMI1 に移動する必要があります。SQLMI1 でサポートされていないジョブ属性はどれですか?
- A. 出力ファイル
- B. テーブルにログ
- C. スケジュール
- D. メール通知
正解:B
質問 # 114
......
DP-300日本語問題集PDFとテストエンジン試験問題:https://jp.fast2test.com/DP-300J-premium-file.html