Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Activity for daviewales‭

Type On... Excerpt Status Date
Comment Post #296058 Even more wild that it's a [known issue](https://docs.azure.cn/en-us/synapse-analytics/known-issues#querying-a-view-shows-unexpected-results), and there seems to be no plan to fix it. I have no idea how to raise this with Microsoft.
(more)
4 months ago
Edit Post #296059 Initial revision 5 months ago
Answer A: Prevent Azure Synapse Serverless views from returning invalid data after source file schema change
Explicitly specify the schema to ensure that the view continues to return valid data, even if new columns are added to the source file. Adapt the example above as follows to prevent the issue: ``` sql create view test as SELECT FROM OPENROWSET( BULK 'https://example.dfs.cor...
(more)
5 months ago
Edit Post #296058 Initial revision 5 months ago
Question Prevent Azure Synapse Serverless views from returning invalid data after source file schema change
I'm using Azure Synapse Serverless SQL to create views over Parquet files in a data lake. I have encountered an issue where views return invalid results if the source table schema changes. For example, suppose I have the following parquet file: | A | B | C | | - | - | - | | A | B | C | |...
(more)
5 months ago
Edit Post #291292 Initial revision over 2 years ago
Question Convert Synapse SQL Server hex `sid` to Azure Entra group object ID.
Suppose I have an Azure Synapse Serverless SQL database. I can run the following to get the `sid` of added groups: ``` sql select name, typedesc, authenticationtypedesc, sid from sys.databaseprincipals where typedesc = 'EXTERNALGROUP' ``` However, the `sid` is a long hex string, some...
(more)
over 2 years ago
Comment Post #284424 Consider creating a [minimal reproducible example](https://software.codidact.com/posts/285810/285811#answer-285811) for this question. This will make it easier to answer. (Remove as much code as possible while still reproducing the problem.)
(more)
over 2 years ago