Snowflake में डेटा पाइपलाइन ऑटोमेशन
Emily Melhuish
Technical Curriculum Developer, Snowflake


ऐक्सेस: Monitoring > Query History > [Select Query] > Query Profile टैब

Exploding Joins
Union without All
UNION के ऊपर Aggregate जोड़ता हैडिस्क पर स्पिल
अप्रभावी प्रूनिंग
डायग्नोस्टिक क्वेरी
SELECT
query_id,
bytes_spilled_to_local_storage,
bytes_spilled_to_remote_storage
FROM SNOWFLAKE.ACCOUNT_USAGE.QUERY_HISTORY
WHERE bytes_spilled_to_remote_storage > 0
ORDER BY bytes_spilled_to_remote_storage DESC
LIMIT 10;
ACCOUNT_USAGE.QUERY_HISTORY — 365 दिन रिटेंशन वाली व्यूINFORMATION_SCHEMA.QUERY_HISTORY() टेबल फ़ंक्शन, 7 दिन रिटेंशन

Snowflake में डेटा पाइपलाइन ऑटोमेशन