The Cloud
I was interested to hear about Microsoft providing some services and storage in the "Cloud." I remember hearing about Amazon making disk space and computing services available to users.
2007-09-12
259 reads
I was interested to hear about Microsoft providing some services and storage in the "Cloud." I remember hearing about Amazon making disk space and computing services available to users.
2007-09-12
259 reads
It's the law of unintended consequences: things happening that you don't expect from a seemingly unrelated area. This article talks about a data center having leaks from carpet cleaning above. The concrete floor had aged and the carpet cleaners dumped water on the carpet to soak it through and it leaked. I'm not sure how people have data centers below office floors, but I know I've had a number of them at different companies where I've worked.
2007-09-12
154 reads
This editorial was originally published on Sept 11, 2007. It is being re-run as Steve is on holiday. This is an interesting look at the cloud from 2007.
2012-06-21 (first published: 2007-09-11)
115 reads
Today's editorial was originally published on Sept 4, 2007. It is being re-run as Steve is on holiday. Today Steve talks about the problems with customer service, and how some companies respond.
2012-06-20 (first published: 2007-09-04)
121 reads
This editorial that was originally published on Aug 15, 2007. It is being rerun as Steve is traveling. This editorial looks at the issues that happen in production and how you should perhaps plan for disasters.
2012-06-11 (first published: 2007-08-15)
259 reads
Today we have an editorial from Aug 8, 2007 that is being republished as Steve is on holiday. This piece looks at interns and how it's a good idea for finding new employees.
2012-06-08 (first published: 2007-08-08)
110 reads
Today's editorial was originally published on Aug 7, 2007. It is being re-run as Steve is on holiday. Is it worth getting certificated? Steve raises the question today.
2012-06-18 (first published: 2007-08-07)
259 reads
Today we have an editorial from Aug 3, 2007. It is being republished as Steve is on vacation. Today Steve asks the question about which fun games you might like outside of work.
2012-06-22 (first published: 2007-08-03)
95 reads
This guest editorial from Michael Coles was originally published on Aug 1, 2007. It is being re-run as Steve is on vacation. Today Michael talks about the potential for reward for taking risk.
2012-06-19 (first published: 2007-08-01)
274 reads
Steve Jones bimonthly car update looks at driving in the UK and the differences in cars between the US and elsewhere.
2007-07-30
38 reads
By Steve Jones
I wrote about learning today for the editorial: I Can’t Make You Learn. I...
By ReviewMyDB
Fabric has CI/CD built in, but if you've tried to use it for database...
By Steve Jones
attriage – n. the state of having lost all control over how you feel...
Comments posted to this topic are about the item SSRS Reminded Me of the...
I have a need to execute a stored procedure and return the results to...
Title pretty much says it all - can this be done? I've tried several...
In SQL Server 2025, I have a table (dbo.UserPermission) that contains this data:
UserID UserPermissions 15 23 37 4 NULLWhat is returned when I run this code:
select bit_count(UserPermissions) as PermissionCount from dbo.UserPermission where UserID = 4;See possible answers