Querying datashare objects - Amazon Redshift

Amazon Redshift will no longer support the creation of new Python UDFs starting Patch 198. Existing Python UDFs will continue to function until June 30, 2026. For more information, see the blog post .

Querying datashare objects

On the consumer cluster, you can query datashare objects using fully qualified object names expressed with the three-part notation: database, schema, and name of the object.

  1. In the query editor v2 tree-view panel, choose the schema.

  2. To view a table definition, choose a table.

    The table columns and data types display.

  3. To query a table, choose the table and use the context menu (right-click) to choose Select table.

  4. Query tables using SELECT commands. For example:

    select top 10 * from test_db.public.event;