Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hello ,
I have created a table in lakehouse using notebook :
Table is created successfully.
the issue is
Data is visible in Lakehouse , but these tables are not visible in SQL EP.
this is happenig with all the tables I am writting using NB.
Any suggestions.
Solved! Go to Solution.
Hi @nilendraFabric
I tried to reproduce your scenario it works fine for me.
Steps to create a table using a Notebook:
from pyspark.sql import SparkSession
spark = SparkSession.builder.getOrCreate()
data = [(1, "Product A", 100), (2, "Product B", 150)]
columns = ["ID", "Product", "Sales"]
df = spark.createDataFrame(data, columns)
df.write.format("delta").mode("overwrite").saveAsTable("TestTable")
********************************************************
If the above information is helpful, please give us Kudos and mark the response as Accepted as solution.
Best Regards,
Community Support Team _ C Srikanth.
I am facing same issue. But its intermittent
Hi @nilendraFabric
If the above suggested approach works for you could you please accept as solution.
Best regards,
Cheri Srikanth
Hi @nilendraFabric
I tried to reproduce your scenario it works fine for me.
Steps to create a table using a Notebook:
from pyspark.sql import SparkSession
spark = SparkSession.builder.getOrCreate()
data = [(1, "Product A", 100), (2, "Product B", 150)]
columns = ["ID", "Product", "Sales"]
df = spark.createDataFrame(data, columns)
df.write.format("delta").mode("overwrite").saveAsTable("TestTable")
********************************************************
If the above information is helpful, please give us Kudos and mark the response as Accepted as solution.
Best Regards,
Community Support Team _ C Srikanth.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Fabric update to learn about new features.