Delete DB table

Workshop - Delete DB

Delete

Create a new Transformation

Any one of these actions opens a new Transformation tab for you to begin designing your transformation.

  • By clicking File > New > Transformation

  • By using the CTRL-N hot key

Placeholder for Delete DB table.

Inspect the data

Before we kick off .. lets take a look at the stg_sales_data table data to get an understanding of what results to expect..

  1. View the STG_SALES_DATA data.

STG_SALES_DATA

As you can see we have a QUANTITYORDERED for each of our PRODUCTLINES. Each ORDERNUMBER is associated with Customer details.

  1. Execute the following statement.

select * from STG_SALES_DATA
where QUANTITYORDERED > '50';
STG_SALES_DATA constraint QUANTITYORDERED > 50

The results indicate that ORDERNUMBER 10339 where the QUANTITYORDERED is 55 should be the first expected record.

Last updated

Was this helpful?