070-464日本語 無料問題集「Microsoft Developing Microsoft SQL Server Databases (070-464日本語版)」
10,514,003のOrdersを含むORDERSという名前のテーブルがあります。 ORDERS表には、ORDER_IDというIDENTITY(1,1)列があります。 ORDER_IDは、テーブルのUNIQUE CLUSTERED INDEXとPRIMARY KEYです。 最初のORDER_IDは1です。セットに欠落しているORDER_IDはありません。
表の使用パターンに基づいて、ORDER_ID列からこの表にパーティション化を使用することにします。
以下のパーティションを作成する必要があります。

どのTransact-SQLステートメントを実行しますか?
表の使用パターンに基づいて、ORDER_ID列からこの表にパーティション化を使用することにします。
以下のパーティションを作成する必要があります。

どのTransact-SQLステートメントを実行しますか?
正解:C
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
ID列にクラスター化インデックスが定義されているCustomersという名前のテーブルがあります。
ストアドプロシージャを作成するためのスクリプトを書きます。
ストアドプロシージャのスクリプトを完成させる必要があります。 解決策は、ロックとデッドロックの数を最小限に抑える必要があります。
あなたは何をするべきか?
回答するには、適切なオプションを回答領域の正しい場所にドラッグします。 (答えの選択肢は、一度だけ、二度以上、またはまったく使用されないかもしれません。)

ストアドプロシージャを作成するためのスクリプトを書きます。
ストアドプロシージャのスクリプトを完成させる必要があります。 解決策は、ロックとデッドロックの数を最小限に抑える必要があります。
あなたは何をするべきか?
回答するには、適切なオプションを回答領域の正しい場所にドラッグします。 (答えの選択肢は、一度だけ、二度以上、またはまったく使用されないかもしれません。)

正解:

Explanation:
Note:
* Optimized bulk load operations on heaps block queries that are running under the following isolation levels:
SNAPSHOT
READ UNCOMMITTED
READ COMMITTED using row versioning
* READ COMMITTED
Specifies that statements cannot read data that has been modified but not committed by other transactions. This prevents dirty reads. Data can be changed by other transactions between individual statements within the current transaction, resulting in nonrepeatable reads or phantom data. This option is the SQL Server default.
* SERIALIZABLE (more locks)
Specifies the following:
Statements cannot read data that has been modified but not yet committed by other transactions.
No other transactions can modify data that has been read by the current transaction until the current transaction completes.
Other transactions cannot insert new rows with key values that would fall in the range of keys read by any statements in the current transaction until the current transaction completes.
* UPDLOCK
Specifies that update locks are to be taken and held until the transaction completes. UPDLOCK takes update locks for read operations only at the row-level or page-level. If UPDLOCK is combined with TABLOCK, or a table-level lock is taken for some other reason, an exclusive (X) lock will be taken instead.
When UPDLOCK is specified, the READCOMMITTED and READCOMMITTEDLOCK isolation level hints are ignored. For example, if the isolation level of the session is set to SERIALIZABLE and a query specifies (UPDLOCK, READCOMMITTED), the READCOMMITTED hint is ignored and the transaction is run using the SERIALIZABLE isolation level.
* XLOCK
Specifies that exclusive locks are to be taken and held until the transaction completes. If specified with ROWLOCK, PAGLOCK, or TABLOCK, the exclusive locks apply to the appropriate level of granularity.
database1という名前のデータベースがあります。 database1の各表には、列ごとに1つの索引があります。
ユーザーは、アイテムの作成には長い時間がかかると報告しています。
以下のメンテナンスタスクを実行する必要があります。
未使用の索引を識別します。
最適化する必要があるインデックスを特定します。
あなたは何を使うべきですか?
回答するには、回答領域の適切な機能を正しい管理タスクにドラッグします。 (答えの選択肢は、一度だけ、二度以上、またはまったく使用されないかもしれません。)

ユーザーは、アイテムの作成には長い時間がかかると報告しています。
以下のメンテナンスタスクを実行する必要があります。
未使用の索引を識別します。
最適化する必要があるインデックスを特定します。
あなたは何を使うべきですか?
回答するには、回答領域の適切な機能を正しい管理タスクにドラッグします。 (答えの選択肢は、一度だけ、二度以上、またはまったく使用されないかもしれません。)

正解:

Explanation:
Note:
* sys.dm_db_index_usage_stats
Returns counts of different types of index operations and the time each type of operation was last performed.
* sys.dm_db_index_physical_stats
Returns size and fragmentation information for the data and indexes of the specified table or view.
あなたのネットワークはインストールされているSQL Server2012を持っているSQL1という名前のサーバーが含まれています。SQL1はDB1という名前のデータベースとCustomersという名前のテーブルが含まれています。
あなたはSQL Server2012を実行してSQL2という名前の追加のサーバーを追加します。
あなたは分散パーティションビューを作成する必要があります。ソリューションはネットワークトラフィックの量を最小限に抑えらなければなりません。
あなたは何をすべきか。 (それぞれの正しい答えはソリューションの一部を提供します。該当することをすべて選択してください。)
あなたはSQL Server2012を実行してSQL2という名前の追加のサーバーを追加します。
あなたは分散パーティションビューを作成する必要があります。ソリューションはネットワークトラフィックの量を最小限に抑えらなければなりません。
あなたは何をすべきか。 (それぞれの正しい答えはソリューションの一部を提供します。該当することをすべて選択してください。)
正解:A、C、E、F
解答を投票する