The Chance of Failure
Do you plan for failure as a possibility or a probability? The difference might mean you take your plans and testing a little more seriously. Steve Jones notes that you might want to plan on the latter.
2011-03-31
152 reads
Do you plan for failure as a possibility or a probability? The difference might mean you take your plans and testing a little more seriously. Steve Jones notes that you might want to plan on the latter.
2011-03-31
152 reads
2011-03-30
93 reads
Today we have a guest editorial from Andy Warren that talks about the problems we sometimes run into when we must work with other people and make decisions. Sometimes getting the information from people, or giving it to them, is not as simple as we would like.
2011-03-29
150 reads
Today we have a guest editorial from Stanley Popovich that talks about dealing with stress at work.
2011-03-28
246 reads
With SQL Server releasing new cumulative updates this week, Steve Jones talks about the patching strategy of SQL Server.
2011-03-28
346 reads
This Friday Steve Jones asks you about the Enterprise Edition of SQL Server, and what should the distinction be?
2011-03-25
203 reads
A hacker breaches security by gaining control of an executive's email account. Does that mean that we should consider adding another level of authentication to privileged requests?
2011-03-24
156 reads
Today we have a guest editorial by Andy Warren. This one continues the thought of how you relate to the rest of your company, or "the business" as is it often known.
2011-03-22
108 reads
Rodney landrum wonders what, if anything, you would do in SQL, or any other beloved technology, if you did not have to?
2011-03-21
236 reads
How do you decide what improvements to make to your SQL Server? Or what settings to turn off? Having hard and fast rules isn't a great idea, and Steve Jones talks about why.
2011-03-21
176 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:0817-866-887 Area Street Festival, Ruko No 1 & 1A, CBD, Jl. Galuh Mas Raya,...
Comments posted to this topic are about the item Is Fabric a Reliable Service...
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