Version Control - Part 2 - Tracking Changes
Part 2 of Steve Jones' series on version control. This article examines how you can track the changes you have made in a development cycle.
2015-10-07 (first published: 2001-11-26)
13,464 reads
Part 2 of Steve Jones' series on version control. This article examines how you can track the changes you have made in a development cycle.
2015-10-07 (first published: 2001-11-26)
13,464 reads
Part 3 of Steve Jones' series on version control. This article examines how migrate your changes to your live systems.
2015-10-07 (first published: 2001-12-10)
12,845 reads
Part 4 of Steve Jones' series on version control. This article examines how back out your changes from your live systems.
2015-10-07 (first published: 2001-12-17)
8,865 reads
Part 1 of Steve Jones series on version control and SQL Server. This article examines how you can work with version control and SQL objects.
2015-10-07 (first published: 2001-11-22)
20,843 reads
2015-10-06
213 reads
I’ve been on a testing kick, trying to formalize the ad hoc queries I’ve run into something that’s easier to...
2015-10-06
664 reads
I’ve been on a testing kick, trying to formalize the ad hoc queries I’ve run into something that’s easier to...
2015-10-06
558 reads
It seems as though Git is taking the world by storm as the Version Control System (VCS) of choice. TFS...
2015-10-05
533 reads
Security alerts and concerns are serious, but that doesn't mean that everyone will treat them that way.
2015-10-05
93 reads
It’s been a long time since I wrote about my workspace, however I made a change recently. This was the...
2015-10-02
352 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...
WhatsApp:0821-8154-398 Jl. KH. Wahid Hasyim No.20, Jombang, Kec. Jombang, Kabupaten Jombang, Jawa Timur 61415...
WhatsApp:0821-8154-398 9G9F+FFC, Jl. Jend. Sudirman No.79-81, Kejuron, Kec. Taman, Kota Madiun, Jawa Timur 63132...
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