2020-08-21
405 reads
2020-08-21
405 reads
2020-08-14
457 reads
2020-08-07
407 reads
2020-07-31
453 reads
2020-07-24
450 reads
Steve talks data virtualization in the age of growing data sets and larger workloads
2020-02-27
328 reads
2019-10-04
673 reads
Why has Microsoft added new capabilities in SQL Server to connect to other types of data sources? Read on to learn more.
2021-05-14 (first published: 2019-09-09)
10,600 reads
Installing and connecting to SQL 2019 big data cluster
2020-06-26 (first published: 2019-01-17)
3,238 reads
By Steve Jones
“Don’t aim to have others like you; aim to have them respect you.” –...
Many years ago, before I joined Oracle, I was working on a major modernisation...
If you work with data pipelines, SQL, notebooks, or machine learning models, a Mac...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
Comments posted to this topic are about the item Is Fabric a Reliable Service...
hi , a new user wants to be able to add sql agent jobs...
In SQL Server 2025, I have a table (dbo.UserPermission) that contains this data:
UserID UserPermissions 15 23 37What is returned when I run this code:
select bit_count(UserPermissions) as PermissionCount from dbo.UserPermission where UserID = 3;See possible answers