Execute the following SQL commands in your Teradata instance to create the target database and table:
-- Create database (if it doesn't already exist)
CREATE DATABASE dagster_pipeline_db AS PERMANENT = 10000000;
-- Create table
CREATE TABLE dagster_pipeline_db.people (
id INTEGER,
name VARCHAR(100),
email VARCHAR(100),
city VARCHAR(100)
);
Note: If the database already exists, you may see error 5612. If the table already exists, you may see error 3803. Both are safe to ignore if you're just verifying the setup.