DESCRIBE APPLICATION PACKAGE

アプリケーションパッケージに関する情報を表示します。

DESCRIBE は DESC に短縮できます。

こちらもご参照ください。

ALTER APPLICATION PACKAGECREATE APPLICATION PACKAGEDROP APPLICATION PACKAGESHOW APPLICATION PACKAGES

構文

DESC[RIBE] APPLICATION PACKAGE <name>
Copy

パラメーター

name

説明するアプリケーションパッケージの 識別子 を指定します。

出力

このコマンドは、アプリケーションパッケージのプロパティを以下の列で表示します。

説明

property

アプリケーションパッケージのプロパティの名前。この列には、以下のテーブルに示すプロパティを含めることができます。

value

アプリケーションパッケージのプロパティに割り当てられた値。

property 列には、アプリケーションパッケージの以下のプロパティを含めることができます。

プロパティ

説明

name

アプリケーションパッケージの名前。

created_on

アプリケーションパッケージが作成された時のタイムスタンプ。

distribution

アプリケーションパッケージの配布方法。有効な値は、 INTERNAL および EXTERNAL です。

multiple_instances

アプリケーションパッケージの複数のインスタンスを1つのアカウントにインストールできるかどうかを示します。有効な値は、 TRUE および FALSE です。

uses_container_services

アプリケーションパッケージが Snowpark Container Services を使用するかどうかを示します。有効な値は、 TRUE および FALSE です。

comment

アプリケーションパッケージの説明。

owner

アプリケーションパッケージの所有者。

release-channels

アプリケーションパッケージでリリースチャネルが有効になっているかどうかを示します。有効な値は、 ENABLED および DISABLED です。

listing_auto_refresh

アプリケーションパッケージでクロスクラウドの自動フルフィルメントが有効になっているかどうかを示します。有効な値は、 TRUE および FALSE です。

使用上の注意

  • このコマンドの出力を後処理するには、 パイプ演算子->>)または RESULT_SCAN 関数。どちらのコンストラクトも、出力を クエリできる結果セットとして扱います。

    For example, you can use the pipe operator or RESULT_SCAN function to select specific columns from the SHOW command output or filter the rows.

    When you refer to the output columns, use double-quoted identifiers for the column names. For example, to select the output column type, specify SELECT "type".

    You must use double-quoted identifiers because the output column names for SHOW commands are in lowercase. The double quotes ensure that the column names in the SELECT list or WHERE clause match the column names in the SHOW command output that was scanned.

アプリケーションパッケージのプロパティについて説明します。

DESC APPLICATION PACKAGE hello_snowflake_app;
Copy
+------------------------------------+-------------------------------+
| property                           | value                         |
|------------------------------------+-------------------------------|
| name                               | hello_snowflake_app_package   |
| created_on                         | 2025-07-14 14:29:56.927 -0700 |
| distribution                       | INTERNAL                      |
| multiple_instances                 | FALSE                         |
| uses_container_services            | FALSE                         |
| comment                            | My awesome app                |
| owner                              | APP_DEV_ROLE                  |
| release_channels                   | ENABLED                       |
| listing_auto_refresh               | DISABLED                      |
+------------------------------------+-------------------------------+