<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>John Myers &#187; Business Intelligence</title>
	<atom:link href="http://blogs.enterprisemanagement.com/johnmyers/category/business-intelligence/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.enterprisemanagement.com/johnmyers</link>
	<description>Business Intelligence with Altitude: Views from 5430ft</description>
	<lastBuildDate>Tue, 26 Feb 2013 05:30:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Data Management: In-Memory Could Be the Mother of All Wisdom</title>
		<link>http://blogs.enterprisemanagement.com/johnmyers/2013/02/25/data-management-inmemory-mother-wisdom/</link>
		<comments>http://blogs.enterprisemanagement.com/johnmyers/2013/02/25/data-management-inmemory-mother-wisdom/#comments</comments>
		<pubDate>Tue, 26 Feb 2013 05:30:46 +0000</pubDate>
		<dc:creator>John Myers</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Data Management]]></category>
		<category><![CDATA[Data Warehouse]]></category>
		<category><![CDATA[Data management]]></category>
		<category><![CDATA[Database management system]]></category>
		<category><![CDATA[In-memory database]]></category>
		<category><![CDATA[Solid-state drive]]></category>
		<category><![CDATA[SSD]]></category>

		<guid isPermaLink="false">http://blogs.enterprisemanagement.com/johnmyers/?p=819</guid>
		<description><![CDATA[As I review my series of #100linesOnBIDW blogs over the last couple of weeks, I found myself looking at the Data Management posting. I covered when to apply schemas, Big Data, and data governance. What I left out was technical implementation concepts for data management systems like row vs. column orientation; in-memory vs. spinning disk [...]]]></description>
			<content:encoded><![CDATA[<p>As I review my series of #100linesOnBIDW blogs over the last couple of weeks, I found myself looking at the <a href="http://blogs.enterprisemanagement.com/johnmyers/2013/01/28/warning-big-data-wolf-data-management-100-lines-25-business-intelligence/">Data Management posting</a>.  I covered when to apply schemas, Big Data, and data governance.  What I left out was technical implementation concepts for data management systems like row vs. column orientation;  in-memory vs. spinning disk primary storage; and symmetric multiprocessing (SMP) vs. massively parallel processing (MPP).  Processing and storage were the “developments” of 2012.  I left 2013 for the “how to use” Data Management platforms.</p>
<p>One of the technical concepts that intrigues me though is spinning disk or flash drives vs. in-memory as primary means of storage for data management platforms.  Spinning disk is approaching a price point that should be considered “cheap”…err… financially inexpensive.  In-memory is smoking fast…errr… achieves a superior level of performance.  Using flash drives, “spinning disk” is getting much faster.  With the falling price of memory and the increase in maximum server memory <a href="http://ideasint.blogs.com/ideasinsights/2011/05/maximizing-memory-capacity-in-two-socket-blades.html">approaching 1TB per blade</a>, in-memory is not only fast, but becoming more affordable and applicable to multiple use cases.</p>
<p>The ancient Greek playwright Aeschylus is credited as saying:</p>
<blockquote><p>“<a href="http://www.brainyquote.com/quotes/keywords/memory.html#uPjBqYv1UI4xSurP.99">Memory is the mother of all wisdom</a>.”</p></blockquote>
<p>It is entirely possible that in-memory databases will be that gateway to all “wisdom” as memory capacity continues to rise and memory prices continue to decline.  However, with that being said, let us look at a couple of “talking points” relating to in-memory databases for technical architects and database administrators:</p>
<ul>
<li><strong>Can you be in-memory and ACID compliant?</strong> One of the keys to database management systems is the ability to be <a href="http://en.wikipedia.org/wiki/ACID">ACID</a> compliant.  This is an area where strictly in-memory data stores fall down.  If all information is in memory and you have a failure of electricity, processor or hardware; the information is gone and the data store fails the “durability” aspect of ACID.  This is where having a level of storage on disk becomes important.  While you can have a pure in-memory data store, most in-memory database management systems have made accommodation for durability by using some form of spinning disk.  Speaking of disk…</li>
<li><strong>Can you be in-memory and have rotating disks? </strong>As I mentioned above, ACID compliant in-memory databases need disks for durability.  However, there are other uses for disk in an in-memory environment.  I prefer that architects have the facilities to manage which data “lives” in memory and which can be placed on disk.  As memory capacity on individual server hardware continues to grow, architects will have less need to manage hot-warm-cold data within in-memory databases.  However, until then you need some form of disk.</li>
<li><strong>Does it matter how you mix your in-memory with your spinning, and non-spinning (aka flash), disks?</strong> Solid-state drive (SSD) drives provide an interesting option for in-memory database administrators and architects.  For memory “challenged” environments, SSD has the ability to serve as the “warm” bridge between in-memory and spinning disk.  However, in enterprise environments SSD presents constraints (aka a nice way to say limitations) that spinning disks don’t have.  Architects should be aware of those <a href="http://www.tomshardware.com/reviews/ssd-910-benchmark-performance,3226-6.html">issues</a> before putting all their eggs in the SSD basket.</li>
</ul>
<p>What say the readers?</p>
<blockquote><p>Are in-memory databases on your radar? If so, are you concerned about the durability of in-memory processing? Do you consider an in-memory data store to be “pure” if there are disks in the architecture?</p></blockquote>
<p>Provide your comments below and/or ping me via twitter at <a href="https://twitter.com/johnlmyers44">@JohnLMyers44</a> with the hashtag <a href="https://twitter.com/search?q=%23100linesonbidw&amp;src=typd">#100LinesOnBIDW</a>.</p>
<p>In addition, I will be participating in a webinar on March 26 on the topic of comparing and contrasting in-memory database platforms.  For more information, you can register<a href="http://ow.ly/hViXB"> here</a>.</p>
<p>Next week, I will cover Business Analytics.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div class="zemanta-pixie" style="margin-top: 10px;height: 15px"><img class="zemanta-pixie-img" style="border: none;float: right" src="http://img.zemanta.com/pixy.gif?x-id=4161c5bf-2b0a-4624-b479-28e407e07c39" alt="" /></div>
]]></content:encoded>
			<wfw:commentRss>http://blogs.enterprisemanagement.com/johnmyers/2013/02/25/data-management-inmemory-mother-wisdom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Actionable Intelligence in 2013: Action will Define You</title>
		<link>http://blogs.enterprisemanagement.com/johnmyers/2013/02/17/actionable-intelligence-2013-action-define/</link>
		<comments>http://blogs.enterprisemanagement.com/johnmyers/2013/02/17/actionable-intelligence-2013-action-define/#comments</comments>
		<pubDate>Mon, 18 Feb 2013 06:36:21 +0000</pubDate>
		<dc:creator>John Myers</dc:creator>
				<category><![CDATA[Actionable Intelligence]]></category>
		<category><![CDATA[Business Analytics]]></category>
		<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Data Warehouse]]></category>
		<category><![CDATA[Business intelligence]]></category>
		<category><![CDATA[Data Warehousing]]></category>
		<category><![CDATA[Operational Excellence]]></category>
		<category><![CDATA[Workflow]]></category>

		<guid isPermaLink="false">http://blogs.enterprisemanagement.com/johnmyers/?p=804</guid>
		<description><![CDATA[If I told you in September that the Baltimore Ravens would win the Super Bowl in February and you did nothing with that information ( i.e. place a bet, announce your prognostication skill, etc. ), was my prediction worth anything? Much like “if a tree falls in the forest and no one is there to [...]]]></description>
			<content:encoded><![CDATA[<p>If I told you in September that the Baltimore Ravens would win the Super Bowl in February and you did nothing with that information (<em> i.e. place a bet, announce your prognostication skill, etc.</em> ), was my prediction worth anything?  Much like “if a tree falls in the forest and no one is there to hear it, did it make a sound?”, you need action from a piece of analysis, prediction, etc. to make it worthwhile.</p>
<p>Thomas Jefferson once said:</p>
<blockquote><p><a href="http://www.brainyquote.com/quotes/quotes/t/thomasjeff120901.html#pqsfYMii1mBI51lG.99">“Do you want to know who you are? Don&#8217;t ask. Act! Action will delineate and define you.”</a></p></blockquote>
<p>For<strong> Business Intelligence</strong>, this is a much under served concept.  For many years, Business Intelligence has focused, quite rightly, on the analysis, or the prediction, but not as much the “call to action”.   The infamous cartoon implies that to provide true business value, we need to be more “explicit” in how we link <strong>Action</strong> to our <strong>Intelligence:</strong></p>
<p>&nbsp;</p>
<p style="text-align: center"><a href="http://blogs.enterprisemanagement.com/johnmyers/files/2013/02/aMiracleOccurs1.jpg"><img class="aligncenter size-full wp-image-808" src="http://blogs.enterprisemanagement.com/johnmyers/files/2013/02/aMiracleOccurs1.jpg" alt="" width="321" height="347" /></a></p>
<p>Here are my thoughts on the state of <strong>Actionable Intelligenc</strong>e in the field of Business Intelligence for 2013:</p>
<p><a href="http://blogs.enterprisemanagement.com/johnmyers/files/2013/02/emaBiContinuum_ActionableIntelligence.jpg"><img class="aligncenter size-full wp-image-807" src="http://blogs.enterprisemanagement.com/johnmyers/files/2013/02/emaBiContinuum_ActionableIntelligence.jpg" alt="" width="590" height="183" /></a></p>
<p>&nbsp;</p>
<ul>
<li><strong>Alerts Via Email Aren’t Really Action:</strong> Much like the above cartoon, assuming that someone is “on the other side of the line” when you send an asynchronous email is using the “miracle occurs here” approach.  Many platforms and solutions have built their action on these types of alert emails.  Some have developed escalation rules to be more sophisticated, but overall it is still an asych email…</li>
<li><strong>Workflow is where it is AT:</strong> When you start adding in workflow management to analytical platforms, you are starting down the road of <a href="http://www.strategy-train.eu/index.php?id=145">unrelated product conglomeration</a> ( <em>or empire… err… technical stack building…</em> ) for business intelligence companies.  Until you realize that, you NEED to complete the feedback loop with end users and business stakeholders to provide the next level of value.  I hope to see more of <a href="http://www.strategy-train.eu/index.php?id=292">related product diversification</a> activity in 2013 from the industry either via partnership or feature/function inclusion.</li>
<li><strong>Collaboration Continues: </strong>The inclusion of collaboration features in business intelligence platforms is a good step on the path to Actionable Intelligence.  However, Collaboration can often be interpreted as part of the decision process vs. being the action or result of the process.  In our society driven by risk avoidance and millennial workers, we might be to guide the collaboration toward action.  However…</li>
<li><strong>Dynamic vs. Static:</strong> …one of the big issues in collaboration is how to handle the ‘static’ view of what the system represented (i.e. a screenshot, snapshot of data) when a collaborative comment/question is made and what the systems ‘actively’ says (i.e. real-time dashboard, current view of data) when someone comments or answers the question.  Static vs. Dynamic views of analytic or predictive results in collaboration functionality needs to be addressed since the disparity between those two ‘states’ can be the difference between action and a false positive. Unfortunately, I don’t have a strong answer to what the solution should be other than “yes”…</li>
<li><strong>Business Intelligence Becomes Process Intelligence?</strong> Too often Business Intelligence is mapped to a ‘data’-based as opposed to a ‘process’-based solution.  By that, I mean the data is oriented on the data than the operational process that the data came from originally.  This isn’t a major change, but a change in focus.  Data should be acquired, stored and presented with the metadata of its process vs. stripping that information away and attempting to rebuild it later on.</li>
<li><strong>Actionable Intelligence needs its own BI: </strong>Just as we have metadata about data and often processes, we must have metadata about the results derived from analysis.  We are closing the loop in a more meaningful way with predictive models.  We should now close the loop on actions and their value to an organization.  Having this metadata, and ability to analyze on actions, will feed into business optimization concepts like <a href="http://en.wikipedia.org/wiki/Operational_excellence">Operational Excellence</a>.</li>
</ul>
<p>What say the readers?</p>
<blockquote><p>Is adding robust workflow into business intelligence platforms folly? Do you already link your business intelligence analysis to workflow platforms? If so, do your workflow platforms feedback to your analytic solutions? Have you mastered Operational Excellence without the feedback loop?</p></blockquote>
<p>Provide your comments below and/or ping me via twitter at <a href="https://twitter.com/johnlmyers44">@JohnLMyers44</a> with the hashtag <a href="https://twitter.com/search?q=%23100linesonBIDW&amp;src=typd">#100LinesOnBIDW</a>.</p>
<p>Next week, I will take a more in depth look at a <strong>Data Management</strong> topic &#8211; The wonderful world of in-memory databases: Can you be in-memory and ACID compliant? Can you be in-memory and have rotating disks? Does it matter how you mix your in-memory with your spinning, and non-spinning (aka flash), disks?</p>
<p>NOTE – For those unfamiliar with the song <a href="http://en.wikipedia.org/wiki/88_Lines_About_44_Women">“88Lines about 44 Women”</a> by the Nails, I highly recommend you give it a try.  At the very least, it was the inspiration for this series of blogs.</p>
<div class="zemanta-pixie" style="margin-top: 10px;height: 15px"><img class="zemanta-pixie-img" style="border: none;float: right" src="http://img.zemanta.com/pixy.gif?x-id=356e8e9a-0cc5-4456-9425-f98ea6acb1de" alt="" /></div>
]]></content:encoded>
			<wfw:commentRss>http://blogs.enterprisemanagement.com/johnmyers/2013/02/17/actionable-intelligence-2013-action-define/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Knowledge Delivery in 2013: Imagination is More Important than Knowledge</title>
		<link>http://blogs.enterprisemanagement.com/johnmyers/2013/02/11/imagination-important/</link>
		<comments>http://blogs.enterprisemanagement.com/johnmyers/2013/02/11/imagination-important/#comments</comments>
		<pubDate>Mon, 11 Feb 2013 07:53:30 +0000</pubDate>
		<dc:creator>John Myers</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Data Visualization]]></category>
		<category><![CDATA[Data Warehouse]]></category>
		<category><![CDATA[Data visualization]]></category>
		<category><![CDATA[Data Warehousing]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[Information graphics]]></category>

		<guid isPermaLink="false">http://blogs.enterprisemanagement.com/johnmyers/?p=785</guid>
		<description><![CDATA[Albert Einstein once said: “Imagination is more important than knowledge. For knowledge is limited to all we now know and understand, while imagination embraces the entire world, and all there ever will be to know and understand.” And I think that the wonderful world of Knowledge Delivery (aka Data Visualization, Reporting, etc.) needs to think [...]]]></description>
			<content:encoded><![CDATA[<p>Albert Einstein once said:</p>
<blockquote><p>“Imagination is more important than knowledge. For knowledge is limited to all we now know and understand, while imagination embraces the entire world, and all there ever will be to know and understand.”</p></blockquote>
<p>And I think that the wonderful world of <strong>Knowledge Delivery </strong>(aka Data Visualization, Reporting, etc.) needs to think a little more like dear old Albert… The mainstream of Knowledge Delivery has adopted some strict rules, or grammar, associated with the presentation of information in dashboards, reports, etc.  Some are great ideas.  Some however, are beginning to dilute the adoption of Knowledge Delivery for the sake of the “prim and proper” presentation of the data.</p>
<p>If one of Knowledge Delivery’s main goals is to trigger a “call to action”, why then should be make it difficult to make a decision on that action.  Knowledge Delivery, in certain instanced, has evolved into to PT Barnum’s “This Way to the Egress” sign.  Overly complex? Yes. Too cute by half? Almost.  Let’s give people the information that they need for that “call to action.  And let’s do so in the most easily digested format possible with an “Exit” sign.</p>
<p>This is not to say that Knowledge Delivery should be dumbed down to the lowest possible denominator.  No sir… However, each audience should be considered and addressed with the proper information and presentation format.</p>
<p>With that stated, here are my 2013 thoughts on the world of Knowledge Delivery:</p>
<p><a href="http://blogs.enterprisemanagement.com/johnmyers/files/2013/02/emaBiContinuum_KnowledgeDelivery2.jpg"><img class="aligncenter size-full wp-image-797" src="http://blogs.enterprisemanagement.com/johnmyers/files/2013/02/emaBiContinuum_KnowledgeDelivery2.jpg" alt="" width="590" height="183" /></a></p>
<ul>
<li><strong>Infographics are here:</strong> USA Today is an interesting little publication. Since its inception, it has been a brightly colored and “simply” presented paper to fight the grim and gray national papers. While the USA Today isn’t in the same editorial or journalistic class as the NY Times, Wall Street Journal or Washington Post, it has made an impact on the way that papers are presented. Infographics are the USA Today of data visualization. They are bright, brassy and simple. And they are here to stay just like USA Today.</li>
<li><strong>Dashboards need to be more “inviting”:</strong> Because infographics are here to stay, dashboards are going to be pushed to provide a more inviting or interesting presentation layer. “Grammatically” precise visualizations, while accurate, will be like the “back half” of most annual reports. The interesting information is presented up front. The accurate numbers are in the back. Dashboards will need to add elements of the infographic to maintain their place or risk being relegated to the “appendix” of the Knowledge Delivery stack.</li>
<li><strong>Mobile visualization will blossom with enterprise tablet adoption:</strong> Smartphones are great devices. However, beyond looking at a pie chart or a “stoplight” graphic, you can’t put much on the screen of the average smartphone beyond one graphic. Much more and you are either straining the eye of the user or the imagination, by scrolling around with pinches and swipes. However, the tablet has/will unleash mobile business intelligence with its larger canvas. As enterprise tablets gain a stronger foothold, we’ll see the consumption and creation of mobile business intelligence take off…. Finally!</li>
<li><strong>Reports aren’t dead… But they are close:</strong> Statics reports ( ala the <a href="http://www.youtube.com/watch?v=Fy3rjQGc6lA">infamous TPS report </a>) aren’t dead quite yet. However, I dare say that they are in the same place as print magazines and newspapers…. There is a limited and aging audience for static reports. With all of the advances in Knowledge Delivery over the last 3-5 years, static reports should be placed in a glass case that says, “Break only in the event of SEC or IRS request”.</li>
<li><strong>3D pie charts aren’t bad… They are just drawn that way: </strong>3D pie charts aren’t the evil that most people think. They are just a misunderstood graphic. Sure, they offend the “grammar” police of data visualization, like ending a sentence with a preposition or an ampersand in a business document. However, if they are bright, get adoption and move people to act, who cares what they are made of? Or, that they make the slices in the back look proportionately smaller &amp; those in front that much bigger…. Remember this is the age of the infographic! We can let some things slide.</li>
</ul>
<p>What say the readers?</p>
<blockquote><p>Are infographics the knowledge graffiti of the 2010s? Will I pry your TPS reports from your cold dead fingers? Do 3D pie charts make your skin crawl like fingers on chalkboard?</p></blockquote>
<p>Provide your comments below and/or ping me via twitter at <a href="https://twitter.com/johnlmyers44">@JohnLMyers44</a> with the hashtag <a href="https://twitter.com/search?q=%23100LinesOnBIDW&amp;src=typd">#100LinesOnBIDW</a>.</p>
<p>Next week, I will cover <strong>Actionable Intelligence</strong>….  I hope you continue the journey with me.</p>
<p>NOTE – For those unfamiliar with the song “<a href="http://en.wikipedia.org/wiki/88_Lines_About_44_Women">88Lines about 44 Women</a>” by the Nails, I highly recommend you give it a try.  At the very least, it was the inspiration for this series of blogs.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.enterprisemanagement.com/johnmyers/2013/02/11/imagination-important/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Business Analytics in 2013 &#8211; A Model Is Useful If&#8230;</title>
		<link>http://blogs.enterprisemanagement.com/johnmyers/2013/02/04/business-analytics-2013/</link>
		<comments>http://blogs.enterprisemanagement.com/johnmyers/2013/02/04/business-analytics-2013/#comments</comments>
		<pubDate>Mon, 04 Feb 2013 17:10:45 +0000</pubDate>
		<dc:creator>John Myers</dc:creator>
				<category><![CDATA[Advanced Analytics]]></category>
		<category><![CDATA[Business Analytics]]></category>
		<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Data Warehouse]]></category>
		<category><![CDATA[Business intelligence]]></category>

		<guid isPermaLink="false">http://blogs.enterprisemanagement.com/johnmyers/?p=769</guid>
		<description><![CDATA[Edward de Bono, a noted expert on creative thinking, once said: The purpose of science is not to analyze or describe but to make useful models of the world. A model is useful if it allows us to get use out of it. Business Analytics is very similar to this concept of science, and specifically, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Edward_de_Bono">Edward de Bono</a>, a noted expert on creative thinking, once said:</p>
<blockquote><p><a href="http://www.brainyquote.com/quotes/quotes/e/edwarddebo130958.html#DTODsszdKP4TIsyo.99">The purpose of science is not to analyze or describe but to make useful models of the world. A model is useful if it allows us to get use out of it.</a></p></blockquote>
<p>Business Analytics is very similar to this concept of science, and specifically, this quote applies to the concept of ‘advanced analytical’ models associated with predictive and descriptive analytics.  Looking at the domain of Business Analytics in the EMA Business Intelligence Continuum, you can see that it is the middle component.  Business Analytics builds on the data acquired from other platforms and often requires that data to be managed in some fashion.</p>
<p>&nbsp;</p>
<p><a href="http://blogs.enterprisemanagement.com/johnmyers/files/2013/02/emaBiContinuum_BusinessAnalytics.jpg"><img class="aligncenter size-full wp-image-774" src="http://blogs.enterprisemanagement.com/johnmyers/files/2013/02/emaBiContinuum_BusinessAnalytics.jpg" alt="" width="590" height="183" /></a></p>
<p>&nbsp;</p>
<p>I have used the EMA Business Analytics Pyramid to frame my comments.  As you can see, the Business Analytics Pyramid builds from “unassuming” concepts such as “simple analytics” to the top of the pyramid and machine learning and natural language processing.</p>
<p>&nbsp;</p>
<p><a href="http://blogs.enterprisemanagement.com/johnmyers/files/2013/02/emaBusinessAnalyticsPyramid.jpg"><img class="aligncenter size-full wp-image-775" src="http://blogs.enterprisemanagement.com/johnmyers/files/2013/02/emaBusinessAnalyticsPyramid.jpg" alt="" width="656" height="447" /></a></p>
<p>&nbsp;</p>
<p>The following are my thoughts on the state of <strong>Business Analytics</strong> for 2013:</p>
<ul>
<li><strong>It Is Not All About Predictive…: </strong>If you read about “advanced analytics”, you might just think that all analytics are predictive or machine learning. This is not the case… However, most of the ‘simple analytics’ that we are familiar with (i.e. COUNTs, SUMs, SORTs, GROUPBYs) are moving to dashboards as ‘right click’ features of other products. While you can still do your analytics with a 3D pie chart for top-ten customer percentage, soon that will be considered “old school” and using Naïve-Bayes to determine the likelihood of your potential customers to join that top-10 will be considered “nu skool”.</li>
<li><strong>Cubes Headed Out to Pasture:</strong> The wonderful OLAP cube always has been a cheat. Just as much as the spitball in baseball or holding in football. Cubes were designed and built because database technology couldn’t do its data day job AND all those aggregates. I firmly believe that between massively parallel processing, in-memory database and columnar storage technologies used separately or in various combinations, the OLAP cube will soon join the Rubik’s cube in the hall of stuff we used to use and now don’t remember why…</li>
<li><strong>Forecasting Is Not in a Slider:</strong> As we push more analytics into the category of self-service Business Intelligence, we need to give forecasting tools more imagination than a “slider”. This will only push folks back to the Excel spreadsheet where they have more control over variables and scenarios. However, forecasting can’t be so complex that the average user(s) cannot figure it out. Again, that will push more folks toward breaking with a central platform for the spreadmart.</li>
<li><strong>Advanced Analytics Are Here!</strong> As I said above, advanced analytics in the form of descriptive modeling, predictive analytics, and machine learning is here and in a form that business users can use. No longer are advanced analytics locked in a “vi editor” ( <em>talk about old school…</em> ) and a programming extension to the database engine. Advanced analytical features and products now have GUIs and wizards to help business analysts start down the path to data scientist-dom.</li>
<li><strong>More “Creepy” Will Accompany the “Cool”: </strong>Some of the best uses of analytics will be in those areas that sound “cool” until we think about how invasive they could be if used in the wrong hands. That’s the “creepy” factor &#8211; see <a href="http://www.dailymail.co.uk/news/article-2102859/How-Target-knows-shoppers-pregnant--figured-teen-father-did.html">Target</a> and <a href="http://www.bloomberg.com/news/2012-11-19/bionic-mannequins-spy-on-shoppers-to-boost-luxury-sales.html">Benetton</a>.  This is where ethics and the effective use of anonymization techniques will help to avoid …. err… minimize the “creepy” factors.</li>
</ul>
<p>What say the readers?</p>
<blockquote><p>Do you really like and want to keep your OLAP cubes? Is predicting importance of ‘advanced analytics’ like hitting water if I fall out of a boat? Do I trust companies too much with the “creepy” factors associated with privacy?</p></blockquote>
<p>Provide your comments below and/or ping me via twitter at <a href="http://twitter.com/johnlmyers44">@JohnLMyers44</a> with the hashtag <a href="https://twitter.com/search?q=%23100linesonBIDW&amp;src=typd">#100LinesOnBIDW</a>.</p>
<p>Next week, I will cover <strong>Knowledge Delivery </strong>and the future of the <a href="http://www.storytellingwithdata.com/2011/07/death-to-pie-charts.html">3D pie chart</a>…. (<em> not that anyone would have strong feelings about that topic&#8230;</em> )  I hope you continue the journey with me.</p>
<p>NOTE – For those unfamiliar with the song “<a href="http://en.wikipedia.org/wiki/88_Lines_About_44_Women">88 Lines about 44 Women</a>” by the Nails, I highly recommend you give it a try.  At the very least, it was the inspiration for this series of blogs.</p>
<div class="zemanta-pixie" style="height: 15px;margin-top: 10px"><img class="zemanta-pixie-img" style="border: currentColor;float: right" src="http://img.zemanta.com/pixy.gif?x-id=19d38b2c-0822-4fbd-bd3b-0bf416d4fe79" alt="" /></div>
]]></content:encoded>
			<wfw:commentRss>http://blogs.enterprisemanagement.com/johnmyers/2013/02/04/business-analytics-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Data Management in 2013: Warning of the Big Data Wolf</title>
		<link>http://blogs.enterprisemanagement.com/johnmyers/2013/01/28/warning-big-data-wolf-data-management-100-lines-25-business-intelligence/</link>
		<comments>http://blogs.enterprisemanagement.com/johnmyers/2013/01/28/warning-big-data-wolf-data-management-100-lines-25-business-intelligence/#comments</comments>
		<pubDate>Mon, 28 Jan 2013 14:18:05 +0000</pubDate>
		<dc:creator>John Myers</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Data Management]]></category>
		<category><![CDATA[Data Warehouse]]></category>
		<category><![CDATA[Big Data]]></category>
		<category><![CDATA[Data governance]]></category>
		<category><![CDATA[Data management]]></category>

		<guid isPermaLink="false">http://blogs.enterprisemanagement.com/johnmyers/?p=752</guid>
		<description><![CDATA[When Aesop created the fable about the shepherd boy who cried wolf, the message was clear: “How liars are not rewarded: even if they tell the truth, no one believes them” If analysts like myself and others as well as the mainstream press (ie Forbes, Harvard Business Review, Economist ) continue to shout about Big Data [...]]]></description>
			<content:encoded><![CDATA[<p>When Aesop created the fable about the shepherd boy who cried wolf, the message was clear:</p>
<blockquote><p><a href="http://en.wikipedia.org/wiki/The_Boy_Who_Cried_Wolf">“How liars are not rewarded: even if they tell the truth, no one believes them”</a></p></blockquote>
<p>If analysts like myself and others as well as the mainstream press (ie Forbes, <a href="http://hbr.org/2012/10/big-data-the-management-revolution/ar/1">Harvard Business Review</a>, <a href="http://www.economist.com/node/21554743">Economist</a> ) continue to shout about Big Data in Data Management and no one sees Big Data change, will we run out of credibility?</p>
<p><a href="http://blogs.enterprisemanagement.com/johnmyers/files/2013/01/emaBiContinuum_DataMgmt.jpg"><img class="aligncenter size-full wp-image-757" src="http://blogs.enterprisemanagement.com/johnmyers/files/2013/01/emaBiContinuum_DataMgmt.jpg" alt="" width="590" height="183" /></a></p>
<p>For 2013, I am saying that <strong>Data Management</strong> will be the most impacted area of the EMA Business Intelligence Continuum by the “wolf” that is Big Data…. And it’s a pretty big wolf.</p>
<ul>
<li><strong>Big data isn’t so big…. But, it is complex:</strong> We have all been inundated with information about Big Data and how Big it is. Well, in the <a href="http://www.enterprisemanagement.com/research/asset.php/2409/Big-Data-Comes-of-Age">EMA Study regarding Big Data</a> last year, end users across multiple industries said that Big Data wasn’t SOOO big that it couldn’t be handled by firms not named Facebook, WalMart, and CitiGroup. What EMA did learn was that Big Data was more complex than most thought, with various data sources and data management platforms playing a role in a new <a href="http://blogs.enterprisemanagement.com/shawnrogers/2012/05/31/complex-workloads-drive-big-data/">ecosystem. </a></li>
<li><strong>Relational isn’t dead: </strong>Just as the 2010-2012 news cycle might have you believe that Big Data was the only thing and that unstructured/multi-structured data was the only data associated with Big Data, you might have gotten the impression that relational/structured data was a thing of the past. That simply isn’t true. Structured relational data will continue to have a strong role in data management. However, it will no longer be the center of the data management world. It will be a partner to multi-structured data.</li>
<li><strong>Data governance MUST be redefined:</strong> Data governance is a favorite topic of mine. It can mean many things to many people. It can be Data Quality as in proper values by row and column. It can be Data Stewardship in terms of how metadata is managed and expressed. However, with multi-structured data and NoSQL becoming such a prominent force in data management, we need to change how Data governance is defined. We need to focus on data lineage or where data came from and its freshness as opposed to the values within row, columns or records. We need to focus on understanding data as it comes into data management platforms as opposed to keeping out only the “blessed” data.</li>
<li><strong>Schemas must be flexible: </strong>With the concept that data will have variable data structures when it is created and accepted into data management platforms, the schemas that support SQL and other structured access methods will need to be flexible vs rigid. Schemas were once used as gatekeeping devices to keep unworthy data out of relational data management platforms. Now schemas must move from the gatekeeper role to the end analytical lens role. We have the ability to process data on the fly and apply schemas later and later in the process. We need to have flexibility to make that happen and speed the implementation of operational and analytical processing.</li>
<li><strong>Data modelers must get into productization and less art: </strong>With the previous two trends for data management in 2013, the teams that will have the most adaption placed on them will be our data modelers. Just as data modeling underwent (and is still undergoing) a massive upheaval in the move from 3NF operational schemas to denormalized analytical schemas, we will ask data modelers to forsake a “perfect” living model for a series of “good enough” productized models. This may take some of the art out of data modeling in trade for speed of implementation of an iterative and componentized set of data models.</li>
</ul>
<p>What say the readers?</p>
<blockquote><p>Has big data been cried “wolf” too many times? Would your data stewards sooner quit than allow uncleansed data in your environments? Will data modelers accept changes to their job similar to what programmers did with object oriented coding? ETL developers did with the move away from hand coding?</p></blockquote>
<p>Provide your comments below and/or ping me via twitter at <a href="https://twitter.com/johnlmyers44">@JohnLMyers44</a> with the hashtag <a href="https://twitter.com/search?q=%23100LinesOnBIDW&amp;src=typd">#100LinesOnBIDW</a>.</p>
<p>Next week, I will cover <strong>Business Analytics</strong>….  I hope you continue the journey with me.</p>
<p>NOTE – For those unfamiliar with the song “<a href="http://en.wikipedia.org/wiki/88_Lines_About_44_Women">88Lines about 44 Women</a>” by the Nails, I highly recommend you give it a try.  At the very least, it was the inspiration for this series of blogs.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div class="zemanta-pixie" style="height: 15px;margin-top: 10px"><img class="zemanta-pixie-img" style="border: currentColor;float: right" src="http://img.zemanta.com/pixy.gif?x-id=db8a55eb-0e0b-4f45-aa80-8897fd1b6836" alt="" /></div>
]]></content:encoded>
			<wfw:commentRss>http://blogs.enterprisemanagement.com/johnmyers/2013/01/28/warning-big-data-wolf-data-management-100-lines-25-business-intelligence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Data Integration in 2013: Give us a platform and we will fill it</title>
		<link>http://blogs.enterprisemanagement.com/johnmyers/2013/01/21/data-integration-2013-give-platform-fill/</link>
		<comments>http://blogs.enterprisemanagement.com/johnmyers/2013/01/21/data-integration-2013-give-platform-fill/#comments</comments>
		<pubDate>Mon, 21 Jan 2013 22:06:28 +0000</pubDate>
		<dc:creator>John Myers</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Data Integration]]></category>
		<category><![CDATA[Data Warehouse]]></category>

		<guid isPermaLink="false">http://blogs.enterprisemanagement.com/johnmyers/?p=732</guid>
		<description><![CDATA[&#8220;Back in the day&#8221;, Pablo Picaso once said: Give me a museum and I&#8217;ll fill it. Data Integration in 2013 seems to follow along similar lines – Give us a Platform and we will fill it with data. This is part two of a series of blog postings on important topics for the world of [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;Back in the day&#8221;, Pablo Picaso once said:</p>
<blockquote><p><a href="http://www.brainyquote.com/quotes/quotes/p/pablopicas161535.html">Give me a museum and I&#8217;ll fill it.</a></p></blockquote>
<p>Data Integration in 2013 seems to follow along similar lines – Give us a Platform and we will fill it with data.</p>
<p>This is part two of a series of blog postings on important topics for the world of business intelligence and data warehousing for 2013.  While I wouldn’t call it my “predictions” for 2013, it is a listing of important topics and concepts for the domains of the EMA Business Intelligence Continuum.</p>
<p><a href="http://blogs.enterprisemanagement.com/johnmyers/files/2013/01/emaBiContinuum_DataAcquisition.jpg"><img class="aligncenter size-full wp-image-734" src="http://blogs.enterprisemanagement.com/johnmyers/files/2013/01/emaBiContinuum_DataAcquisition.jpg" alt="" width="590" height="183" /></a></p>
<p>This week’s installment is on Data Integration, which is the beginning of all environments – operational and analytical.  And, as I stated last week – data being the new oil of business – the integration with various data sources will be the key to creating impactful and value-added business intelligence environments.   Here are my thoughts for 2013 on bringing that “oil” into BI/DW.</p>
<p>&nbsp;</p>
<ul>
<li><strong>Data Integration is Becoming Standardized:</strong> Before the release of the Porsche Cayenne, I used to opine that “You could in fact tow a boat with a Porsche (then 911), but why would you want to?” The same applies to the world of data integration. In the past, hand coding in PERL and other languages was an option. However, I believe that for most organizations, toolsets that encapsulate hand coding from ETL professionals and others managing data integration environments should become the minimum standard.</li>
<li><strong>Let All The Data In: </strong>As we fully mature into the era of Big Data, the decision to allow only “blessed” data into our business intelligence and data warehousing environments will be a mistake. There will be too many business opportunities missed by using gating factors to keep certain data out of analytical environments. We should let all the data in and let the users, data scientists, and business analysts make the decision on the value of the data.</li>
<li><strong>Data Virtualization and ETL Need to Work Together: </strong>Lately, I have been teaching a class on Data Virtualization. Data Virtualization is nothing new, but it is making a comeback (DV vendors would probably prefer that, like LL Cool J, I don’t call it a comeback…) However, this comeback has put ETL professionals on edge. They view DV as a threat. However, these are complementary technologies that can and should be used together to maximize the value of data across the enterprise.</li>
<li><strong>Not Enough Room or Bandwidth is No Longer an Excuse:</strong> As mentioned above, all the data should be brought into our analytical environments, and not just the “blessed” versions. Since disk space and connectivity bandwidth prices have fallen and technology hurdles have been overcome, data integration teams can no longer reasonably use “disk space” or “bandwidth” as excuses to limit their activities. They should embrace the capacity they now enjoy to say “yes” rather than “no”.</li>
<li><strong>If You Thought this Crop of Big Data was Big…. :</strong> Back in the day, transactional data from the WalMart point of sale (POS) system or telecom networks was the original “Big Data”. We then linked people together with social platforms and we got “bigger” Big Data. HAH! Those two sources will be relatively small when we link the objects of our lives (i.e. cars, fridges, houses, cell phones, vans, etc.) together. Whether you call it “Internet of Things” or “Machine to Machine” (M2M), number, diversity and load from those data sources will really make data integration “fun”…errr… challenging.</li>
</ul>
<p>What say the readers?</p>
<blockquote><p>Have I missed something with hand coding in the age of Hadoop? Have I put too much stock on Big Data and not enough on Data Quality? Am I over-hyping the information in all that sensor data (<a href="http://www.guardian.co.uk/books/2012/nov/09/signal-and-noise-nate-silver-review">noise vs signal</a>)?</p></blockquote>
<p>Provide your comments below and/or ping me via twitter at <a href="http://www.twitter.com/johnlmyers44">@JohnLMyers44</a> with the hashtag <a href="https://twitter.com/search?q=%23100linesonBIDW&amp;src=typd">#100LinesOnBIDW</a>.</p>
<p>Next week, I will cover <strong>Data Management</strong>.  I hope you continue the journey with me.</p>
<p>NOTE – For those unfamiliar with the song “<a href="http://en.wikipedia.org/wiki/88_Lines_About_44_Women">88 Lines about 44 Women</a>” by the Nails, I highly recommend you give it a try.  At the very least, it was the inspiration for this series of blogs.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.enterprisemanagement.com/johnmyers/2013/01/21/data-integration-2013-give-platform-fill/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>100 Lines about 25 Business Intelligence Topics for 2013</title>
		<link>http://blogs.enterprisemanagement.com/johnmyers/2013/01/16/100-lines-25-business-intelligence-topics-2013/</link>
		<comments>http://blogs.enterprisemanagement.com/johnmyers/2013/01/16/100-lines-25-business-intelligence-topics-2013/#comments</comments>
		<pubDate>Wed, 16 Jan 2013 20:56:55 +0000</pubDate>
		<dc:creator>John Myers</dc:creator>
				<category><![CDATA[Advanced Analytics]]></category>
		<category><![CDATA[Big Data]]></category>
		<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Data Integration]]></category>
		<category><![CDATA[Data Visualization]]></category>
		<category><![CDATA[Data Warehouse]]></category>

		<guid isPermaLink="false">http://blogs.enterprisemanagement.com/johnmyers/?p=699</guid>
		<description><![CDATA[I have always loved the song “88 Lines about 44 Women” by the Nails.  And based on some recent success with a blogging topic relating to the songs of the 80s, I thought that I would continue that theme with “100 Lines about 25 Business Intelligence Topics”. Think of this list, or series of lists, [...]]]></description>
			<content:encoded><![CDATA[<p>I have always loved the song <a href="http://en.wikipedia.org/wiki/88_Lines_About_44_Women">“88 Lines about 44 Women”</a> by the Nails.  And based on some recent success with a blogging topic relating to the songs of the 80s, I thought that I would continue that theme with “100 Lines about 25 <a class="zem_slink" title="Business intelligence" rel="wikipedia" href="http://en.wikipedia.org/wiki/Business_intelligence" target="_blank">Business Intelligence</a> Topics”.  Think of this list, or series of lists, as a wide ranging set of predictions, topics for discussion and observations relating to the business intelligence and data warehousing domain for the upcoming year.</p>
<p>These topics will follow the “domains” and flow of the EMA Business Intelligence Continuum:</p>
<p><a href="http://blogs.enterprisemanagement.com/johnmyers/files/2013/01/emaBiContinuum2.jpg"><img class="aligncenter size-full wp-image-712" src="http://blogs.enterprisemanagement.com/johnmyers/files/2013/01/emaBiContinuum2.jpg" alt="" width="765" height="237" /></a></p>
<ul>
<li><strong>Data Acquisition: </strong>Bringing data into a business intelligence and data warehousing environment is the key to any analytical platform as I (as well as EMA’s BI/DW practice) consider data to the new oil for business. This also applies to integrating data for operational platforms such as enterprise resource planning (ERP) and customer relationship management (CRM)</li>
<li><strong>Data Management: </strong>Once you have that data in a particular environment or ecosystem, you need to manage that data. Whether it be “management” from a storage perspective (aka database management systems) or “management” from a governance perspective (aka data governance and data stewardship), this is an important area that will see growth in 2013.</li>
<li><strong>Business Analytics:</strong> Following on the “data is the new oil” concept from above, what you do with the data once you have it in your environment and under management/governance is as important as is refining oil into various petroleum products such as gasoline and jet fuel. Without that step, the data is just that…. data.</li>
<li><strong>Knowledge Delivery: </strong>While this particular “data geek” hates to admit it, you have to be oriented to a particular dataset to really get into the information. However, many folks either don’t have the time or the inclination to get invested in the tabular format of the data they are investigating. This is where the world of data visualization – reports, dashboards, etc. comes to play.</li>
<li><strong>Actionable Intelligence:</strong> You have analyzed the data. You have presented the data. Now what? If you don’t have a “call to action” or a process that can be impacted by the information in your data, have you really accomplished anything? Probably not. Moving decisions from “reading dashboard” and “send email” is an important and neglected area of BI/DW.</li>
</ul>
<p>Now, am I going to stake the “pink slip” for my car on these predictions coming true in 2013?  Probably not….  However, these are the topics that I think are important in these particular domains and should be discussed.</p>
<blockquote><p>&nbsp;</p>
<p>As such what do the readers think? Are these good divisions to discuss? Have I missed the “projections for 2013” bandwagon with a mid-January release?</p></blockquote>
<p>&nbsp;</p>
<p>I will start my series next week with <strong>Data Integration</strong>.  Come along for the journey.</p>
<p>Provide your comments below and/or ping me via twitter at <a href="http://twitter.com/johnlmyers44">@JohnLMyers44</a> with the hashtag <a href="https://twitter.com/search?q=%23100LinesOnBIDW&amp;src=typd">#100LinesOnBIDW</a>.  FYI &#8211; The lines per topic are as I put them in my text editor… Just like gas mileage, your line count results may vary….</p>
<p><em>NOTE – As I write this, I might just be writing 120 lines total including the descriptors above….  But who’s counting? </em></p>
<p>&nbsp;</p>
<div class="zemanta-pixie" style="height: 15px; margin-top: 10px;"><img class="zemanta-pixie-img" style="border: currentColor; float: right;" src="http://img.zemanta.com/pixy.gif?x-id=26d5cf7b-f228-4ee7-b973-edad94d6ba45" alt="" /></div>
]]></content:encoded>
			<wfw:commentRss>http://blogs.enterprisemanagement.com/johnmyers/2013/01/16/100-lines-25-business-intelligence-topics-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Big Data Is Not</title>
		<link>http://blogs.enterprisemanagement.com/johnmyers/2012/12/04/big-data/</link>
		<comments>http://blogs.enterprisemanagement.com/johnmyers/2012/12/04/big-data/#comments</comments>
		<pubDate>Wed, 05 Dec 2012 00:13:47 +0000</pubDate>
		<dc:creator>John Myers</dc:creator>
				<category><![CDATA[Big Data]]></category>
		<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Apache Hadoop]]></category>
		<category><![CDATA[Barry Devlin]]></category>
		<category><![CDATA[BigData]]></category>
		<category><![CDATA[EMA]]></category>
		<category><![CDATA[Shawn Rogers]]></category>

		<guid isPermaLink="false">http://blogs.enterprisemanagement.com/johnmyers/?p=684</guid>
		<description><![CDATA[Next week, EMA and 9sight will hold a webinar covering our Big Data research findings.  Among our insights will be that Big Data has evolved. Moving forward, Big Data isn’t: merely a technology definition solely Hadoop implementations just petabyte and above only used by Data Scientists Big Data is maturing to the point where business [...]]]></description>
			<content:encoded><![CDATA[<p>Next week, EMA and <a href="http://www.9sight.com/">9sight </a>will hold a <a href="http://research.enterprisemanagement.com/big-data-comes-of-age-ws.html">webinar</a> covering our <a href="http://www.enterprisemanagement.com/research/asset.php/2409/Big-Data-Comes-of-Age">Big Data research</a> findings.  Among our insights will be that Big Data has evolved.  Moving forward, Big Data isn’t:</p>
<ul>
<li>merely a technology definition</li>
<li>solely Hadoop implementations</li>
<li>just petabyte and above</li>
<li>only used by Data Scientists</li>
</ul>
<p>Big Data is maturing to the point where business use cases are becoming more important than technological platforms.</p>
<p>In fact, if there was a single takeaway from the EMA / 9sight Big Data Research findings, it is that there is now an ecosystem of platforms serving Big Data requirements.  This is as opposed to the concept of a single technology platform that can handle all of the requirements in a Big Data environment.   This maturing of the marketplace and developing nature of the business requirements for Big Data initiatives have resulted in what EMA calls the <a href="http://blogs.enterprisemanagement.com/shawnrogers/2012/04/16/embracing-hybrid-data-ecosystem/">Hybrid Data Ecosystem</a>.</p>
<p><a href="http://blogs.enterprisemanagement.com/johnmyers/files/2012/12/HDE.jpg"><img class="alignnone size-medium wp-image-685" src="http://blogs.enterprisemanagement.com/johnmyers/files/2012/12/HDE-300x235.jpg" alt="" width="300" height="235" /></a></p>
<p>The technical aspects of Hybrid Data Ecosystem have been in place for some time.  However, the business applications of Big Data initiatives are just beginning to develop and be adopted by a wider set of industries.  It is clear that there are certain industry segments that are leading the way for Big Data implementations.  Innovators include Media and PR, Retail and Leisure.  The Finance and Industrial industry segments exemplify the Early Adopters.  Yet, it is the Early Majority and Late Majority Adopters who will be looking not just for technical implementations, but also for specific and attainable business use cases to support their implementations.</p>
<p>Join <a href="http://www.enterprisemanagement.com/about/team/Shawn_Rogers.php">Shawn Rogers</a>, <a href="http://www.9sight.com/index.htm">Barry Devlin </a>and me on December 13th for more information about the Big Data research results and for a live “Q and A” session with your questions about Big Data.</p>
<p>&nbsp;</p>
<div class="zemanta-pixie" style="height: 15px;margin-top: 10px"><img class="zemanta-pixie-img" style="border: currentColor;float: right" src="http://img.zemanta.com/pixy.gif?x-id=1fd4af13-9ce1-42d8-a459-d3b8dae16aee" alt="" /></div>
]]></content:encoded>
			<wfw:commentRss>http://blogs.enterprisemanagement.com/johnmyers/2012/12/04/big-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Phish-ing for New Operational Revenues</title>
		<link>http://blogs.enterprisemanagement.com/johnmyers/2012/03/07/phishing-operational-revenues/</link>
		<comments>http://blogs.enterprisemanagement.com/johnmyers/2012/03/07/phishing-operational-revenues/#comments</comments>
		<pubDate>Wed, 07 Mar 2012 17:11:06 +0000</pubDate>
		<dc:creator>John Myers</dc:creator>
				<category><![CDATA[Advanced Analytics]]></category>
		<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Customer Experience Management]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[Intelligence Operations Center]]></category>
		<category><![CDATA[IOC]]></category>
		<category><![CDATA[Miami Dolphins]]></category>
		<category><![CDATA[Sun Life Stadium]]></category>

		<guid isPermaLink="false">http://blogs.enterprisemanagement.com/johnmyers/?p=673</guid>
		<description><![CDATA[Miami Dolphins, Sun Life Stadium and IBM Intelligence Operations Center Last September, Forbes Magazine published its 2011 ranking of the NFL’s Most Valuable Teams. Forbes gives detailed financial information on why NFL franchise values are “only” growing by 1.4%. The article notes that operating costs for NFL franchises are rising. This increase is due to: [...]]]></description>
			<content:encoded><![CDATA[<h2><span style="color: #333399">Miami Dolphins, Sun Life Stadium and IBM Intelligence Operations Center</span></h2>
<p>Last September, <a href="http://www.forbes.com/lists/2011/30/nfl-valuations-11_land.html">Forbes Magazine published its 2011 ranking</a> of the NFL’s Most Valuable Teams.  Forbes gives detailed financial information on why NFL franchise <a href="http://www.forbes.com/sites/kurtbadenhausen/2011/09/07/the-nfls-most-valuable-teams/">values are “only” growing by 1.4%</a>.  The article notes that operating costs for NFL franchises are rising.  This increase is due to:</p>
<ul>
<li>Increased costs due to stadium management and employee expenses</li>
<li>Expanded marketing expense due to poor economic conditions</li>
</ul>
<p>These increases are not massive issues for NFL teams when you look at them in isolation.  However, when you link these changes in operating costs with <a href="http://www.usatoday.com/sports/football/nfl/2010-08-31-nfl-hd-tv-stadium-or-living-room_N.htm">recent drops in attendance at NFL games</a> and associated operating revenue &#8211; two trends that negatively impact team and/or stadium operating margin emerge.  For majority of NFL teams and stadium operators, this is a situation that requires attention.</p>
<h3><span style="color: #333399">Home Game vs. Games at Home</span></h3>
<p>Exacerbating the operating margin problem is the trend of fans staying home to watch games.   At one time, the best “game experience” was at the stadium.  This is no longer the case.  Three technology advances have served to “encourage” fans to stay home:</p>
<ul>
<li>Advances in HDTV video quality and availability</li>
<li>Access to near real-time replay and scoring information via cable/satellite and internet video</li>
<li>Popularity of on-demand fantasy football scoring web updates</li>
</ul>
<p>NFL teams and stadium operators are looking for ways to combat these advances and raise stadium operating revenues.  These include ticket revenue, parking and food and beverage concessions.  To complicate these matters, teams and stadium operators are up against competing against some of their own league-branded offerings.  For example, NFL RedZone and NFL.com Fantasy Football are two examples.</p>
<h3><span style="color: #333399">Miami’s Approach</span></h3>
<p>The <a href="http://www.forbes.com/lists/2011/30/nfl-valuations-11_Miami-Dolphins_303017.html">Miami Dolphins</a> and <a href="http://www.sunlifestadium.com/">Sun Life Stadium</a> are attempting to improve their operating margins via heightening their fans’ customer experience by optimizing stadium operations.   <a href="http://www.prnewswire.com/news-releases/miami-dolphins-transform-sun-life-stadium-into-an-entertainment-destination-for-fans-with-ibm-solutions-for-smarter-cities-140680853.html">Sun Life Stadium is implementing IBM’s Intelligence Operations Center</a> solution.  The <a href="http://www-01.ibm.com/software/industry/intelligent-oper-center/">IBM IOC</a> will enable the Dolphins and Sun Life Stadium to manage traffic congestion into and out of stadium parking lots; anticipate chokepoints at stadium entrances; and manage food and beverage distribution to make the fans’ experience worth the added time and dollar investment of coming to the stadium.</p>
<h3><span style="color: #333399">Cloud’s Silver Lining</span></h3>
<p>With the operational margin and customer experience challenges, Miami has an additional issue.  With the move to a new stadium and the re-branding of the Florida Marlins (now Miami Marlins), Sun Life Stadium is attempting to improve operating margins even though it has lost over 80 event dates against which to balance operational improvement investments.  To combat this situation, Sun Life Stadium has chosen a cloud-based IBM IOC implementation that allows Sun Life Stadium to better manage its technology costs per event.  Instead of 90+ major sporting events (10 NFL pre- and regular season / 81-83 MLB pre- and regular season), 2012 will feature only 10 scheduled NFL sporting events (not including post-season).  Utilizing cloud-based operational expense models will lower fixed technology expenses.  This will be critical to avoid excessive focus on implementation infrastructure costs in the form of servers and licensed software and not enough emphasis on the results of fan experience improvements.</p>
<h3><span style="color: #333399">Associated EMA IBM IOC Content:</span></h3>
<p><a href="http://www.enterprisemanagement.com/research/asset.php/2209/Focus-On-The-Forest-Rather-Than-The-Trees:-IBM-Smarter-Cities-China">Focus On The Forest Rather Than The Trees: IBM Smarter Cities China</a></p>
<h6 class="zemanta-related-title" style="font-size: 1em"><span style="color: #333399">Related articles</span></h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.mobilemarketingwatch.com/miami-dolphins-score-with-concerted-mobile-effort-21475/" target="_blank">Miami Dolphins Score With Concerted Mobile Effort</a> (mobilemarketingwatch.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.pcworld.com/article/250934/miami_dolphins_dive_into_cloud_analytics.html" target="_blank">Miami Dolphins Dive Into Cloud Analytics</a> (pcworld.com)</li>
</ul>
<div class="zemanta-pixie" style="height: 15px;margin-top: 10px"><img class="zemanta-pixie-img" style="border: currentColor;float: right" src="http://img.zemanta.com/pixy.gif?x-id=c12d2167-d08b-405d-961d-2e0767d266fc" alt="" /></div>
]]></content:encoded>
			<wfw:commentRss>http://blogs.enterprisemanagement.com/johnmyers/2012/03/07/phishing-operational-revenues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is there a NoSQL Identity Crisis</title>
		<link>http://blogs.enterprisemanagement.com/johnmyers/2012/02/28/nosql-identity-crisis/</link>
		<comments>http://blogs.enterprisemanagement.com/johnmyers/2012/02/28/nosql-identity-crisis/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 19:00:46 +0000</pubDate>
		<dc:creator>John Myers</dc:creator>
				<category><![CDATA[Big Data]]></category>
		<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[ACID]]></category>
		<category><![CDATA[NoSQL]]></category>

		<guid isPermaLink="false">http://blogs.enterprisemanagement.com/johnmyers/?p=659</guid>
		<description><![CDATA[As Big Data initiatives mature into enterprise data sources supported by NoSQL products for analytics and operational systems, a clash of cultures is on the horizon (if not here already). Traditional IT implementations teams and their top-down programs rarely see eye to eye with the grass roots culture of NoSQL platform operators. But this divide [...]]]></description>
			<content:encoded><![CDATA[<p>As Big Data initiatives mature into enterprise data sources supported by NoSQL products for analytics and operational systems, a clash of cultures is on the horizon (if not here already).  Traditional IT implementations teams and their top-down programs rarely see eye to eye with the grass roots culture of NoSQL platform operators.  But this divide is not merely between the camps of Big Data/NoSQL and traditional IT implementation teams.  This is just the tip of the iceberg…. The divide becomes much more pronounced when you take the discussion to the executive suite.  CMOs and CFOs, who “own” results of analytical and operational systems, are less concerned with data center standards and development methodologies as they time to value. CIOs and CTOs, responsible for implementing the connectivity and integration between NoSQL platforms and the rest of the traditional IT environment, are facing pressures to avoid chasing the latest technology fad(s).</p>
<h3><span style="color: #003300">Maturing NoSQL Product Features</span></h3>
<p>However, it seems that at least for now, the NoSQL vendors are trying to avoid a head-to-head battle between business and IT by making their product offerings more “compliant” with existing IT standards and integration stacks.  Here are some examples:</p>
<ul>
<li>Traditional RDBMS or Analytical players integrating NoSQL (read unstructured) data access into their existing SQL structures to utilize existing connectivity infrastructures</li>
<li>Rising importance of <a href="http://en.wikipedia.org/wiki/ACID">ACID </a>database characteristics</li>
<li>Development of management consoles to remove the “manual” aspects of NoSQL management.  The interfaces on these management consoles are looking more like what existing DBAs expect from traditional RDBMS management features.</li>
</ul>
<blockquote><p><strong><span style="color: #0000ff">Are NoSQL platforms losing their “developer” identity and becoming traditional RDBMS but with a different data storage layer?</span></strong></p></blockquote>
<p>Or</p>
<blockquote><p><strong><span style="color: #0000ff">Are NoSQL platforms maturing to meet the needs of IT department data management standards?</span></strong></p></blockquote>
<p>Post your comments below or ping me via twitter ( <a href="http://twitter.com/#!/johnlmyers44">@JohnLMyers44</a> ) me directly.</p>
<h3><span style="color: #333300">Related EMA Content</span></h3>
<p><a href="http://blogs.enterprisemanagement.com/johnmyers/2012/01/17/nonsequitor-nosql/">Non-Sequitor in NoSQL<br />
</a><a href="http://blogs.enterprisemanagement.com/johnmyers/2012/02/09/nosql-implementation-drivers/">NoSQL Implementation Drivers<br />
</a></p>
<div class="zemanta-pixie" style="height: 15px;margin-top: 10px"><img class="zemanta-pixie-img" style="border: currentColor;float: right" src="http://img.zemanta.com/pixy.gif?x-id=7ed8bdcc-5b0f-4692-a3f2-81ec216f1728" alt="" /></div>
]]></content:encoded>
			<wfw:commentRss>http://blogs.enterprisemanagement.com/johnmyers/2012/02/28/nosql-identity-crisis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
