イベントハウスと Database1 という名前の KQL データベースを含む Fabric ワークスペースがあります。Database1 には次の内容が含まれています。
Table1という名前のテーブル
Table2という名前のテーブル
Policy1という名前の更新ポリシー
ポリシー1はTable1からTable2にデータを送信します。
以下は表2のデータのサンプルです。

最近、Table1 に対して次のアクションが実行されました。
temperature という名前の追加要素が StreamData 列に追加されました。
Timestamp 列のデータ型が日付に変更されました。
DeviceId 列のデータ型が文字列に変更されました。
Table2 に追加のレコードをロードする予定です。
Table1 から Table2 にロードされる 2 つのレコードはどれですか。それぞれの正解は完全なソリューションを示します。
注意: 正しい選択ごとに 1 ポイントが付与されます。
正解:B,D
Changes to Table1 Structure:
StreamData column: An additional temperature element was added.
Timestamp column: Data type changed from datetime to date.
DeviceId column: Data type changed from guid to string.
Impact of Changes:
Only records that comply with Table2's structure will load.
Records that deviate from Table2's column data types or structure will be rejected.
Record B:
Timestamp: Matches Table2 (datetime format).
DeviceId: Matches Table2 (guid format).
StreamData: Contains only the index and eventid, which matches Table2.
Accepted because it fully matches Table2's structure and data types.
Record D:
Timestamp: Matches Table2 (datetime format).
DeviceId: Matches Table2 (guid format).
StreamData: Matches Table2's structure.
Accepted because it fully matches Table2's structure and data types.