The Data Driven Event
In a couple of days, Microsoft is holding Data Driven, an event that will highlight SQL Server 2016.
2016-03-08
107 reads
In a couple of days, Microsoft is holding Data Driven, an event that will highlight SQL Server 2016.
2016-03-08
107 reads
2016-03-08
1,143 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2016-03-07
1,593 reads
2016-03-07
308 reads
I’ve written a few scripts and programs lately, mostly just for fun. In those scripts, I’ve used Write-Host to return...
2016-03-04
1,635 reads
2016-03-04
1,294 reads
Just because we can view the source code for software doesn't mean it is more secure.
2016-03-03
105 reads
2016-03-03
1,395 reads
This is a fairly simple idea, and one I’m sure many people have done in the past. Personally, I have...
2016-03-02
1,291 reads
2016-03-02
1,435 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