- 2603 Views
- 2 replies
- 0 kudos
################################################ New Code as per UC ################################################ def parse_json(df, *cols, clean=True res = df for i in cols: if clean: res = ( res.wit...
- 2603 Views
- 2 replies
- 0 kudos
Latest Reply
Hi @sambgp ,
Thank you for reaching out to our community! We're here to help you.
To ensure we provide you with the best support, could you please take a moment to review the response and choose the one that best answers your question? Your feedback...
1 More Replies
- 3437 Views
- 4 replies
- 2 kudos
If we want to read all the data of the databricks tables at single time how can we able to do it.
- 3437 Views
- 4 replies
- 2 kudos
Latest Reply
Hi @Krishna2110 ,Here it is, it should work now tables = spark.sql("SHOW TABLES IN ewt_edp_prod.crm_raw").collect()
for row in tables:
table_name = f"ewt_edp_prod.{row[0]}.{row[1]}"
try:
df = spark.table(table_name)
count = df...
3 More Replies