3,020 questions
0 votes
0 answers
42 views
How to set up cross tenant authentication using Service Principal without secret in ADF Linked service
I need to transfer data from an Azure SQL database in Tenant A to another Azure SQL database in Tenant B using Azure Data Factory. I want to use Service Principal authentication without relying on ...
Advice
0 votes
0 replies
26 views
Exporting Azure synapse workspace artifacts
Just came across a task and had to do some digging to find the answer: How to export Azure Synapse artifacts, more specifically pipelines, conserving their folder hierarchy, when Git integration is ...
0 votes
0 answers
44 views
PySpark 3.5.5 CharType in read.csv schema definition
I'm using a PySpark notebook inside of Azure Synapse. This is my schema definition qcew_schema = StructType([ StructField( 'area_fips', dataType = CharType(5), ...
0 votes
0 answers
26 views
Cross-subscription Synapse Spark query to a dedicated SQL Pool how to?
I want to query a different subscription SQL Pool using SPark can I just use the same syntax or is additional configuration neccesary and if so how to? df = spark.read.option(Constants.SERVER, "&...
1 vote
0 answers
34 views
run single notebook with different objects lists dict parallel on spark, when called from master notebook in synapse
Anyone know how to call single notebook with different parameters parallel, and all notebooks should appear on spark UI to make the trouble shooting easier? I have one child notebook, calling from ...
0 votes
0 answers
99 views
Content of directory on path 'https://xxx.dfs.core.windows.net/xxx/deltalake/stocks_partitioned/_delta_log/*.*' cannot be listed
When I try to access tables from a serverless SQL pool from my application I get the error. Msg 13807, Level 16, State 1, Line 1 Content of directory on path 'https://xxx.dfs.core.windows.net/xxx/...
0 votes
0 answers
28 views
Azure Synapse Delta Lake view can't be accessed in synapse for some user
I have a delta lake in azure blob storage. I want to read the data using serverless sql pool. My team mate already defined the views and he is able to access them without a problem. When I try to ...
0 votes
0 answers
27 views
Azure Synapse Notebook - read parquet from Google Cloud
I have a Azure Synapse Notebook and want to read parquest files from google cloud. I created a linked service to the google cloud. This works fine: I can test the connection with success. But how can ...
0 votes
0 answers
89 views
Using Service Principal authentication with vendor API in ADF
I need to extract data from a vendor API in Azure Data Factory using Service Principal authentication. In Web activity, I’m not sure what the correct resource value should be for external (non-...
0 votes
0 answers
68 views
Query to get counts of data
I have SQL query that I'm trying to make work on Azure Synapse where the project is being built. But everything I try doesn't get the correct record count. The tables I have ingested onto Azure ...
0 votes
0 answers
76 views
OData $expand keyword not working in Synapse Copy Activity with Azure Devops Analytics OData source
I'm working on a Synapse pipeline that pulls data from the Azure Devops OData feed. The base query works fine in both the browser and Synapse, but it seems to ignore the $expand portion of the query ...
1 vote
1 answer
99 views
How to flatten multidimensional array in Azure Data Factory/Synapse
I want to extract "email" from JSON using ADF/Synapse. Below is the JSON that I want to flatten and extract all "email" which is in an object in a multidimensional array: { "...
0 votes
0 answers
30 views
Azure Data Flow - parse transformation of XML element with both attribute and value
Given XML with element that has both attribute and value, e.g. <root><elem attr="world">hello</elem></root> how can I parse both the attribute and the value in ...
0 votes
1 answer
66 views
Why OPENROWSET with CosmosDB returns 'Incorrect secret value'?
I am trying to connect Synapse Analytics to an existing CosmosDB container. In official tutorials the code is simple, SELECT TOP 10 * FROM OPENROWSET( 'CosmosDB', 'Account=your-cosmosdb;...
0 votes
0 answers
52 views
Execute long running job in synapse
I want to create a Synapse pipeline in which one of the activities is a lightweight, long-running job. Once it succeeds, the flow should proceed to the next activity. However, I don't see any activity ...