The Danger of Custom Software
Is it worth writing your own software? Steve Jones says you ought to really think about it and perhaps spend time looking to buy something before you build a new application.
2012-06-12
197 reads
Is it worth writing your own software? Steve Jones says you ought to really think about it and perhaps spend time looking to buy something before you build a new application.
2012-06-12
197 reads
Database people are used to changing the hardware of the server on which a problem database resides, or making changes to indexes and database settings, but humans and their organisations are far more difficult to tune and optimise than databases.
2012-06-11
304 reads
It can be very hard to find time to learn new skills and get better at your job. Today Steve Jones talks about finding a little time in the margins of your life.
2012-06-07
209 reads
Today Steve Jones talks about the need to understand code to be a good administrator. Our systems are more complex and we cannot manage multiple systems by clicking on buttons in an interface.
2012-06-06
123 reads
Managing risk is a park of business, but it also requires that we have the information to properly assess the issues. Do we prevent that in IT?
2012-06-05
136 reads
This year we will see a large number of upgrades from Microsoft to much of its technology stack. Can IT Pros handle the load?
2012-06-04
99 reads
Siri is seen as a data security hole at IBM. This is something that Steve Jones thinks we might need to be more concerned about in the future, especially as more and more processing takes places outside of our walls.
2012-06-04
151 reads
This Friday Steve Jones asks if you like your job. Are you engaged? Do you want to stay? Give us your answer today.
2012-06-01
206 reads
Today we have a guest editorial from Grant Fritchey that might surprise you. Today Grant talks about clustered indexes in your tables.
2012-05-31
971 reads
Today Steve Jones notes that we use computers to enable others to handle their own work without help. But is that always a good idea.
2012-05-30
100 reads
Every organization I talk to has the same problem dressed up in different clothes....
By DataOnWheels
I am delighted to host this month’s T-SQL Tuesday invitation. If you are new...
By alevyinroc
Ten years (and a couple jobs) ago, I wrote about naming default constraints to...
Comments posted to this topic are about the item The day-to-day pressures of a...
I am annoyed. We have a CMS server that has hundreds of servers saved...
Comments posted to this topic are about the item The Problem Isn't Always Your...
What happens when I run this code?
CREATE TABLE dbo.IdentityTest
(
id int IDENTITY(10) PRIMARY KEY,
somevalue VARCHAR(20)
)
GO
See possible answers