暗記メーカー
ログイン
SnowPro Core Part4
  • 相馬涼人

  • 問題数 100 • 12/28/2023

    記憶度

    完璧

    15

    覚えた

    35

    うろ覚え

    0

    苦手

    0

    未解答

    0

    アカウント登録して、解答結果を保存しよう

    問題一覧

  • 1

    Snowflake は行のセットを返す SQL UDF をサポートしています。CREATE FUNCTION文のどのキーワードを指定すれば、UDF(UDTF)が行のセットを返すことができますか? Snowflake supports SQL UDFs that return a set of rows. Which keyword in CREATE FUNCTION statement does need to be specified to enable UDF (i.e., UDTF) to return a set of rows?

    TABLE

  • 2

    保存期間が30日のテーブルがあります。保存期間を40日に延長した場合、30日後に削除されたデータにどのような影響がありますか? You have a table with a 30-day retention period. If you increase the retention period to 40 days, how would it affect the data that would have been removed after 30 days?

    フェイルセーフに移行する前に、データはさらに10日間保持されます。 The data will now retain an additional 10 days before moving into Fail-safe

  • 3

    Snowflakeはどのテーブルタイプをサポートしていますか?(該当するものをすべて選択してください) Which table types does Snowflake support? (Select all that apply)

    TRANSIENT TABLE, TEMPORARY TABLE, EXETERNAL TABLE, PERMANENT TABLE

  • 4

    s1 は 1 から始まり、インクリメントが 1 であるように定義されています。 create or replace sequence s1 start = 1 increment = 1 ; create or replace table t1 ( i int, j int default s1.nextval ); テーブル t1 に 3 つのレコードを挿入しました: insert into t1 values (1,s1.nextval), (2,s1.nextval), (3,s1.nextval); この挿入文の後、インクリメントを -4 に設定するためにシーケンス s1 を変更しました: alter sequence s1 set increment = -4; 再び 2 つのレコードを挿入しました。 この挿入文の後、あなたはインクリメントを-4に設定するためにシーケンスs1を変更しました:alter sequence s1 set increment = -4; あなたは再びテーブルt1に2レコードを挿入しました:insert into t1 values (4,s1.nextval), (5,s1.nextval); 次のクエリの結果はどうなるでしょうか? You have a table t1 with a column j that gets populated by a sequence s1. s1 is defined to start from 1 and with an increment of 1. create or replace sequence s1 start = 1 increment = 1 ; create or replace table t1 ( i int, j int default s1.nextval ); You inserted 3 records in table t1: insert into t1 values (1,s1.nextval), (2,s1.nextval), (3,s1.nextval); After that insert statement, you altered the sequence s1 to set the increment to -4: alter sequence s1 set increment = -4; You again inserted 2 records in table t1: insert into t1 values (4,s1.nextval), (5,s1.nextval); What would be the result of the following query? select j from t1 where i = 4;

    4

  • 5

    これらのステージのうち、落としたり変更したりできないのはどれでしょう?(2つ選択) Which of these stages can not be dropped or altered? (Select 2)

    User Stage, Table Stage

  • 6

    外部テーブル上のストリームにのみサポートされるストリーム・タイプはどれですか? Which stream type is supported for streams on the external table only?

    Insert-only

  • 7

    スノーグリッドの能力はどれですか?(該当するものをすべて選択してください) Which of these are Snowgrid's capabilities? (Select all that apply)

    内部ではプライベートなデータ交換、外部ではパブリックなデータ交換で共有する。 Share internally with private data exchange or externally with public data exchage, 安全で管理されたデータ共有 Secure, governed data sharing, ライブでデータ照会が可能 Live, ready to query data

  • 8

    Snowflakeはどのレイヤでクエリ実行を行いますか? In which layer does Snowflake perform query execution?

    クエリー処理 Query Processing

  • 9

    スノーフレーク・リリースのタイプはどれですか?(3つ選択) Which of these are types of Snowflake releases? (Select 3)

    Behavior Change Release, Patch Release, Full Release

  • 10

    Snowflakeアカウント全体のデータストレージを表示する方法を教えてください。 How can you view the data storage across your entire Snowflake account? (Select 2)

    Snowsightを使用します: 管理 > 使用 > ストレージ Using Snowsight: Select Admin > Usage > Storage, クラシックWebインターフェイスを使用します: アカウント > 課金と使用状況 > 平均使用ストレージの順にクリックします。 Using Classic Web Interface: Click on Account > Billing & Usage > Average Storage Used

  • 11

    DATA_RETENTION_TIME_IN_DAYS の値が 0 に設定され、MIN_DATA_RETENTION_TIME_IN_DAYS がアカウント レベルでより高く設定され、0 より大きい場合、どちらの値 (0 以上) の設定が優先されますか? If DATA_RETENTION_TIME_IN_DAYS is set to a value of 0, and MIN_DATA_RETENTION_TIME_IN_DAYS is set higher at the account level and is greater than 0, which value (0 or higher) setting takes precedence?

    より高い値(MIN_DATA_RETENTION_TIME_IN_DAYSで設定) Higher value (set in MIN_DATA_RETENTION_TIME_IN_DAYS)

  • 12

    タスクは、次のいずれかのタイプの SQL コードを実行できます。 (3 を選択) A task can execute any one of the following types of SQL code: (Select 3)

    Snowflakeスクリプティングを使用した手続き型ロジック Procedural logic using Snowflake Scripting, ストアドプロシージャの呼び出し Call to a stored procedure, 単一のSQLステートメント Single SQL Statement

  • 13

    ACCOUNTADMIN は自動クラスタリングの請求をどのように表示できますか?(当てはまるものをすべて選択してください) How can an ACCOUNTADMIN view the billing for Automatic Clustering? (Select all that apply)

    Snowsight: [Admin > Usage] を選択します。 Snowsight: Select Admin > Usage, クエリ - AUTOMATIC_CLUSTERING_HISTORYテーブル関数(Snowflake Information Schema内) Query - AUTOMATIC_CLUSTERING_HISTORY table function (in the Snowflake Information Schema), クエリ - AUTOMATIC_CLUSTERING_HISTORYビュー (アカウントの使用状況内) Query - AUTOMATIC_CLUSTERING_HISTORY View (in Account Usage), クラシック Web インターフェイス: 「AUTOMATIC_CLUSTERING」という名前のウェアハウスの下にある [Account > Billing & Usage] をクリックします。 Classic Web Interface: Click on Account > Billing & Usage under warehouse named 'AUTOMATIC_CLUSTERING'

  • 14

    SnowflakeがサポートしているVIEWのタイプはどれですか?(3つ選択) Which of these types of VIEW does Snowflake support? (Select 3)

    MATERIALIZED VIEW, STANDARD VIEW, SECURE VIEW

  • 15

    Snowflakeは、安全なデータ共有のためにどのような製品を提供していますか。(3を選択) Which products does Snowflake offer for secure data sharing? (Select 3)

    Direct share, Data Marketplace, Data Excahnge

  • 16

    テーブルにストリームを作成するときに追加される列はどれですか。(3を選択) Which of these columns gets appended on creating a stream on a table? (Select 3)

    METADATA$ACTION, METADATA$ROW_ID, METADATA$ISUPDATE

  • 17

    クローニングされた表に何らかの変更(例:挿入、更新)を加えると、__ If you make any changes (e.g., insert, update) in a cloned table, then __

    変更されたマイクロパーティションのみがデータストレージに書き込まれます。 Only the changed micro partitions are written to the data storage

  • 18

    プロバイダによって共有で提供される権限はどれですか。(2を選択) Which privileges are provided with a share by the provider? (Select 2)

    データベース内の特定のテーブルへのアクセス権 (SELECT) を付与します。 Grant access(SELECT) to the specific tables in the database, 共有するテーブルを含むデータベースおよびスキーマへのアクセス権 (USAGE) を付与します。 Grant access(USAGE) to the database and the schema containing the tables to share

  • 19

    Snowflakeデータプロバイダーは、共有ごとに1つのデータベースのデータを共有できます。複数のデータベースのデータを共有することはできません。(True/False) Snowflake data providers can share data from one database per share. Data from multiple databases can not be shared with a share. (True/False)

    FALSE

  • 20

    ユーザー管理タスクは、複数の同時タスクをスケジュールして使用可能なコンピューティングリソースを利用することで、1つのウェアハウスを完全に利用できる場合にお勧めします。(True/False) User-managed Tasks is recommended when you can fully utilize a single warehouse by scheduling multiple concurrent tasks to take advantage of available compute resources. (True /False)

    TRUE

  • 21

    どのSnowflakeエディションがHIPPAサポート機能を提供しますか。(2を選択) ]Which of the Snowflake editions provides HIPPA Support feature? (Select 2)

    Virtual Private Snowflake (VPS), Business Critical

  • 22

    多要素認証 (MFA) の設定に役立つSnowsightインタフェースはどれですか。 Which Snowsight interface does help in setting up Multi-factor authentication (MFA)?

    User Menu Interface

  • 23

    指定したデータベースのレプリケーション履歴のクエリに使用できるアカウント使用状況スキーマのビューはどれですか。 Which view in the Account Usage Schema can be used to query the replication history for a specified database?

    REPLICATION_USAGE_HISTORY

  • 24

    これらのうち、どれがSnowflake Connector for Kafkaに適用できますか。(該当するものをすべて選択してください) Which of these are applicable for Snowflake Connector for Kafka? (Select all that apply)

    トピックがマップされていない場合、Kafkaコネクタはトピック名を使用してトピックごとに新しいテーブルを作成します。 If the topics are not mapped, then the Kafka connector creates a new table for each topic using the topic name, Kafkaトピックは、Kafka構成の既存のSnowflakeテーブルにマップできます。 Kafka topics can be mapped to existing Snowflake tables in the Kafka configuration, Kafkaコネクタは、1つ以上のKafkaトピックをサブスクライブします。 The Kafka connector subscribes to one or more Kafka topics, 1つ以上のKafkaトピックからデータを読み取り、Snowflakeテーブルに読み込む Reads data from one or more Kafka topics and loads the data into a Snowflake table

  • 25

    テーブルの自動クラスタリングを中断するために使用できるコマンドはどれですか。 Which command can be used to suspend Automatic Clustering for a table?

    ALTER TABLE

  • 26

    データ共有に関係するアカウントの種類を教えてください。(3を選択) What types of accounts are involved in data sharing? (Select 3)

    Data Providers, Data Consumers, Reader Accounts

  • 27

    ストアドプロシージャは、呼び出し元の権限と所有者の権限を同時に実行できます。(True/False) A stored procedure can simultaneously run the caller’s and the owner’s rights. (True / False)

    FALSE

  • 28

    Data Cloudの主なメリットは何ですか。(3を選択) What are the key benefits of The Data Cloud? (Select 3)

    Access, Action, Governance

  • 29

    Snowflake Enterprise Edition (以降) の一時データベース、スキーマ、およびテーブルの最大データ保持期間は何ですか? What is the maximum data retention period for transient databases, schemas, and tables for Snowflake Enterprise Edition (and higher)?

    1 day

  • 30

    アクセス権限を持つパイプを一覧表示するコマンドはどれですか。 Which command will list the pipes for which you have access privileges?

    SHOW PIPES;

  • 31

    Time Travelで実行できるSnowflakeタスクはどれですか?(3を選択) Which of these Snowflake tasks can be performed by Time Travel? (Select 3)

    過去に更新または削除されたクエリデータ Query data in the past that has since been updated or deleted, 削除されたテーブル、スキーマ、およびデータベースを復元します。 Restore tables, schemas, and databases that have been dropped., 過去の特定の時点またはそれ以前に、表、スキーマおよびデータベース全体のクローンを作成します。 Create clones of entire tables, schemas, and databases at or before specific points in the past

  • 32

    Snowflakeは、 (Select 3) を含む、マイクロパーティションに格納されているすべての行に関するメタデータを格納します。 Snowflake stores metadata about all rows stored in a micro-partition, including (Select 3)

    個別の値の数 The number of distinct values, マイクロパーティションの各列の値の範囲 The range of values for each of the columns in the micro-partition, 最適化と効率的なクエリ処理の両方に使用される追加のプロパティ Additional properties used for both optimization and efficient query processing

  • 33

    Snowflakeでは、マイクロパーティションにどのくらいの非圧縮データが含まれていますか。 How much uncompressed data does a micro-partition contain in Snowflake?

    Between 50 MB to 500 MB

  • 34

    タイムトラベルは、ACCOUNTADMINによってアカウントに対して無効にできます。 (True/False) Time Travel can be disabled for an account by ACCOUNTADMIN. (True/False)

    FALSE

  • 35

    ユーザー管理タスクは、少数のタスクのみが同時に実行されたり、タスクが短時間 (1分未満) で完了したりするため、ウェアハウスを十分に活用できない場合にお勧めします。(True/False) User-managed tasks are recommended when you cannot fully utilize a warehouse because only a few tasks run concurrently or they run to completion quickly (in less than 1 minute). (True / False)

    FALSE

  • 36

    どのサイズのテーブルがクラスタリングのメリットを最大限に享受できますか。 What sized tables will experience the most benefit from clustering?

    マルチ・テラバイト (TB) 範囲の表 Tables in the multi-terabyte (TB) range

  • 37

    データベース、スキーマ、またはテーブルのデータ保持期間は、ACCOUNTADMINがアカウントレベルで設定した後は変更できません。(True/False) The data retention period for a database, schema, or table can not be changed once ACCOUNTADMIN sets it at the account level. (True/False)

    FALSE

  • 38

    ローカルファイルシステムからSnowflakeにデータをロードする主なツールはどれですか。 Which primary tool loads data to Snowflake from a local file system?

    SnowSQL

  • 39

    直接データ共有は、同じリージョンと同じクラウドプロバイダーのアカウントでのみ実行できます。(TRUE/FALSE) Direct data sharing can only be done with accounts in the same region and the same cloud provider. (TRUE/FALSE)

    TRUE

  • 40

    DML (データ操作言語) コマンドではないものはどれですか。 Which is not the DML (Data Manipulation Language) command?

    UNDROP

  • 41

    Snowsight (新しいSnowflake Webインターフェイス) で使用できる機能はどれですか。(該当するものをすべて選択してください) Which capabilities are available in Snowsight (the new Snowflake web interface)? (Select all that apply)

    他のSnowflakeアカウントとのデータの共有 Sharing data with other Snowflake accounts, 問合せを再実行しなくても、列(SUM、MIN、MAXなど。)の視覚統計を表示できます。 You can display visual statistics on columns (SUM, MIN, MAX, etc.) without re-running the query, スマートオートコンプリート機能は、挿入するSQLまたはオブジェクト構文を提案します。 The smart autocompletes feature suggests SQL or object syntax to insert, ユーザーおよびその他のアカウント・レベル・オブジェクトの作成と管理 Creating and managing users and other account-level objects

  • 42

    Snowflakeオブジェクトの正しい階層は次のうちどれですか。 Which of the following is the correct hierarchy for the Snowflake objects?

    ORGANIZATION > ACCOUT > DATABASE > SCHEMA > TABLE

  • 43

    Snowflake Enterprise Edition (以降) の永続的なデータベース、スキーマ、およびテーブルの最大データ保持期間は何ですか? What is the maximum data retention period for permanent databases, schemas, and tables for Snowflake Enterprise Edition (and higher)?

    90 days

  • 44

    Snowflakeはサービスへの複数の接続方法をサポートしている。(3を選択) Snowflake supports multiple ways of connecting to the service. (Select 3)

    コマンドラインクライアント(例SnowSQL) Command line clients (e.g. SnowSQL), Webベースのユーザー・インタフェース A web-based user interface, ODBC and JDBC drivers

  • 45

    JohnにはSECURITYADMINロールがあります。カスタムDBA_ROLEを作成しました。DBA_ROLEにSYSADMINロールを付与しました。彼はユーザー 「モニカ」 を作成しました。その後、JohnはDBA_ROLEをMonicaに付与しました。MonicaはデータベースMonica_DBを作成します。次に、モニカはPUBLICスキーマの下のMonica_DBにテーブルT 1を作成しました。Monicaによって作成されたテーブルT 1にアクセスするには、Johnは何をすべきですか? John has a SECURITYADMIN role. He created a custom DBA_ROLE. He granted the SYSADMIN role to DBA_ROLE. He created a user, 'Monica'. John then granted DBA_ROLE to Monica. Monica creates a Database Monica_DB. Monica then created a Table T1 in Monica_DB under the PUBLIC schema. What should John do to access Table T1, created by Monica?

    GRANT ROLE TO John; USE ROLE DBA_ROLE; USE DATABASE monica_db; Select * from t1;

  • 46

    検索最適化サービスでサポートされていないのはどれですか。(該当するものをすべて選択してください) Which of these are not supported by the Search Optimization Service? (Select all that apply)

    External Tables, Materialized Views, Column Concatenation, Casts on table columns, Columns defined with COLLATE clause, Analytical Expressions

  • 47

    UDFは、呼び出し元または所有者の権限で実行されます。(True/False) UDF runs with either the caller’s or the owner’s rights. (True / False)

    FALSE

  • 48

    Snowflakeのクラウドサービスレイヤーで管理されているサービスはどれですか?(該当するものをすべて選択してください) Which services are managed by Snowflake's cloud services layer? (Select all that apply)

    Infrastructure Management, Query Parsing and Optimization, Metadata Management, Authentication, Access Control

  • 49

    検索最適化は、サポートされているデータ型を持つデータベース内のすべてのテーブルに適用されるデータベースレベルのプロパティです。(True/False) Search optimization is a Database-level property applied to all the tables within the database with supported data types. (True/False)

    FALSE

  • 50

    マイクロパーティションが一定の場合、クラスタリングのオーバーラップ深度はどのくらいになりますか。 If the micro-partitions are constant, how much is the Clustering Overlap Depth?

    1

  • 51

    Snowflakeでサポートされているデータ型は次のうちどれですか。(該当するものをすべて選択してください) Which of the following Data Types are supported by Snowflake? (Select all that apply)

    CHAR, VARCHAR, INTEGER, FLOAT, NUMERIC

  • 52

    現在レプリケーションがサポートされていないデータベースオブジェクトはどれですか。(2を選択) Which database objects are currently not supported for replication? (Select 2)

    Temporary Tables, Stages

  • 53

    コストが発生するデータストレージは次のうちどれですか。(3を選択) Which of the following data storage does incur the cost? (Select 3)

    Active data Storage, Fail-Safe Storage, Time Travel Storage

  • 54

    クラスターキーに推奨される最大列数 (または式) ? How many maximum columns (or expressions) are recommended for a cluster key?

    3 to 4

  • 55

    SnowflakeのStandard Editionでレプリケーションに使用できないオブジェクトはどれですか。(3を選択) Which objects are not available for replication in the Standard Edition of Snowflake? (Select 3)

    Integrations, Users, Roles

  • 56

    検索最適化サービスでサポートされていないデータ型はどれですか。(2を選択) Which data types are not supported by the Search Optimization Service? (Select 2)

    Semi-structured data types, Floating-point data types

  • 57

    SQLを使用して指定した日付範囲内のタスク履歴を表示できるロールはどれですか。(該当するものをすべて選択してください) Which roles can use SQL to view the task history within a specified date range? (Select all that apply)

    グローバルMONITOR EXECUTION権限を持つロール Role that has the global MONITOR EXECUTION privilege, Account Administrator (ACCOUNTADMIN), タスクに対するOWNERSHIP権限を持つタスク所有者 Task Owner having OWNERSHIP privilege on a task

  • 58

    ACCOUNTADMINロールを持つユーザーがアカウントの既定の保持期間を設定するために使用できるオブジェクトパラメーターはどれですか。 Which object parameter can users with the ACCOUNTADMIN role use to set the default retention period for their account?

    DATA_RETENTION_TIME_IN_DAYS

  • 59

    タスクでコードを実行するには、コンピューティングリソースが必要です。個々のタスクに対して、Snowflake管理またはユーザー管理のコンピューティングモデルを選択できます。(True/False) Tasks require compute resources to execute code. Either Snowflake-managed or User-managed compute models can be chosen for individual tasks. (True / False)

    TRUE

  • 60

    ファイルステージングコマンドは次のうちどれですか。(該当するものをすべて選択してください) Which of the following are file staging commands? (Select all that apply)

    GET, LIST, PUT, REMOVE

  • 61

    Snowflake Secureデータ共有機能を使用して共有できるデータベースオブジェクトはどれですか。(該当するものをすべて選択してください) Which database objects can be shared using the Snowflake Secure Data Sharing feature? (Select all that apply)

    Tables, Secure Materialized View, Secure Views, External Tables, Secure UDFs

  • 62

    SnowparkはSnowflakeの新しい開発フレームワークだ。これにより、データエンジニア、データサイエンティスト、およびデータ開発者は、選択した言語を使用して使い慣れた方法でコーディングし、パイプライン、MLワークフロー、およびデータアプリを1つのプラットフォームでより高速かつ安全に実行できます。Snowparkがサポートしている言語は次のうちどれですか?(3を選択) Snowpark is a new developer framework for Snowflake. It allows data engineers, data scientists, and data developers to code in their familiar way with their language of choice and execute the pipeline, ML workflow, and data apps faster and more securely in a single platform. Which of these following languages does Snowpark support? (Select 3)

    Java, Python, Scala

  • 63

    マイクロパーティショニングはSnowflakeのオンデマンド機能です。ACCOUNTADMINによって明示的に有効にする必要があります。 (True/False) Micro-partitioning is the on-demand feature of Snowflake. It is required to be enabled explicitly by ACCOUNTADMIN. (True / False)

    FALSE

  • 64

    Snowflakeのユニークなアーキテクチャの3つの層は何ですか?(3を選択) What are the three layers in Snowflake's unique architecture? (Select 3)

    Cloud Services, Database Storage, Query Processing

  • 65

    次のうち、Snowflakeの内部ステージのタイプではないものはどれですか。 Which of the following is not a type of Snowflake's Internal stage?

    Schema Stage

  • 66

    コンシューマーは共有に対してどのようなアクションを実行できますか。(2を選択) What actions can a consumer perform on a share? (Select 2)

    共有データを照会し、自分のアカウントの既存のテーブルと結合する Query the shared data and join it with an existing table in their own account, CREATE TABLE ASを使用して、共有データを自分のアカウントの別のテーブルにコピーする Copy shared data into another table in their own account with CREATE TABLE AS

  • 67

    モニカはテーブルt 1からすべてのデータを削除しようとしています。テーブル構造を保持するため、テーブルを再度作成する必要はありません。どのコマンドが彼女のニーズに適していますか? Monica wants to delete all the data from table t1. She wants to keep the table structure, so she does not need to create the table again. Which command will be appropriate for her need?

    TRUNCATE

  • 68

    snowflakeデータウェアハウスは、既存のデータベースやHadoopのような 「ビッグデータ」 ソフトウェアプラットフォーム上に構築されていない。(True/False) The snowflake data warehouse is not built on an existing database or “big data” software platform like Hadoop.(True/False)

    TRUE

  • 69

    テーブルt 1があるとします。テーブルt 1を削除し、新しいテーブルt 1を再度作成します。ここでUNDROPコマンドを実行して、削除されたt 1テーブルを復元するとどうなりますか。 Suppose we have a table t1. We drop the table t1 and then create a new table t1 again. What will happen if we execute the UNDROP command to restore dropped t1 table now?

    UNDROP command will fail

  • 70

    保持期間が30日のテーブルがあります。保持期間を20日に短縮すると、30日後に削除されるデータにどのような影響がありますか。 You have a table with a 30-day retention period. If you decrease the retention period to 20 days, how would it affect the data that would have been removed after 30 days?

    データの保持期間が20日に短縮されます。 The data will now retain for a shorter period of 20 days

  • 71

    DDL (データ定義言語) コマンドではないものはどれですか。 Which is not the DDL (Data Definition Language) command?

    TRUNCATE

  • 72

    Snowflake Cloudパートナーカテゴリはどれですか?(3を選択) Which of these are Snowflake Cloud Partner Categories? (Select 3)

    Native Programmatic Interface, Data Integration, Machine Learning & Data Science

  • 73

    定義された期間内の任意の時点で履歴データ(変更または削除されたデータ)にアクセスできるSnowflake機能はどれですか。 Which of these Snowflake features does enable accessing historical data (i.e., data that has been changed or deleted) at any point within a defined period?

    Time Travel

  • 74

    LISTコマンドは、ステージングされたファイルのリストを返します。LISTコマンドをサポートするステージはどれですか。 The LIST command returns a list of files that have been staged. Which of these stages supports the LIST command?

    All of these

  • 75

    Snowflakeのデフォルトのタイムスタンプはどれですか? Which is the default timestamp in Snowflake?

    TIMESTAMP_NTZ

  • 76

    これらのSnowflakeコネクタのうち、使用可能なものはどれですか。(該当するものをすべて選択してください) Which of these Snowflake Connectors are available? (Select all that apply)

    Snowflake Connector of Python, Snowflake Connector for Kafka, Snowflake Connector for Spark

  • 77

    どのような状況で、サーバーレスタスクよりもユーザー管理タスクを検討する必要がありますか。(2を選択) In what situations should you consider User-Managed Tasks over Serverless Tasks? (Select 2)

    スケジュール間隔の遵守がそれほど重要でない場合を考慮します。 Consider when adherence to the schedure interval is less important., 複数の同時タスクをスケジュールして使用可能なコンピューティングリソースを活用することで、1つのウェアハウスを最大限に活用できる場合を検討します。 Consider when you can fully utilize a single warehouse by scheduling multiple concurrent tasks to take advantage of available compute resources.

  • 78

    テーブルのマイクロパーティションの重複の深さを見つけるのに役立つシステム関数はどれですか。 Which systems function can help find the overlap depth of a table's micro-partitions?

    SYSTEM$CLUSTERING_INFORMATION, SYSTEM$CLUSTERING_DEPTH

  • 79

    これらのSnowflakeエディションのうち、自動的にデータが暗号化された状態で保存されるのはどれですか。 Which of these Snowflake Editions automatically stores data in an encrypted state?

    All of the Snowflake Editions

  • 80

    大規模なデータベースまたはスキーマを複製する場合、複製操作の実行中に元のデータベースとスキーマがロックされます。クローニングの実行中は、元のデータベースおよびスキーマに対してDML操作を実行できません。(True/False) In the case of cloning massive databases or schemas, the original databases and schemas get locked while the cloning operation is running. While cloning is in progress, no DML operation can be done on the original databases and schemas. (True/False)

    FALSE

  • 81

    検索最適化サービスは、等値検索のみを高速化します。(True/False) The search optimization service speeds only equality searches. (True/False)

    FALSE

  • 82

    モニカは5分スケジュールのタスクを正常に作成しました。30分経過しましたが、タスクは実行されませんでした。何が原因でしょうか? Monica has successfully created a task with the 5 minutes schedule. It has been 30 minutes, but the task did not run. What could be the reason?

    モニカはALTER TASKコマンドを実行してタスクを再開する必要があります。 Monica should run the ALTER TASK command to RESUME the task

  • 83

    すべてのSnowflakeアカウントで自動的に有効になる既定の標準データ保持期間は何ですか? What is the default standard data retention period automatically enabled for all Snowflake accounts?

    1 day

  • 84

    クラスタリングキーを選択する際には、何を考慮する必要がありますか。(3を選択) While choosing the clustering key, what should we consider? (Select 3)

    結合条件でより頻繁に使用される列 Columns which are more often used in join conditions, where句でより頻繁に使用される列 Columns which are more often used in where clause, 最小カーディナリティから最大カーディナリティへの列の順序付け Ordering the columns from lowest cardinality to highest cardinality

  • 85

    クラスタリング・キーの定義に役立つSQL句: SQL clause that helps define the clustering key:

    CLUSTER BY

  • 86

    倉庫が61秒間実行され、シャットダウンされた後、再起動して60秒未満実行された場合、課金はどのくらいの期間発生しますか。 If a warehouse runs for 61 seconds, shuts down, and then restarts and runs for less than 60 seconds, for how much duration will the billing be charged?

    121 seconds

  • 87

    テーブルクラスタリングの正しいステートメントを選択します。(3を選択) Select the correct statements for Table Clustering. (Select 3)

    クラスタリング・キーはすべての表に対応しているわけではありません Clustering keys are not for every table, マルチテラバイトの範囲のテーブルは、クラスタリングキーの候補として適しています。 Tables in multi-terabytes range are good candidate for clustering keys, Snowflakeは、キーごとに最大3つまたは4つの列 (または式) を推奨します。 Snowflake recommends a maximum of three or four columns (or expressions) per key

  • 88

    オブジェクトの保持期間が終了すると、データはどうなりますか。 What happens to the data when the retention period ends for an object?

    データはSnowflake Fail-safeに移動 Data is moved to Snowflake Fail-safe

  • 89

    ACCOUNTADMINロールを持つユーザーがアカウントの最小保有期間を設定するために使用できるオブジェクトパラメーターはどれですか。 Which object parameter can users with the ACCOUNTADMIN role use to set the minimum retention period for their account?

    MIN_DATA_RETENTION_TIME_IN_DAYS

  • 90

    流れの種類はどれですか。(3を選択) Which of these are types of the stream? (Select 3)

    Standard, Insert-only, Append-only

  • 91

    どのクラウドプラットフォームでSnowflakeアカウントをホストできますか?(3を選択) In which of the cloud platforms a Snowflake account can be hosted? (Select 3)

    GCP, AWS, AZURE

  • 92

    Snowflakeはマテリアライズド・ビューを自動的かつ透過的に管理します。(True/False) Snowflake automatically and transparently maintains materialized views. (True/False)

    TRUE

  • 93

    Kafkaコネクタは、トピックごとにSnowflakeオブジェクトを作成します。 The Kafka connector creates Snowflake Objects for each topic.

    All of these

  • 94

    Snowflakeによって格納されたデータ・オブジェクトは、お客様が直接表示したりアクセスしたりすることはできません。Snowflakeを使用して実行されるSQLクエリ操作によってのみアクセスできます。(True/False) The data objects stored by Snowflake are not directly visible nor accessible by customers; they are only accessible through SQL query operations run using Snowflake. (True/False)

    TRUE

  • 95

    クローンを作成しないオブジェクトはどれですか。(2を選択) Which of these objects do not clone? (Select 2)

    Internal (Snowflake) stages, External Table

  • 96

    テーブルの自動クラスタリングを再開するために使用できるコマンドはどれですか。 Which command can be used to resume Automatic Clustering for a table?

    ALTER TABLE

  • 97

    元のテーブルに変更を加えた場合は、 If we make any changes to the original table, then

    変更がクローンテーブルに反映されない The changes do not reflect in the cloned table

  • 98

    SnowflakeはSnowpipeのロード履歴をどのくらい保持しますか? How long does Snowflake keep Snowpipe's load history?

    14 days

  • 99

    スノーフレイクアーキテクチャは Snowflake architecture is

    共有ディスクと共有なしのデータベース・アーキテクチャのハイブリッド Hybrid of Shared-disk and Shared-nothing database architectures

  • 100

    指定した日付範囲内の指定したデータベースのレプリケーション履歴を照会するために使用できるSnowflake情報スキーマのテーブル関数はどれですか。 Which table function in the Snowflake Information Schema can be used to query the replication history for a specified database within a specified date range?

    REPLICATION_USAGE_HISTORY