Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2024 02:08 AM
I finaly solved my problem by using the parameters in python F-Strings:
Location_Path = dbutils.widgets.text("Location_Path","")
-- create table using widget
query = f"""
CREATE OR REPLACE TABLE schema.Tabelname1
LOCATION '{Location_Path}'
AS
SELECT
...
from schema.Tabelname