Skip to content

Instantly share code, notes, and snippets.

View isha-dremio's full-sized avatar

Isha Sharma isha-dremio

View GitHub Profile
@isha-dremio
isha-dremio / iceberg-lakehouse.txt
Last active October 10, 2023 02:50
Build an Iceberg Lakehouse Workshop
1. Create a folder
CREATE FOLDER "catalog_name"."my_folder";
2. Run SQL to create an Iceberg table
CREATE TABLE "catalog_name"."my_folder"."nyc_trips" (
pickup_datetime TIMESTAMP,
passenger_count INT,
trip_distance_mi FLOAT,
fare_amount FLOAT,