Azure Synapse Analytics Data Integration and Orchestration
In this tip we are going to build a sample data pipeline and explore Azure Synapse Analytics data integration and orchestration features.
2020-12-29
In this tip we are going to build a sample data pipeline and explore Azure Synapse Analytics data integration and orchestration features.
2020-12-29
Some time ago I started gathering the SQL Saturday XML files. I started to parse and work with these, but the data is a mess and it never was...
2020-12-28
34 reads
Today Steve looks at the career paths that might, or might not, exist inside an organization.
2020-12-28
236 reads
I started to add a daily coping tip to the SQLServerCentral newsletter and to the Community Circle, which is helping me deal with the issues in the world. I’m...
2020-12-28
12 reads
2020-12-28
526 reads
2020-12-25
779 reads
I started to add a daily coping tip to the SQLServerCentral newsletter and to the Community Circle, which is helping me deal with the issues in the world. I’m...
2020-12-25
16 reads
Merry Christmas today. Happy Holidays to all of you, for whichever holiday you celebrate this time of year. It's been a long, hard year, but I hope you are healthy and happy as we close out 2020. Hopefully next year is more enjoyable for all of us.
2020-12-25
44 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as #SQLNewBloggers. I started to dig into JSON queries recently,...
2020-12-25 (first published: 2020-12-16)
414 reads
2020-12-24
105 reads
One thing I’ve always loved about the Scooby-Doo cartoon is that he never solved...
By Kevin3NF
Flexibility and Scale at the Database Level When SQL Server 2012 introduced Availability Groups...
Setting page visibility and the active page are often overlooked last steps when publishing...
i have subscription of github copilot which i can access in vs 2022 comunity...
Comments posted to this topic are about the item Password Guidance
Comments posted to this topic are about the item Using table variables in T-SQL
What happens if you run the following code in SQL Server 2022+?
declare @t1 table (id int); insert into @t1 (id) values (NULL), (1), (2), (3); select count(*) from @t1 where @t1.id is distinct from NULL;See possible answers