Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
I am trying to use Copilot in a notebook in my HLS public preview workspace. I get the following error when I execute the Copilot package installation cell. Any advice on how I can address this?
Thanks.
ValueError: Schema healthcare1_msft_bronze.substancedefinition is too long to be added to the vector store.
Hi @sharp1FL
This error usually happens when the schema or table name is too long for the Copilot vector store.
You can try one of the following approaches to fix it:
1. Use a shorter alias or view name
CREATE VIEW bronze_substance AS
SELECT * FROM healthcare1_msft_bronze.substancedefinition
Then reference it in your notebook as:
df = spark.table("bronze_substance")
2. Select only the needed columns
df = spark.table("healthcare1_msft_bronze.substancedefinition").select("column1", "column2")
3. Create a temporary view with a shorter name
spark.table("healthcare1_msft_bronze.substancedefinition").createOrReplaceTempView("substancedef_short")
Then use the short name (substancedef_short) when calling Copilot.
If the issue persists, make sure you are on the latest Fabric Copilot public preview build — some early preview versions have naming length limits.
Hope this helps!
Hi @sharp1FL , Could you please try these steps