試験SnowPro-Core-JPN トピック6 問題136 スレッド
Snowflake SnowPro-Core-JPNのリアル試験問題集
問題 #: 136
トピック #: 6
問題 #: 136
トピック #: 6
ユーザーは、一時的なデータの保存に使用される大きなテーブルのコストを最小限に抑える必要があります。データは Snowflake の外部で再構築できるため、障害からデータを保護する必要はありません。
どのタイプのテーブルを使用する必要がありますか?
どのタイプのテーブルを使用する必要がありますか?
おすすめの解答:B 解答を投票する
For minimizing the cost of large tables that are used to store transitory data, which does not need to be protected against failures because it can be reconstructed outside of Snowflake, the best table type to use is Transient. Transient tables in Snowflake are designed for temporary or transitory data storage and offer reduced storage costs compared to permanent tables. However, unlike temporary tables, they persist across sessions until explicitly dropped.
* Why Transient Tables: Transient tables provide a cost-effective solution for storing data that is temporary but needs to be available longer than a single session. They have lower data storage costs because Snowflake does not maintain historical data (Time Travel) for as long as it does for permanent tables.
* Creating a Transient Table:
* To create a transient table, use the TRANSIENT keyword in the CREATE TABLE statement:
CREATE TRANSIENT TABLE my_transient_table (...);
* Use Case Considerations: Transient tables are ideal for scenarios where the data is not critical, can be easily recreated, and where cost optimization is a priority. They are suitable for development, testing, or staging environments where data longevity is not a concern.
Reference: For more details on transient tables and their usage scenarios, refer to the Snowflake documentation on table types: https://docs.snowflake.com/en/sql-reference/sql/create-table.html#table-types
* Why Transient Tables: Transient tables provide a cost-effective solution for storing data that is temporary but needs to be available longer than a single session. They have lower data storage costs because Snowflake does not maintain historical data (Time Travel) for as long as it does for permanent tables.
* Creating a Transient Table:
* To create a transient table, use the TRANSIENT keyword in the CREATE TABLE statement:
CREATE TRANSIENT TABLE my_transient_table (...);
* Use Case Considerations: Transient tables are ideal for scenarios where the data is not critical, can be easily recreated, and where cost optimization is a priority. They are suitable for development, testing, or staging environments where data longevity is not a concern.
Reference: For more details on transient tables and their usage scenarios, refer to the Snowflake documentation on table types: https://docs.snowflake.com/en/sql-reference/sql/create-table.html#table-types
高杉** 2024-10-23 08:10:13
コメント
他人の解答コメントを賛成するのも、その解答に一票を入れることになります。したがって、すでに同じ意見の投票コメントが存在する場合、新規コメントをする代わりに賛成することもできます。
コメントを通報する
コメント中
今すぐ 新規登録 / ログイン (無料です)。