Test Drive Scenario
Here is a sample scenario to test out the Wrangler in your environment
Log into Microsoft Fabric: Go to app.fabric.microsoft.com
Create a Lakehouse for the destination table.
Below is a sample Lakehouse table schema for the scenario. The SQL script is run in a notebook, which will generate your table. Note that there are various methods for creating a schema.
%%sql
CREATE TABLE Sales_Orders_Sample (
Customer_Name STRING,
Company STRING,
Order_Date DATE,
Order_No STRING,
Qty FLOAT,
Parts_Ordered STRING,
Price FLOAT,
Address STRING,
Description STRING
) USING DELTA;
Upload your Source data file(s) to the Lakehouse
Below are two sample files to run through your Wrangler.
Last updated
Was this helpful?