You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/synapse-analytics/sql/resources-self-help-sql-on-demand.md
+16-1Lines changed: 16 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -673,7 +673,7 @@ If the issue persists, create a support ticket.
673
673
674
674
The error "Incorrect syntax near 'NOT'" indicates there are some external tables with columns that contain the NOT NULL constraint in the column definition. Update the table to remove NOT NULL from the column definition. This error can sometimes also occur transiently with tables created from a CETAS statement. If the problem doesn't resolve, you can try dropping and re-creating the external table.
675
675
676
-
### Partitione column returns NULL values
676
+
### Partition column returns NULL values
677
677
678
678
If your query returns NULL values instead of partitioning columns or can't find the partition columns, you have a few possible troubleshooting steps:
679
679
@@ -893,6 +893,21 @@ There are two options available to circumvent this error:
893
893
894
894
Our engineering team is currently working on a full support for Spark 3.3.
895
895
896
+
## Lake database
897
+
898
+
The Lake database tables that are created using Spark or Synapse designer are automatically available in serverless SQL pool for querying.
899
+
900
+
### A table created in Spark is not available in serverless pool
901
+
902
+
Tables that are created might not be immediately available in serverless SQL pool.
903
+
- The tables will be available in serverless pools with some delay. You might need to wait 5-10 minutes after creation of a table in Spark to see it in serverless SQL pool.
904
+
- Only the tables that reference Parquet, CSV, and Delta formats are available in serverless SQL pool. Other table types are not available.
905
+
- Accessing Delta Lake tables in Lake databases is in **public preview**. Check other issues listed in this section or in the Delta Lake section.
906
+
907
+
### Delta tables in Lake databases are not available in serverless SQL pool
908
+
909
+
Make sure that your workspace Managed Identity has read access on the ADLS storage that contains Delta folder. The serverless SQL pool reads the Delta Lake table schema from the Delta log that are placed in ADLS and use the workspace Managed Identity to access the Delta transaction logs.
910
+
896
911
### Delta tables in Lake databases do not have identical schema in Spark and serverless pools
897
912
898
913
Serverless SQL pools enable you to access Parquet, CSV, and Delta tables that are created in Lake database using Spark or Synapse designer. Accessing the Delta tables is still in public preview, and currently serverless will synchronize a Delta table with Spark at the time of creation but will not update the schema if the columns are added later using the `ALTER TABLE` statement in Spark.
0 commit comments