Skip to main content

Table

SQL

Tables are natively read from and written to the SQL warehouse that is configured as your primary SQL connection in a Prophecy fabric. Prophecy offers the following table types:

NameDescription
TablePersistent storage of structured data in your SQL warehouse. Faster for frequent queries (indexed).
ViewA virtual table that derives data dynamically from a query. Slower for complex queries (computed at runtime).
SeedSmall CSV-format files that you can write directly in Prophecy.

Create a Table gem

To begin using tables, add a Table gem to your pipeline.

  1. Open a pipeline in a project.
  2. Open the Source/Target category in the gem drawer.
  3. Click Table. This adds a Table gem to your pipeline canvas.

Configure the Table gem

When you open the gem configuration, you can choose an existing table in your primary SQL warehouse or create a new one.

  1. Select an existing table or create a new table. The available tables in the configuration are located in the default database and schema that you defined in your fabric.
  2. Choose the type and format of the table (table, view, or seed) and click Next.
  3. Set the location where the table will be stored in the SQL warehouse, then click Next. You can select an existing table location or name a new table.
  4. Define the table's properties and verify the schema and click Next.
  5. Load the data to preview the table.
  6. Click Save.