Naming Is Hard
Naming objects and variables in software can create contention in a team. While there are good conventions and standards, ultimately a team just needs to agree on something.
2016-04-07
140 reads
Naming objects and variables in software can create contention in a team. While there are good conventions and standards, ultimately a team just needs to agree on something.
2016-04-07
140 reads
What do you need to do in order to access data in a SQL Server that’s encrypted with Always Encrypted?...
2016-04-06
831 reads
2016-04-06
1,777 reads
2016-04-05 (first published: 2011-12-05)
473 reads
2016-04-05
1,364 reads
What do you do if you need a process running under Local Service to connect to your SQL Server? Most...
2016-04-04
649 reads
When I started working with SQL Server, the sa account was “the” account used for admin operations. This was the...
2016-04-04
1,041 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2016-04-04 (first published: 2016-03-23)
3,217 reads
2016-04-04
1,612 reads
2016-04-01 (first published: 2016-03-23)
860 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