2011-12-29
143 reads
2011-12-29
143 reads
Users often have a certain expectation of privacy about their data in applications, and as software engineers, Steve Jones thinks we need to respect that.
2011-12-28
111 reads
Today we have a guest editorial from Andy Warren. Today Any asks you to think about your career and your network for 2012.
2011-12-27
106 reads
This Friday before Christmas, Steve Jones has a fun poll. What would you like for Christmas? Any fun, interesting, fascinating tech toys?
2011-12-23
108 reads
Today we have a guest editorial from Phil Factor as Steve is on vacation. This piece looks at the complaints against GOTO and whether they are valid.
2011-12-22
887 reads
Today we have a guest editorial from Andy Warren. Andy talks about the relationship with your boss, and how you ought to view them as your customer.
2011-12-21
231 reads
When an employee has pride in their company, they tend to do a better job, and Steve Jones says that extends to security.
2011-12-20
120 reads
SQLServerCentral will be hosting a track at the 2012 spring SQL Server Connections conference and we hope to see you there.
2011-12-19
65 reads
Today we have a guest editorial from Andy Warren. This one follows on from his "are you easy to work with" piece.
2011-12-16
289 reads
Do you connect to your work network with your smartphone? If so, you should be careful and ensure you are taking precautions to prevent any security issues.
2011-12-15
209 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