filename = "raw_telco_data.parquet" stagename = "rawdata" rawtable = "RAW_PARQUET_DATA" # read the staged file dfRaw = session.read.option("compression", "snappy").parquet(f"@{stagename}/{filename}") # copy the data into a table dfRaw.copy_into_table(rawtable)
Hosted onDeepnote