Skip to main content

Why bother with filing?


Simon dropped something of a megaton bomb on the Tower Software blog the other day. For those of you who can't be bothered with the link, the (heavily paraphrased) summary goes like this:
"If I mis-file something, it takes me all day to find it. It also takes me all day to organize my filing cabinet. So, in a world where Google can give me stuff no matter where I file it, Why should I bother filing anything at all?"
ECM Systems, like TRIM Context, are often heavily based on information science, and encourage a kind of "virtual filing".

It reminds me a bit of my own post in 2005, where I was musing on exactly the same thing, perhaps unsurprisingly, after having to search through my personal piles of mess, just like Simon...

A few years have passed, and I've cultivated some partial answers...
  • Retrieval - Filing things properly and retrieving them is still the single most efficient way to manage data. Finding a document that's been filed properly will always be faster. It sounds to me like Simon organizes things much better than I do- if he'd been able to remember where he filed his passport, he would have been in and out of his study in no time at all. Sure, an unstructured mega-sort and index is getting more practical as hardware and processing power increases, but it will never be as efficient as finding something precisely where it's expected. High speed hunt and pick is always going to cost more, and take longer. There's a reason Google only completes a full internet crawl every 3 months or so...
  • Business Topology - a structured repository is worth a lot more in terms of business value, because it can teach you about your business, how it really works (as opposed to how you think it works) and can also give you clues as to what you need to do to in order to optimize it. Being able to see exactly where people are doing their work, and tracking and reporting on it is they key to operational efficiency. Nowadays, your information IS your organization. Is your organization a big vault filled with random stuff?
  • Context - Just like I was saying about Pandora - sometimes it's not what you're looking for, but what's filed next to it that counts. If I can find an email about a given project, all by itself it's not very valuable. Within a folder containing everything else that ever occured during the life of that project, it's business context becomes apparent. Now, instead of looking for an email with the word 'Strategic Plan' in it, I have every single business document that contributed to the Strategic Plan being formed. That's powerful stuff.
  • Control - If nothing was filed, every single piece of controlled information would need to be manually assigned at the document level. Having a structured and laid out filing plan allows you to apportion security and business logic in a much less granular, more sensible way - it's part of what allows you to scale. Applying security policy to a non-definitive search: 'show me all the things that contain the word missile' is hardly responsible. You might miss stuff. And what's worse, you'll never really know for sure...
So, there are more reasons to file in a modern Google World than you might think. Unstructured Search is all about making sense of chaos - systems like TRIM are more about organizing data when it comes in, and keeping the chaos to a minimum to encourage optimal knowledge retrieval.

Although it pains me somewhat to say it, I think that responsible, truly effective information management is really more about files and folders and policy than it is about giant supercomputer AI robots indexing a massive vault of random assorted business confetti looking for patterns.

(That doesn't mean that giant supercomputer AI robots aren't cool though. They are. )

Comments

Popular posts from this blog

Easter at Blackhead

Camping out on the headland, miles from anywhere. Big swell, off-shore winds, clear crisp nights and smoke from the wood fire. Sometimes it's so rewarding to get out from under the pressure of your life and just be a family of humans.

How to rename an XML Node in C#

This was driving me crazy - here's an easy cut and paste solution to not being able to use the DOM to rename a node for lazy developers like me: public static XmlNode RenameNode (XmlNode node, string namespaceURI,string qualifiedName) { if (node.NodeType == XmlNodeType.Element) { XmlElement oldElement = (XmlElement) node; XmlElement newElement = node.OwnerDocument.CreateElement(qualifiedName, namespaceURI); while (oldElement.HasAttributes) { newElement.SetAttributeNode(oldElement.RemoveAttributeNode(oldElement.Attributes[0])); } while (oldElement.HasChildNodes) { newElement.AppendChild(oldElement.FirstChild); } if (oldElement.ParentNode != null) { oldElement.ParentNode.ReplaceChild(newElement, oldElement); } return newElement; } else { return null; } ...

Democracy in Action...

I have to vote in the US Senate Election Tomorrow. Okay, I don't have to vote, but being an Australian American, voting is something we do. Australia has compulsory voting, which I am overwhelmingly supportive of. People often assume that the point of compulsory voting is to somehow educate people about politics - to force them to have an opinion. The reality has nothing to do with voters, and everything to do with ensuring good governance - By forcing politicians to care about every voter, rather than just the ones who can be bothered to go down to the poll both and vote, it means that politicians are consequently forced to address the needs of all the citizens in the country. Under a non compulsory voting system, it's mainly the wealthy and educated who vote. I was a little shocked to find out that part of the aim of the campaign advertisements that have been confusing me for the last month on TV is not to encourage voters to vote for one candidate or another, but to discou...