drop table Orders, Salesmen, T456a;
| メモリから 3 つのテーブルが削除されます。 |
Tab1:
Load * Inline [
Customer, Items, UnitPrice
Bob, 5, 1.50
];
Tab2:
LOAD Customer, Sum( Items * UnitPrice ) as Sales
resident Tab1
group by Customer;
drop table Tab1;
| テーブル Tab2 が作成されると、テーブル Tab1 は削除されます。 |
// Load mapping table of country codes:
map1:
mapping LOAD *
Inline [
CCode, Country
Sw, Sweden
Dk, Denmark
No, Norway
] ;
// Load list of salesmen, mapping country code to country
// If the country code is not in the mapping table, put Rest of the world
Salespersons:
LOAD *,
ApplyMap('map1', CCode,'Rest of the world') As Country
Inline [
CCode, Salesperson
Sw, John
Sw, Mary
Sw, Per
Dk, Preben
Dk, Olle
No, Ole
Sf, Risttu] ;
// We don't need the CCode anymore
Drop Field 'CCode';
Drop Mapping Table map1;
Metrics:
Load * Inline [
Transaction ID, Sales Amount, Sales Cost, City, Customer ID
1000012, 4509.33, 1234.22, Oslo, 250v9849
1000013, 1043.21, 180.23, Gothenburg, 195d5930
1000014, 6038.35, 1400.10, Copenhagen, 195d5930
];
| この例は、Drop mapping table バリアントの使用方法を示しています。マッピング テーブル map1 が作成され、その後 LOAD ステートメントで ApplyMap 関数とともに使用されます。マッピング テーブルが使用された後、メモリからドロップされ、スクリプト実行の後続のテーブルにロードされるデータの RAM 使用量が最適化されます。 この場合、マッピング テーブルの行数が少ないため、RAM の最適化はわずかになります。ただし、大規模なマッピング テーブルの場合や、ループ内でマッピング テーブルを作成する場合は、パフォーマンスを大幅に向上させることができます。 |