Free Microsoft 070-464日本語 Practice Test & Real Exam Questions

  • Exam Code/Number: 070-464日本語
  • Exam Name/Title: Developing Microsoft SQL Server Databases (070-464日本語版)
  • Certification Provider: Microsoft
  • Corresponding Certification: Microsoft SQL Server 2012
  • Exam Questions: 200
  • Updated On: Aug 12, 2026
あなたはSQL Azureでホストされたデータベースを持っています。あなたはテーブル内のデータを更新するために使用されるビューを作成するスクリプトを開発しています。次はスクリプトの関連部分です。(行番号は参考だけのために含まれています。)

あなたはビューがColumn1のデータを除いて、テーブルのデータを更新できるようにする必要があります。どのコードセグメントはライン06に追加すべきか。
Correct Answer: B Vote an answer
Explanation: Only visible for Pass4Leader members. You can sign-up / login (it's free).
あなたは次のコードを実行しています:

クエリの実行プランは展示に示されています。 (展示ボタンをクリックします。)

あなたはキー参照を防ぐ必要があります。
あなたは何を修正する必要がありますか。
複数の回答の選択肢は目標を達成することができます。最もよい答えを選択してください。
Correct Answer: D Vote an answer
あなたはDB1にInvoiceStatusテーブルを作成する必要があります。
どのようにしてCREATE TABLEステートメントでInvoiceIDコラムを定義する必要がありますか。
Correct Answer: D Vote an answer
データベースは100万行を持つContentTableという名前のディスクベースのテーブルとFaxという名前の列が含まれています。ファックスはNULL値を許可します。
次の要件を満たすためにファックスを更新する必要があります:
- 使用されるのNULL値を防ぎます。
- 常に空の文字列ではなくnull値を使用しています。
どのステートメントと複数のステートメントは実行すべきか。(それぞれの正しい答えはソリューションの一部を提供します。該当することをすべて選択してください。)
Correct Answer: A,C,D Vote an answer
Explanation: Only visible for Pass4Leader members. You can sign-up / login (it's free).
ストアドプロシージャを使用するには、Dynamic.sqlの機能を変換する必要があります。
どのTransact SQLステートメントをストアドプロシージャに追加する必要がありますか。
Correct Answer: B Vote an answer
Explanation: Only visible for Pass4Leader members. You can sign-up / login (it's free).
あなたはUsersという名前のテーブルを含むSQL Server2012データベースがあります。ユーザーのテーブルはユーザー名とパスワードが含まれています。
あなたはすべての新しいレコードにパスワードが設定されていることを確認する必要があります。
あなたはどのコードセグメントを使用する必要がありますか。
複数の回答の選択肢は目標を達成することができるかもしれません。最も良い答えを選択してください。
Correct Answer: C Vote an answer
あなたはディザスタリカバリ・プロシージャをテストしています。
あなたは別のサーバーにDB1を復元しようと次のエラーメッセージが表示されます:
Msg 33111、Level 16、State 3、Line 1は拇印を使用してサーバー証明書が見つかりません。
'OxA694FBEA88C9354E5E2567C30A2A69E8FB4C44A9'。
Msg 3013、Level 16、State 1、Line 1 RESTORE DATABASE は異常に終了です。
あなたは別のサーバーにDB1を復元できることを確認する必要があります。
どのコードセグメントは実行する必要がありますか。
Correct Answer: A Vote an answer
あなたはMicrosoft SQL Azureデータベースを持っています。次のストアドプロシージャを持っています:

ストアドプロシージャは定期的にHR.EMPLOYEESの更新に失敗していることを発見します。
あなたはup_employeesの実行時にHR.EMPLOYEESは常に更新されていることを確認する必要があります。
ソリューションは実行するストアド·プロシージャと保持されているロックの数に必要な時間を最小限に抑える必要があります。
あなたは何をすべきか。
Correct Answer: A Vote an answer
Table1という名前のテーブルがあります。 Table1には100万行あります。
Table1には、Column1という名前の列の列ストアインデックスがあります。
Table1にデータをインポートする必要があります。 このソリューションでは、データのインポートにかかる時間を最小限に抑える必要があります。
あなたは何をするべきか?
答えるには、適切な行動を行動のリストから回答領域に移動し、正しい順序で並べます。
Correct Answer:

1 - Create a table named Table2 by using the same schema as Table1.
2 - Partition Table1.
3 - Import the data to Table2.
4 - Create a columnstore index on Table2 for Column1.
5 - Switch Table2 toTable1.
Explanation:
Note:
* An xVelocity memory optimized columnstore index, groups and stores data for each column and then joins all the columns to complete the whole index.
Columnstore indexes can transform the data warehousing experience for users by enabling faster performance for common data warehousing queries such as filtering, aggregating, grouping, and star-join queries.
* Tables that have a columnstore index cannot be updated.
There are three ways to work around this problem.
A) To update a table with a columnstore index, drop the columnstore index, perform any required INSERT, DELETE, UPDATE, or MERGE operations, and then rebuild the columnstore index.
B) (applies in this scenario) Partition the table and switch partitions. For a bulk insert, insert data into a staging table, build a columnstore index on the staging table, and then switch the staging table into an empty partition. For other updates, switch a partition out of the main table into a staging table, disable or drop the columnstore index on the staging table, perform the update operations, rebuild or re-create the columnstore index on the staging table, and then switch the staging table back into the main table.
C) Place static data into a main table with a columnstore index, and put new data and recent data likely to change, into a separate table with the same schema that does not have a columnstore index.
どのコードセグメントはあなたがしProductDetailsの列を定義することに使用しますか。
Correct Answer: D Vote an answer