SHOW CODE BUNDLES

Note

Notebook Project Objects have been renamed to Code Bundles. The NOTEBOOK PROJECT grammar is still supported; for that syntax, see SHOW NOTEBOOK PROJECTS. For background on the rename, see the behavior change announcement.

Lists the Code Bundles visible to the current role.

You can use this command to list objects in the current database and schema for the session, a specified database or schema, or your entire account.

The output includes the metadata and properties for each object. The objects are sorted lexicographically by database, schema, and object name (see Output in this topic for descriptions of the output columns). The order of rows in the results is important to note if you want to filter the results.

See also:

CREATE CODE BUNDLE, EXECUTE CODE BUNDLE, SHOW NOTEBOOKS, DESCRIBE NOTEBOOK

Syntax

SHOW CODE BUNDLES;

SHOW CODE BUNDLES IN SCHEMA <database_name>.<schema_name>;

SHOW CODE BUNDLES IN DATABASE <database_name>;

SHOW CODE BUNDLES IN ACCOUNT;

Parameters

IN SCHEMA <database_name>.<schema_name>

Lists Code Bundles in the specified schema.

IN DATABASE <database_name>

Lists Code Bundles in all schemas of the specified database.

IN ACCOUNT

Lists all Code Bundles in the account that are visible to the current role.

Output

The output of the command includes the following columns, which describe the properties and metadata of the object:

ColumnDescription
created_onTimestamp of creation.
nameName of the Code Bundle.
database_nameDatabase containing the Code Bundle.
schema_nameSchema containing the Code Bundle.
ownerThe role that owns the Code Bundle.
commentComment associated with the Code Bundle.

Access control requirements

A role used to execute this operation must have the following privileges at a minimum:

PrivilegeObjectNotes
USAGE or OWNERSHIPDatabaseOWNERSHIP is a special privilege on an object that is automatically granted to the role that created the object, but can also be transferred using the GRANT OWNERSHIP command to a different role by the owning role (or any role with the MANAGE GRANTS privilege).
USAGE or OWNERSHIPSchemaOWNERSHIP is a special privilege on an object that is automatically granted to the role that created the object, but can also be transferred using the GRANT OWNERSHIP command to a different role by the owning role (or any role with the MANAGE GRANTS privilege).

For instructions on creating a custom role with a specified set of privileges, see Creating custom roles.

For general information about roles and privilege grants for performing SQL actions on securable objects, see Overview of Access Control.

Usage notes

  • The command doesn’t require a running warehouse to execute.
  • The command only returns objects for which the current user’s current role has been granted at least one access privilege.
  • The MANAGE GRANTS access privilege implicitly allows its holder to see every object in the account. By default, only the account administrator (users with the ACCOUNTADMIN role) and security administrator (users with the SECURITYADMIN role) have the MANAGE GRANTS privilege.
  • To post-process the output of this command, you can use the pipe operator (->>) or the RESULT_SCAN function. Both constructs treat the output as a result set that you can query.

    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.

  • The command returns a maximum of ten thousand records for the specified object type, as dictated by the access privileges for the role used to execute the command. Any records above the ten thousand records limit aren’t returned, even with a filter applied.

    To view results for which more than ten thousand records exist, query the corresponding view (if one exists) in the Snowflake Information Schema.

  • Returns all Code Bundles visible to the current role.
  • Use DESCRIBE CODE BUNDLE <name> to inspect a Code Bundle.
  • Identifiers containing special characters must be double-quoted.

Examples

List all Code Bundles visible to the current role:

SHOW CODE BUNDLES;

List Code Bundles in a specific schema:

SHOW CODE BUNDLES IN SCHEMA TESTDB.TESTSCHEMA;

List Code Bundles in a specific database:

SHOW CODE BUNDLES IN DATABASE TESTDB;

List Code Bundles in the account:

SHOW CODE BUNDLES IN ACCOUNT;