Skip to main content

Data Plane tables

Learn how to create an Alias Component that references existing tables in your Data Plane within Ascend Flows.

Prerequisites

Before beginning, ensure you have:

Create an Alias Component

From your Workspace Super Graph view, follow these steps to create your Component:

  1. Double-click the Flow where you want to create your Component
  2. Right-click anywhere in the Flow Graph
  3. Hover over Create Component, then over Read in the expanded menu, and click Alias menu
  4. In the pop-up window, select your desired database and table
  5. Click Create Alias in the top right create alias
  6. Complete the form with these details:
    • Select your Flow
    • Enter a descriptive Component Name like read_sales form

Configuration options

When creating an Alias Component, you have several configuration options depending on your needs.

Basic configuration

To configure an Alias Component, directly specify the table location:

read_sales.yaml
component:
alias:
location: "MY_DATABASE.MY_SCHEMA.MY_TABLE_NAME"

The location field follows the standard database.schema.table pattern to specify the table you want to reference.

Parameterized configuration

For more flexibility across environments, use parameters in your Alias Component:

read_sales.yaml
component:
alias:
location: "${parameters.database}.${parameters.schema}.MY_TABLE_NAME"

This approach lets you define different database and schema values for different Environments without changing the Component definition. For example, you might have these Parameter values defined in your Profile:

profiles/dev.yaml
parameters:
database: DEV_DB
schema: PUBLIC

See parameters for more details on configuring and using parameters.

Next steps

After creating your Alias Component, you can: