BSA Says Software Theft Exceeded $51B In 2009
alphadogg sends a NetworkWorld.com piece going over the Business Software Alliance's latest stats on software theft around the world. "Expanding PC sales in emerging markets is increasing the rate of software piracy, according to the Business Software Alliance and IDC. The rate of global software piracy in 2009 was 43%, meaning that for every $100 worth of legitimate software sold in 2009, an additional $75 worth of unlicensed software also made its way into the market. This is a 2-percentage-point increase from 2008. Software theft exceeded $51 billion in commercial value in 2009, according to the BSA. IDC says lowering software piracy by just 10 percentage points during the next four years would create nearly 500,000 new jobs and pump $140 billion into 'ailing economies.' ... In the United States, software piracy remained at 20%, the lowest level of software theft of any nation in the world. ... The PC markets in Brazil, India, and China accounted for 86% of the growth in PC shipments worldwide." The BSA president said, "Few if any industries could withstand the theft of $51 billion worth of their products." It's unclear whether that was a brag about the industry's robustness, or a result of the industry's low cost of goods sold.
Which is funny, because this is what our main competitor "runs in the cloud" and we're fielding calls daily with their customers wanting to know how soon can they deploy our locally running software because it's faster and they can still work even if their internet connection goes down.
"The problem with socialism is eventually you run out of other people's money" - Thatcher.
BSA Says Software Theft Exceeded $51B - Meanwhile...
The IT world says "security issues in Windows requiring IT or Tech work exceeds "Theft" figure many times over".
...nope, I am not complaining... I work in the tech field... as much as I would love to hate Microsoft, I have to hate the fact that I love them. I for one am thrilled that .NET and other "technologies are so easy to exploit. I'm also happy I have karma to burn ;-)
I am very curious how they come up with these figures though. At an average of $100 a piece of software, that's 510 million pirated copies a year. At $200 avg, it's 255 million copies... and so on. Wow... didnt realize it was such a serious issue...
StarTrekPhase2 - The Five Year Mission Continues!
In my line of business, if we have a loss that we have numbers for, we put it on our taxes. I suggest they do the same. I'm sure the IRS will be more than willing to audit the hell out of them. Oops, I mean, accept their numbers without question.
As far as I can tell there are three major flaws in the calculation of this figure:
Firstly, it appears to assume a 100% conversion rate between "pirated copies" and "lost sales". As has mentioned repeatedly in other comments, this is impossible to justify.
Secondly, it seems to presuppose that the Average Selling Price that would be achieved in emerging markets like China and Brazil are the same as the current ASP that they get in the Western world where more of the software is purchased legitimately; this too is unsupportable.
Thirdly, they ascribed zero value to the marketing benefit of people "stealing" software in order to determine if they like it and then going on to buy a copy. Repeated studies in the music market have shown that people who download music buy more music and while the situations are not identical it is clear that many people get hold of pirated software to try it and then buy the software for the support that comes with a legitimate copy once they decide that it does the job. Killing illegal copies of software would therefore likely damage sales that they currently make while possibly bringing in some new sales.
Having run software businesses in the past I appreciate that seeing your hard work ripped off can be a serious problem but the BSA spreading mis-information and unsupportable assertions as if they are fact does nothing to make people believe that they are anything other than a bunch of self-serving scaremongerers.
If intelligent life is too complex to evolve on its own, who designed God?
For a car analogy, NoSQL reminds me of people who take a reciprocating saw to a car, removing all airbags and safety systems, all but one disk for brakes, cutting the roof, trunk, and doors off, then saying that their vehicle is far faster than anything else on the track, comparing their vehicle to factory stock models with all their safety systems intact.
There is a reason why SQL-based RDBMS servers are slower than NoSQL. And that is because they ensure that the data is consistent and not lost/corrupted if two things access an entry at the same time.
Eventual consistency is a nice concept. However, it assumes that a tablespace will quiesce sometime. And a lot of these databases are hit 24/7, so there is never a time that the entries (can't call them transactions) that are in flight actually are assured that they are written to disk. Of course, a failure or unexpected shutdown can happen anytime, and entries in flight that can't be considered completed, or be able to be rolled back are corrupt entries which require time to find and fix, assuming they can be detected.
If I value the integrity of data stored in a database, I'm going to use an RDBMS that is designed and built from the ground up on tried and true concepts (ACID mainly). Even if it means that it would cost more than a NoSQL solution.