<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2061295279717545721</id><updated>2024-10-31T23:37:21.855-07:00</updated><title type='text'>Kristin Ferrier&#39;s Business Intelligence Blog</title><subtitle type='html'>My Journey with Data and Analytics</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://www.kristinferrier.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default?redirect=false'/><link rel='alternate' type='text/html' href='http://www.kristinferrier.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default?start-index=26&amp;max-results=25&amp;redirect=false'/><author><name>K. Ferrier</name><uri>http://www.blogger.com/profile/05041926877318330498</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7VRl2d9TvPoqL39t-OsEEKZNzfecnq633_-vKe7rQSiIe-QdywMNb9cKt7O3HFVCZZA6BEElASUU7b2Fg3mrNI3c-dOnOLSORwcW0BR70hJ7aMB9ycr9mR5nzSsdxx2M/s1600/*'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>45</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2061295279717545721.post-6947724660569381909</id><published>2015-01-12T18:08:00.001-08:00</published><updated>2015-01-12T18:18:01.893-08:00</updated><title type='text'>Intro to HiveQL</title><content type='html'>&lt;br /&gt;
Tonight I had the opportunity to share some of what I&#39;ve learned about Big Data at the &lt;a href=&quot;http://okcsql.org/&quot; target=&quot;_blank&quot;&gt;OKCSQL&lt;/a&gt; user group with an Introduction to HiveQL presentation.&lt;br /&gt;
&lt;br /&gt;
My slides are available &lt;a href=&quot;http://www.slideshare.net/kristinferrier/introduction-to-hiveql&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Here&#39;s some background on why I got together the presentation:&lt;br /&gt;
&lt;br /&gt;
Even with all the attention Big Data has been getting over the past few 
years, I had been finding it difficult to find a quick explanation of 
Hadoop at a very high level and a way to easily get started. Oftentimes presenters would start out with a slide showing what seemed like 20+ Hadoop components. Other times I heard about Hadoop, it seemed like you needed to know Linux and Java. I, also, once heard it recommended that I get a laptop with certain specs. Such a laptop would have been $3,000+. Getting started can be so much simpler and cheaper, though. I started out using a laptop from 2010 and running the &lt;a href=&quot;http://www.hortonworks.com/sandbox&quot; target=&quot;_blank&quot;&gt;Hortonworks Sandbox&lt;/a&gt;, which has a Hadoop implementation you can access. Hortonworks has some great tutorials that can get you started. If you&#39;re looking to get started learning Hadoop, this can be a great starting place.</content><link rel='replies' type='application/atom+xml' href='http://www.kristinferrier.com/feeds/6947724660569381909/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2061295279717545721/6947724660569381909' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/6947724660569381909'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/6947724660569381909'/><link rel='alternate' type='text/html' href='http://www.kristinferrier.com/2015/01/intro-to-hiveql.html' title='Intro to HiveQL'/><author><name>K. Ferrier</name><uri>http://www.blogger.com/profile/05041926877318330498</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7VRl2d9TvPoqL39t-OsEEKZNzfecnq633_-vKe7rQSiIe-QdywMNb9cKt7O3HFVCZZA6BEElASUU7b2Fg3mrNI3c-dOnOLSORwcW0BR70hJ7aMB9ycr9mR5nzSsdxx2M/s1600/*'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2061295279717545721.post-5155266135480983726</id><published>2014-07-25T16:07:00.000-07:00</published><updated>2014-07-25T16:07:48.031-07:00</updated><title type='text'>SQL Server RIGHT, LEFT, SUBSTRING vs. Oracle SUBSTR</title><content type='html'>I&#39;ve been doing a lot of data analysis in both SQL Server and Oracle lately. Thus, it seemed like a good time for another SQL Server vs. Oracle differences post.&lt;br /&gt;
&lt;br /&gt;
If you&#39;ve first worked with SQL Server and then Oracle, you&#39;ve probably looked for either the RIGHT or LEFT function in Oracle and been unable to find it. Instead Oracle has a powerful SUBSTR function that covers RIGHT, LEFT, and SUBSTRING from SQL Server. Below are some examples.&lt;br /&gt;
&lt;br /&gt;
1) &lt;strong&gt;Get right four characters&lt;/strong&gt; from a string.&lt;br /&gt;
&lt;br /&gt;
SQL Server&lt;br /&gt;
Query: SELECT &lt;strong&gt;RIGHT&lt;/strong&gt;(&#39;My favorite year is 1998&#39;, 4);&lt;br /&gt;
Result: 1998&lt;br /&gt;
&lt;br /&gt;
Oracle&lt;br /&gt;
Query: SELECT &lt;strong&gt;SUBSTR&lt;/strong&gt;(&#39;My favorite year is 1998&#39;, -4) FROM DUAL;&lt;br /&gt;
&lt;br /&gt;
Note: Oracle allows a negative starting position with SUBSTR, thus allowing it to mimic the SQL Server RIGHT function. &lt;br /&gt;
&lt;br /&gt;
2) &lt;strong&gt;Get left 18 characters&lt;/strong&gt; from a string.&lt;br /&gt;
&lt;br /&gt;
SQL Server&lt;br /&gt;
Query: SELECT &lt;strong&gt;LEFT&lt;/strong&gt;(&#39;Bricktown is super and fun&#39;, 18);&lt;br /&gt;
Result: Bricktown is super&lt;br /&gt;
&lt;br /&gt;
Oracle&lt;br /&gt;
Query: SELECT &lt;strong&gt;SUBSTR&lt;/strong&gt;(&#39;Bricktown is super and fun&#39;, 1, 18) FROM DUAL;&lt;br /&gt;
Result: Bricktown is super&lt;br /&gt;
&lt;br /&gt;
3) &lt;strong&gt;Get 14 characters starting at character 11&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
SQL Server&lt;br /&gt;
Query: SELECT &lt;strong&gt;SUBSTRING&lt;/strong&gt;(&#39;The state Hawaii is warm and sunny&#39;, 11, 14);&lt;br /&gt;
Result: Hawaii is warm&lt;br /&gt;
&lt;br /&gt;
Oracle: SELECT &lt;strong&gt;SUBSTR&lt;/strong&gt;(&#39;The state Hawaii is warm and sunny&#39;, 11, 14) FROM DUAL;&lt;br /&gt;
Result: Hawaii is warm&lt;br /&gt;
&lt;br /&gt;
Note: SQL Server&#39;s SUBSTRING function requires 3 arguments. &lt;br /&gt;
&lt;br /&gt;
There you have it. Both the SQL Server and Oracle functions are pretty easy to use, as long as you can remember the syntax for the database you are using. </content><link rel='replies' type='application/atom+xml' href='http://www.kristinferrier.com/feeds/5155266135480983726/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2061295279717545721/5155266135480983726' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/5155266135480983726'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/5155266135480983726'/><link rel='alternate' type='text/html' href='http://www.kristinferrier.com/2014/07/sql-server-right-left-substring-vs.html' title='SQL Server RIGHT, LEFT, SUBSTRING vs. Oracle SUBSTR'/><author><name>K. Ferrier</name><uri>http://www.blogger.com/profile/05041926877318330498</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7VRl2d9TvPoqL39t-OsEEKZNzfecnq633_-vKe7rQSiIe-QdywMNb9cKt7O3HFVCZZA6BEElASUU7b2Fg3mrNI3c-dOnOLSORwcW0BR70hJ7aMB9ycr9mR5nzSsdxx2M/s1600/*'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2061295279717545721.post-8319107829328857093</id><published>2013-12-17T19:59:00.000-08:00</published><updated>2013-12-17T19:59:23.724-08:00</updated><title type='text'>My First Pass Summit - Part 2</title><content type='html'>Part 1 of this post is available &lt;a href=&quot;http://www.kristinferrier.com/2013/11/my-first-pass-summit-part-1-monday-and.html&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;&lt;b&gt;.&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;Wednesday - Sessions and Exhibitor Reception&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;br /&gt;
By
 the time Wednesday came, it was hard for me to comprehend that we were 
just officially starting the educational content of the core Summit. I&#39;d
 already had an amazing two days on Monday and Tuesday.&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;i&gt;Sessions &lt;/i&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
My first session was Erin Welker&#39;s &lt;i&gt;BI Best Practices: The Good, the Bad, and the Ugly&lt;/i&gt;.&lt;i&gt; &lt;/i&gt;This
 session ended up being the most valuable to me with respect to my 
current job. I&#39;m currently a data designer for a major module of new 
data coming into our data warehouse. My job includes not only designing 
the data warehouse structures related to this new project but also 
includes interactions with the business. Erin covered some of both in her session.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhDG5yHNQua1qrwmgmxlv2LAdXZiCWa-DZgz176_wfCJXALAvVfRvn4yWvITiLQG9zzLwvkHgMeP_T17ofK81GPz4DwJ0y_pfth7Zxcj5wwy_USEtA9IpkS1qaud47yjE22vjZM0xW6CTkR/s1600/2013-10-16_10-17-58_363.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;180&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhDG5yHNQua1qrwmgmxlv2LAdXZiCWa-DZgz176_wfCJXALAvVfRvn4yWvITiLQG9zzLwvkHgMeP_T17ofK81GPz4DwJ0y_pfth7Zxcj5wwy_USEtA9IpkS1qaud47yjE22vjZM0xW6CTkR/s320/2013-10-16_10-17-58_363.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&amp;nbsp;Erin Welker presenting on &lt;i&gt;BI Best Practices: The Good, the Bad, and the Ugly&lt;/i&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiDw0m44sn5QH8p9LVQB-g0ptIX82uydBvQYEnBq3tOx6D62eC5ujV1tT1D3CZoo8bS2fg9x89tqvxq1x3Q4SPKk0OkJbNHGG_ERRwhjSCOrtdxCUEJ2etnfr_Wv1KKSWefa5kuWyNsf8va/s1600/2013-10-16_10-02-30_909.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;180&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiDw0m44sn5QH8p9LVQB-g0ptIX82uydBvQYEnBq3tOx6D62eC5ujV1tT1D3CZoo8bS2fg9x89tqvxq1x3Q4SPKk0OkJbNHGG_ERRwhjSCOrtdxCUEJ2etnfr_Wv1KKSWefa5kuWyNsf8va/s320/2013-10-16_10-02-30_909.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
Packed house for my first ever Summit Session to attend!&lt;i&gt; &lt;/i&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;i&gt;Exhibitor Reception&lt;/i&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
The
 highlight of this evening event was a 30 minute Hadoop session that Hortonworks
 presented. They called it a demo, but it really was an excellent 
30-minute Hadoop session&lt;b&gt; &lt;/b&gt;that gave a great high level explanation of 
Hadoop. It&#39;s the &lt;b&gt;best high level overview of Hadoop that I&#39;ve personally
 seen&lt;/b&gt; and a few others mentioned that to me, as well. I was impressed 
enough by the session that I spoke to one of the Hortonworks 
representatives about possibly giving this presentation to OKCSQL. 
Bonus: Attendees of the &quot;demo&quot; got a free stuffed Hortonworks elephant. 
It was my favorite swag from any of the vendors.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Special thanks to Dell, Idera, and FatCloud 
who gave my husband swag even though his PASS Summit Guest Badge was
 not scannable.&lt;/b&gt; I.e. they weren&#39;t getting any contact information from 
him. Note: none of the guest badges were scannable.&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;Thursday - Sessions, WIT Panel, and Community Appreciation Party&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;i&gt;Sessions&lt;/i&gt;&lt;/span&gt;&lt;b&gt; &lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
My favorite session of the day was &lt;i&gt;Power BI: Modern Device and Data Search Experiences&lt;/i&gt;&lt;b&gt; &lt;/b&gt;by
 Adam Wilson and Amy Forstrom from Microsoft. This mostly demystified 
the magic of Power BI Q&amp;amp;A. I talk more about their session in my 
blog post &lt;a href=&quot;http://www.kristinferrier.com/2013/10/power-bi-lastest-from-summit.html&quot; target=&quot;_blank&quot;&gt;Power BI - The Latest from Summit&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;i&gt;Women in Technology Panel&amp;nbsp;&lt;/i&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
This panel on &lt;i&gt;Beyond Stereotypes: Equality, Gender, Neutrality, and Valuing Diversity &lt;/i&gt;was probably the most valuable session I attended during the entire event. There was some amazing discussion during this one hour panel. The entire panel is available &lt;a href=&quot;http://www.sqlpass.org/summit/2013/PASStv.aspx?watch=GcIWhZV02co&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;. This panel went beyond gender stereotypes to talk about diversity in general. It included discussions about people being excluded or shunned by being &quot;different&quot; from the social norm of their employer. For example, you&#39;re into &quot;geeky&quot; things but work in a &quot;non-geeky&quot; field. Discussion included how to handle certain kinds of scenarios when diversity is not being accepted.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgmgAnLPcdZgtUmSutDkiKTe1-e8cTiAK8pVWV4VOnxQDKSLueGkPCoitGnBId9mS_QcUG8QCvwQmA7d7jZHo5E917citmOVeLi-6zKESuKqKae83AVJOaK5CnhtlF_UuTZd2cuTxDyPVh9/s1600/2013-10-17_12-10-19_343.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;182&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgmgAnLPcdZgtUmSutDkiKTe1-e8cTiAK8pVWV4VOnxQDKSLueGkPCoitGnBId9mS_QcUG8QCvwQmA7d7jZHo5E917citmOVeLi-6zKESuKqKae83AVJOaK5CnhtlF_UuTZd2cuTxDyPVh9/s320/2013-10-17_12-10-19_343.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh0iYG-Cyx-YowPTW0LLTuS-L60G6B7TBPNLnjS7l9FMKtLRTT1dWCnC9zLjCiPWu8waj9LB6wlI-JpRgttPdos9Ap3rNhE2ZhyvqGzmLrGe-WTlPHbhQhiqY_TkHWj51SXenUjXAmNXUAP/s1600/2013-10-17_12-10-19_343.jpg&quot; imageanchor=&quot;1&quot; style=&quot;clear: right; float: right; margin-bottom: 1em; margin-left: 1em;&quot;&gt;&lt;/a&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhadgrPRVdT79EVO0Bt1B_GHJjT3hB-A3XeCO3YQSwpFsmxXX_skcGIhKCLvYMDWuHJaGS1bI8LHNhcHWIA5KEGwHzXCFJMHKpDgFNrqH244OhwTK6fkKl5LpqgQ_6ZRgDu24sq4fzbsKA3/s1600/2013-10-17_13-20-39_874.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhadgrPRVdT79EVO0Bt1B_GHJjT3hB-A3XeCO3YQSwpFsmxXX_skcGIhKCLvYMDWuHJaGS1bI8LHNhcHWIA5KEGwHzXCFJMHKpDgFNrqH244OhwTK6fkKl5LpqgQ_6ZRgDu24sq4fzbsKA3/s320/2013-10-17_13-20-39_874.jpg&quot; width=&quot;180&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
With WIT Panel member Gail Shaw.&amp;nbsp;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
Next year I&#39;m bringing one of my Star Wars shirts!&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;i&gt;Community Appreciation Party&lt;/i&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
We had access to the NASCAR Hall of Fame from 7:00 p.m. - 10:00 p.m. for what turned out to be one of my favorite nights.&lt;br /&gt;
&lt;br /&gt;
First,
 I got an awesome, free caricature done while my husband was in the food
 line. The caricature finished right before he got to the buffet.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi40Fk8hqD6dZvDTFBv9_Gp0p35kYA8L-iax6z3jMaHF5-vaOUavxP2p0d5cBtnYeREgPiaANqTKr2ecOPa1afsLOto_oq_2cpCgldrM2p7o60UGSlfqvYPhol9K0YNtBI9euRS1rW_-lfm/s1600/2013-10-17_22-11-19_974.jpg&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;182&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi40Fk8hqD6dZvDTFBv9_Gp0p35kYA8L-iax6z3jMaHF5-vaOUavxP2p0d5cBtnYeREgPiaANqTKr2ecOPa1afsLOto_oq_2cpCgldrM2p7o60UGSlfqvYPhol9K0YNtBI9euRS1rW_-lfm/s320/2013-10-17_22-11-19_974.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&amp;nbsp;Look I&#39;m a race car driver!&lt;/div&gt;
&lt;br /&gt;
Second,
 I met some amazing people and had some great conversations! Once we got
 our food, we stood around one of the small tables and ate. Various 
people would come and go from the table. This led to great discussion 
with a lot of different people. One of the longer conversations was with
 Yaxing Liu from North Carolina who is interested in possibly starting a
 PASS Chapter. She&#39;s been running a virtual SQL group via Meetup for 
awhile now with consistent membership. Thus, we spoke for awhile about 
chapter leadership. We&#39;ve already been in contact post-Summit, as I got her in contact with Karla Landrum.&lt;br /&gt;
&lt;br /&gt;
Third, I had even more great conversations. One of my favorite conversations was with fellow science fiction fan &lt;a href=&quot;https://twitter.com/SlocumMatt&quot; target=&quot;_blank&quot;&gt;Matt Slocum&lt;/a&gt;.
 I think his shirt caught my attention, but I really don&#39;t remember 
exactly why we started talking. We talked about a variety of science 
fiction shows that we both like, and he even recommended The 4400 to my 
husband and I. My husband and I actually started watching it the day 
after we got back from Summit. Since then (by end of November), we&#39;ve watched the entire series, all 45 episodes. &lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj_DNZbuvFMiKC_8B_bGqfI2Zh5bzPks0Ajd-dpEzAFIZGIy9zPURPQF3n0it5Bm87QRCN7aMqKydrXkcp6yNOv5fwA2wSJZrKoKuYdnXUYOtYb-BpLtNYz6S612ID1eBflpMRT7_wREGVR/s1600/2013-10-17_21-09-43_577.jpg&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;400&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj_DNZbuvFMiKC_8B_bGqfI2Zh5bzPks0Ajd-dpEzAFIZGIy9zPURPQF3n0it5Bm87QRCN7aMqKydrXkcp6yNOv5fwA2wSJZrKoKuYdnXUYOtYb-BpLtNYz6S612ID1eBflpMRT7_wREGVR/s400/2013-10-17_21-09-43_577.jpg&quot; width=&quot;225&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
Hanging with my new science fiction buddy Matt Slocum&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhsbZTiaJFKFQhdiL-yk5p2-Ln0lj-1y5HNNfQp6i3ZbCUAO-8DJ5eRkoMmzPVpSFi5P8WnTizc1IrJxgU-V4Hjq678FQj3aY9p2pPOb9rVnlIE8b_s-TeRcCJbx3Rl__P3Ht9dSRYcI0DX/s1600/2013-10-17_21-18-46_726.jpg&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;225&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhsbZTiaJFKFQhdiL-yk5p2-Ln0lj-1y5HNNfQp6i3ZbCUAO-8DJ5eRkoMmzPVpSFi5P8WnTizc1IrJxgU-V4Hjq678FQj3aY9p2pPOb9rVnlIE8b_s-TeRcCJbx3Rl__P3Ht9dSRYcI0DX/s400/2013-10-17_21-18-46_726.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
With my wonderful husband!!!&lt;/div&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span style=&quot;font-weight: normal;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Friday - Sessions and PASS Board Q&amp;amp;A&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;i&gt;Sessions&lt;/i&gt;&lt;/span&gt;&lt;br /&gt;
I was really tired by Friday morning, and there was still another full day of sessions left. I actually made most of Rob Farley&#39;s 8 a.m. session, which meant I was on track to be able to attend several sessions. I did notice that the final two sessions of the day had lower than normal attendance, as many people were already heading home. &lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;i&gt;PASS Board Q&amp;amp;A&lt;/i&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Going into Summit, I didn&#39;t even know there would be a PASS Board Q&amp;amp;A, but Andy Warren saw me and encouraged me to attend&lt;i&gt;&lt;b&gt;. &lt;/b&gt;&lt;/i&gt;The first thing I learned is that there are 14 directors, including two each from founding partners Computer Associates and Microsoft. I knew Microsoft was involved, but I had no idea that CA was a founding partner of PASS. There were some great questions asked by the audience, and I liked seeing the board do their best to answer them.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhY5LPnXLiOirjEr9lgUIXSmjS4mfck2it1izC4x1bJiYhFaO0DcrFlTa8qrglPIl9ygKsD9cI6US-6HJIHIMOC8CdRRWwyZDse77A7eZsOCCwaXbG2Mz0os0r-k8e7yLvJyWtH936FYhUY/s1600/2013-10-18_13-05-54_907.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;225&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhY5LPnXLiOirjEr9lgUIXSmjS4mfck2it1izC4x1bJiYhFaO0DcrFlTa8qrglPIl9ygKsD9cI6US-6HJIHIMOC8CdRRWwyZDse77A7eZsOCCwaXbG2Mz0os0r-k8e7yLvJyWtH936FYhUY/s400/2013-10-18_13-05-54_907.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
By the time the final session regular session ended on Friday, I was completely exhausted, so I headed back to the hotel room and stayed there until time to fly out the following morning.&lt;br /&gt;
&lt;br /&gt;
I met so many great people that I haven&#39;t had a chance to follow-up with everyone I want to.&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span style=&quot;font-weight: normal;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Advice I&#39;m glad I took for this year&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;br /&gt;
&lt;b&gt;Attend the first-timers orientation - &lt;/b&gt;I
 considered skipping this event. I&#39;d read tons of Summit advice blog posts and
 had been to SQL Rally. Other people had given me in-person advice, as 
well. This event was very much worth it. I received some excellent 
advice like getting to your sessions early, since they sometimes fill 
up.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Bring an empty suitcase for swag&lt;/b&gt; -&amp;nbsp; This was definitely worth it!&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg7vaTqoIdjF9nu4f-FP7T7yBey8vIgNbDG6m4nyCoAYItDKos_TBhElK_mUOOBHRA6vYPGXVXP62l0-KVfLncSHO7HYVD7ZmxtzWNUGa5YjWBOjZVedPsdGFuL5xzjB2bslEDOhGhRLzu1/s1600/2013-10-18_17-52-18_188.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;228&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg7vaTqoIdjF9nu4f-FP7T7yBey8vIgNbDG6m4nyCoAYItDKos_TBhElK_mUOOBHRA6vYPGXVXP62l0-KVfLncSHO7HYVD7ZmxtzWNUGa5YjWBOjZVedPsdGFuL5xzjB2bslEDOhGhRLzu1/s400/2013-10-18_17-52-18_188.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&amp;nbsp;This bag was empty when we brought it and full of free swag when we took it home!!! I could have gotten even more swag, but I chose to restrain myself as the bag continued to fill throughout the week. This bag includes 1 Hortonworks Green Elephant, 1 Azure Cat, 3 Idera ducks, multiple t-shirts, and more! Obtaining all 3 different Idera ducks was by far my hardest swag accomplishment of the week. You could only get duck per day, and Idera was quickly running out of certain colors.&lt;/div&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span style=&quot;font-weight: normal;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;What I would do differently next year&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;br /&gt;
&lt;b&gt;I would bring business cards&lt;/b&gt; &lt;b&gt;-&lt;/b&gt;
 This was something I didn&#39;t get around to this year. I figured most 
people would be accessible later via Twitter (Twitter handles were on 
our name badges) or would have their own business cards. This was often 
the case but often not. Even though I felt like I was a late comer to 
Twitter, a lot of attendees were not on Twitter. In some cases if 
someone wasn&#39;t on Twitter and didn&#39;t have a card, I&#39;d enter their 
information directly into my phone, but there were some cases where 
there wasn&#39;t time for this.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Fly in on Monday instead of attending a pre-con&lt;/b&gt;&amp;nbsp;- I learned &lt;b&gt;a lot&lt;/b&gt; of great information about SSRS from Stacia Misner during her&amp;nbsp;&lt;i&gt;From&lt;/i&gt; &lt;i&gt;Reporting Services Rookie to Rockstar&lt;/i&gt;
 pre-con. As a data designer, though, it&#39;s unlikely that I&#39;ll be doing a
 lot of SSRS development in the near future. If there isn&#39;t a pre-con 
closely related to my current job, I&#39;ll probably skip out on a pre-con 
next year. I am glad I attended one this year, though.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Pick a Night to Turn in Extra Early -&lt;/b&gt;
 In this case, turn in means being back in the hotel room versus 
actually going to bed. I was out socializing Monday night - Thursday 
night. Even though I was in bed by around 12:30 a.m. each night, I was 
absolutely exhausted by Friday evening. Everyone has different limits, 
and in my case, I needed to take a night off and didn&#39;t. If the same 
schedule were to occur next year, I&#39;d probably take Wednesday night off,
 once the Exhibitor&#39;s event was over. It ended at 8 p.m. this year.&lt;br /&gt;
&lt;br /&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.kristinferrier.com/feeds/8319107829328857093/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2061295279717545721/8319107829328857093' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/8319107829328857093'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/8319107829328857093'/><link rel='alternate' type='text/html' href='http://www.kristinferrier.com/2013/12/my-first-pass-summit-part-2.html' title='My First Pass Summit - Part 2'/><author><name>K. Ferrier</name><uri>http://www.blogger.com/profile/05041926877318330498</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7VRl2d9TvPoqL39t-OsEEKZNzfecnq633_-vKe7rQSiIe-QdywMNb9cKt7O3HFVCZZA6BEElASUU7b2Fg3mrNI3c-dOnOLSORwcW0BR70hJ7aMB9ycr9mR5nzSsdxx2M/s1600/*'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhDG5yHNQua1qrwmgmxlv2LAdXZiCWa-DZgz176_wfCJXALAvVfRvn4yWvITiLQG9zzLwvkHgMeP_T17ofK81GPz4DwJ0y_pfth7Zxcj5wwy_USEtA9IpkS1qaud47yjE22vjZM0xW6CTkR/s72-c/2013-10-16_10-17-58_363.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2061295279717545721.post-5654034535653883497</id><published>2013-11-12T17:27:00.000-08:00</published><updated>2013-11-12T17:27:01.329-08:00</updated><title type='text'>My First PASS Summit - Part 1 (Monday and Tuesday)</title><content type='html'>A couple of weeks ago, I finally got to attend my first PASS Summit!&amp;nbsp;A lot of great conversations, connecting, and learning occurred. So much so that it took about a week for me to process the experience enough to considering blogging about it as a whole. In the week immediately following Summit my blog posts were &lt;a href=&quot;http://www.kristinferrier.com/2013/10/power-bi-lastest-from-summit.html&quot; target=&quot;_blank&quot;&gt;Power BI - The Latest from Summit&lt;/a&gt; and &lt;a href=&quot;http://www.kristinferrier.com/2013/10/region-shading-and-custom-coloring-in.html&quot; target=&quot;_blank&quot;&gt;Region Shading and Custom Coloring in Power Map&lt;/a&gt;. Both posts were inspired by content I heard about at Summit.&lt;br /&gt;
&lt;br /&gt;
It&#39;s now now been exactly four weeks since Summit officially started, and I&#39;ve finally had the processing time and blogging time to post about the first 2 days.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Highlights&amp;nbsp;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Monday &lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;&lt;i&gt;SSRS Pre-con&lt;/i&gt; &lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
It was my first Summit, so I wanted to tryout a day of jam-packed learning on a single topic. I attended Stacia (pronounced Stay-sha) Misner&#39;s&lt;i&gt; From Reporting Services Rookie to Rockstar &lt;/i&gt;pre-con. I wasn&#39;t very familiar with SSRS, so this was an excellent session for me to get a high level overview of SSRS and its major capabilities.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEim5rzM3sq-gJSjO40R1jC-lkFRRM8a0gpF1i_vnQMy1hT3RUBjziNekCB-zFbKvWyrnbYPVvxGEEh74xwzPR8SwoSQLCGGJTDwuIGPPFjM80IqaWOt3c3Ub4yuUZAj4SYfVdH43jjX9gtU/s1600/2013-10-14_10-42-33_907.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;225&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEim5rzM3sq-gJSjO40R1jC-lkFRRM8a0gpF1i_vnQMy1hT3RUBjziNekCB-zFbKvWyrnbYPVvxGEEh74xwzPR8SwoSQLCGGJTDwuIGPPFjM80IqaWOt3c3Ub4yuUZAj4SYfVdH43jjX9gtU/s400/2013-10-14_10-42-33_907.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div align=&quot;center&quot;&gt;
﻿&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
With OKCSQL VP Matt Brimer (&lt;span id=&quot;goog_1288935799&quot;&gt;&lt;/span&gt;&lt;a href=&quot;http://www.blogger.com/&quot;&gt;@SQLCenturion&lt;span id=&quot;goog_1288935800&quot;&gt;&lt;/span&gt;&lt;/a&gt;)&lt;/div&gt;
&lt;strong&gt;&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;Socials&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgTCyaD1n1HJWMCoJfYRv0A7rDt2OuyXA4LIpORHDalsTmY3Yfze1xOIT74Y4PXEBJmOuxYDC9AXSCFEgYEULlTvmO8YMezRdl4BtHJkx20EvAEaLh6iN6-P_LbCRhAZELwz36iDkLCJG1p/s1600/2013-10-14_20-10-35_273.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;225&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgTCyaD1n1HJWMCoJfYRv0A7rDt2OuyXA4LIpORHDalsTmY3Yfze1xOIT74Y4PXEBJmOuxYDC9AXSCFEgYEULlTvmO8YMezRdl4BtHJkx20EvAEaLh6iN6-P_LbCRhAZELwz36iDkLCJG1p/s400/2013-10-14_20-10-35_273.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
Hanging with &lt;a href=&quot;http://www.timmitchell.net/&quot; target=&quot;_blank&quot;&gt;Tim Mitchell&lt;/a&gt;, my husband Jeff, and Matt Brimer&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiC4iidxAt7PUktdmVrpppxJBY3PQdHSLN7jF2EWELQcV2I3wwWyEwB39s6ZuLmYf2Kuxl5dwfV70EhoitUxktQLe2m40aEf_3y6imt_HL5zR6qzei3unyPH7xFpIzy-kekGF0dByOeTgde/s1600/2013-10-14_21-21-02_27.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;225&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiC4iidxAt7PUktdmVrpppxJBY3PQdHSLN7jF2EWELQcV2I3wwWyEwB39s6ZuLmYf2Kuxl5dwfV70EhoitUxktQLe2m40aEf_3y6imt_HL5zR6qzei3unyPH7xFpIzy-kekGF0dByOeTgde/s400/2013-10-14_21-21-02_27.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
It was great to catch up with Julie Koesmarno &lt;a href=&quot;https://twitter.com/mssqlgirl&quot; target=&quot;_blank&quot;&gt;(@mssqlgirl&lt;/a&gt;). We&#39;re outside my hotel&#39;s bar where about 30 of us converged shortly beforehand. The pub&amp;nbsp;we, previously, tried&amp;nbsp;to go to was already too full from other Summit attendees.&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&amp;nbsp;&lt;/div&gt;
&lt;br /&gt;
&lt;b&gt;Tuesday Day - SQL Saturday Round Table and Chapter Leader&#39;s Meeting&lt;/b&gt;&lt;br /&gt;
&lt;strong&gt;&lt;/strong&gt;&lt;br /&gt;
Tuesday started with Rob Farley leading a lot of SQL Saturday organizers in discussions about changes to SQL Saturday rules and what kind of guidance organizers are looking for. Four of us from Oklahoma City that already knew each other ended up sitting together at a table. Although this led to some great internal discussion, it didn&#39;t lead to great networking. I did make some great contacts right after the meeting, though.&lt;br /&gt;
&lt;br /&gt;
Tuesday afternoon was the chapter leaders meeting. I made a specific point to sit at a table where&amp;nbsp;I didn&#39;t know anyone. That decision alone allowed me to meet&amp;nbsp;&lt;a href=&quot;http://timradney.com/&quot; target=&quot;_blank&quot;&gt;Tim Radney&lt;/a&gt;&amp;nbsp;(RM for South East - USA), &lt;a href=&quot;http://blog.sqlauthority.com/author/pinaldave/&quot; target=&quot;_blank&quot;&gt;Pinal Dave&lt;/a&gt; (RM for India), &lt;a href=&quot;http://blog.slaxer.com/&quot; target=&quot;_blank&quot;&gt;JK Wood&lt;/a&gt;&amp;nbsp;(Chapter Officer from Missouri), and a couple of other chapter representives.&amp;nbsp;Our table and then the overall&amp;nbsp;meeting attendees had some great discussion about the benefits of PASS and where improvements could be&amp;nbsp;made. &amp;nbsp;Afterwards we broke into our PASS regions and met with our RM&#39;s and other chapter leaders from our region. &lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Follow-up note: Last night JK drove four hours from Springfield, Missouri to provide an in-person presentation to &lt;/strong&gt;&lt;a href=&quot;http://okcsql.org/&quot; target=&quot;_blank&quot;&gt;&lt;strong&gt;OKCSQL&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;.&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjN_3aMvNzhukCgIjXqwrsrhrqFllTxoHMhzDnkSGkddpm72QErlK-YajVZ6eHTrmsDjqOpR1CA76MQ-bZU_0Ry7uPC3A4McTSrJERwiqw2Uwpf_X-OekLeJk8iBrJuKJF7RF44LlCkeght/s1600/2013-10-15_16-18-10_666.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;225&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjN_3aMvNzhukCgIjXqwrsrhrqFllTxoHMhzDnkSGkddpm72QErlK-YajVZ6eHTrmsDjqOpR1CA76MQ-bZU_0Ry7uPC3A4McTSrJERwiqw2Uwpf_X-OekLeJk8iBrJuKJF7RF44LlCkeght/s400/2013-10-15_16-18-10_666.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12pt; mso-ansi-language: EN-US; mso-bidi-language: AR-SA; mso-fareast-font-family: Calibri; mso-fareast-language: EN-US; mso-fareast-theme-font: minor-latin;&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12pt; mso-ansi-language: EN-US; mso-bidi-language: AR-SA; mso-fareast-font-family: Calibri; mso-fareast-language: EN-US; mso-fareast-theme-font: minor-latin;&quot;&gt;&lt;strong&gt;Five of us are wearing &quot;First Timer&quot; ribbons&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
Hanging with fellow SC Chapter Representatives: Jeff Johnston (MSBIC), Ganesh Gopalakrishnan (NTSSUG), Jim Murphy (&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12pt; mso-ansi-language: EN-US; mso-bidi-language: AR-SA; mso-fareast-font-family: Calibri; mso-fareast-language: EN-US; mso-fareast-theme-font: minor-latin;&quot;&gt;CACTUSS Central)&lt;/span&gt;, Matt Brimer (Tulsa SQL), me (OKCSQL), Ryan Adams (RM), Curt Wolfe (&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12pt; mso-ansi-language: EN-US; mso-bidi-language: AR-SA; mso-fareast-font-family: Calibri; mso-fareast-language: EN-US; mso-fareast-theme-font: minor-latin;&quot;&gt;Northwest Arkansas
SQL Server Users Group) and &lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12pt; mso-ansi-language: EN-US; mso-bidi-language: AR-SA; mso-fareast-font-family: Calibri; mso-fareast-language: EN-US; mso-fareast-theme-font: minor-latin;&quot;&gt;Sri Sridharan (Board Member)&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Tuesday Night - First Timers Orientation, Welcome Reception, Linchpin Party&amp;nbsp;&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;i&gt;&lt;strong&gt;First Timers Orientation&lt;/strong&gt;&lt;/i&gt;&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;strong&gt;Tuesday night was one of my favorite nights&lt;/strong&gt;, and I almost skipped this first amazing part! I&#39;d read tons of Summit advice blog posts and had been to SQL Rally. 
Other people had given me in-person advice, as well. I&#39;m SO glad that I attended this event. I received some excellent additional advice related to Summit and got some amazing glow jewelry. My husband, a guest pass participant, felt a bit distracted at this particular event, so he walked around picking up more glowsticks and making me more jewelry. As for Summit proper advice, one key point was to arrive to sessions early, as they can completely fill up. Note: I attended mostly BI sessions and got there early enough to not miss any sessions. I typically arrived 15 minutes early. I always got into my sessions. I know several people who tried arriving at DBA sessions 10 minutes early and got turned away.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhphIUAMQqBErfGtsTgNdrdOgFGfpdbtbN7QyhkvkKbj26JDyIdk8tHRH6y0s0Ya74vmxM-90e2kyzd-b4AnmW4X8Or3POUEBjY7E3lnkxKahPY0ssZxvaVw4ra_8rMHz0p5E1aFHmcCQqO/s1600/2013-10-15_18-04-35_538.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;225&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhphIUAMQqBErfGtsTgNdrdOgFGfpdbtbN7QyhkvkKbj26JDyIdk8tHRH6y0s0Ya74vmxM-90e2kyzd-b4AnmW4X8Or3POUEBjY7E3lnkxKahPY0ssZxvaVw4ra_8rMHz0p5E1aFHmcCQqO/s400/2013-10-15_18-04-35_538.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
Showing off my glow jewelry at the First Timers Orientation!&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
The jewelry led to some great conversations throughout the evening.&lt;/div&gt;
&lt;br /&gt;
&lt;i&gt;&lt;strong&gt;Welcome Reception&lt;/strong&gt;&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
We have two amazing Regional Mentors in the South Central Region. They are Ryan Adams and John Sterrett. John spent much of the welcome reception introducing myself and a few others around.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&lt;strong&gt;Linch Pin Private Party&lt;/strong&gt;&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
I apparently know several people connected to Linch Pin, so I was lucky enough to get invited to their private vendor party that evening at Strike City! There was free bowling, appetizers, and beverages. I met a lot of great people that night and also caught up with existing SQLFamily. One of my favorite conversations was with Rob Farley whom I&#39;d met at SQL Rally the year before.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;I had a hard time comprehending that Summit officially started on Tuesday evening, since by the end of the night my Summit experience was 40% over. I&#39;ll cover the remaining days in later post(s).&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.kristinferrier.com/feeds/5654034535653883497/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2061295279717545721/5654034535653883497' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/5654034535653883497'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/5654034535653883497'/><link rel='alternate' type='text/html' href='http://www.kristinferrier.com/2013/11/my-first-pass-summit-part-1-monday-and.html' title='My First PASS Summit - Part 1 (Monday and Tuesday)'/><author><name>K. Ferrier</name><uri>http://www.blogger.com/profile/05041926877318330498</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7VRl2d9TvPoqL39t-OsEEKZNzfecnq633_-vKe7rQSiIe-QdywMNb9cKt7O3HFVCZZA6BEElASUU7b2Fg3mrNI3c-dOnOLSORwcW0BR70hJ7aMB9ycr9mR5nzSsdxx2M/s1600/*'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEim5rzM3sq-gJSjO40R1jC-lkFRRM8a0gpF1i_vnQMy1hT3RUBjziNekCB-zFbKvWyrnbYPVvxGEEh74xwzPR8SwoSQLCGGJTDwuIGPPFjM80IqaWOt3c3Ub4yuUZAj4SYfVdH43jjX9gtU/s72-c/2013-10-14_10-42-33_907.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2061295279717545721.post-6535172920462945889</id><published>2013-10-26T13:43:00.000-07:00</published><updated>2013-10-26T13:54:57.274-07:00</updated><title type='text'>Region Shading and Custom Coloring in Power Map</title><content type='html'>&lt;br /&gt;
&lt;b&gt;Region Shading &lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
At PASS Summit, I was excited to hear that Power Map added a Region Shading feature in the September Release. Out of SSRS, Power View, and Power Map, the only one to previously have region shading was SSRS. Now this feature is available in Power Map &lt;b&gt;by country, province/state, county, and zip code&lt;/b&gt;.&lt;br /&gt;
&lt;br /&gt;
I finally had a chance to play around with this new feature today, and thought I&#39;d try it out against some data that I had previously Power Mapped. In a previous &lt;a href=&quot;http://www.kristinferrier.com/2013/06/displaying-2-level-hierarchy-in-geoflow.html&quot; target=&quot;_blank&quot;&gt;blog post&lt;/a&gt;, I discussed how you could use a city layer with column bars and a state/province layer with bubble charts to display data by both city and province.&lt;br /&gt;
&lt;br /&gt;
Now you can use the new &lt;b&gt;Region option &lt;/b&gt;shown below to implement region shading.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh7cvJJQWot4Glj67hvqi8bFHHWvkXNuRVaOnBfStJKKeRBJ0uxRksgX03aMcQrfzWvtQRU06R0vbxjxjFJc5ev5gpv-41kFdI03hDxqHxjkzRpr3Np390ynJE7Y3Caw6dOL6BKt6WcuANJ/s1600/RegionOption.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh7cvJJQWot4Glj67hvqi8bFHHWvkXNuRVaOnBfStJKKeRBJ0uxRksgX03aMcQrfzWvtQRU06R0vbxjxjFJc5ev5gpv-41kFdI03hDxqHxjkzRpr3Np390ynJE7Y3Caw6dOL6BKt6WcuANJ/s1600/RegionOption.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgfqZ9JfeY8gAlZQ5kW9nZ_67_788z7nwvf6rIb-Su2zXRcuecvdc-xIR0vhho34NNuq1rIVgCVHKKurNW9DzfM4MpmA5Hr8eW0PagZczu-xQL0jvSg1YJzvSJ_Z3F8BTWIZFTpvktP3AhC/s1600/ColorOption.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;/a&gt;&lt;/div&gt;
Below are the results &lt;b&gt;with Region Shading&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;b&gt;SQL Saturday OKC Registrations for 2012 by City and State &lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhQ0t85IZD21lxhgVjaToHfv5Gl7ikrXMAaIUk4AVPBkKl2Qa2TxxmFMdSTMaFxI-0UvtmTjlV413Z5DuTtfImfky7uScsiU4pAxVpfhQlnwaUD20OzWsDsnDV_iouPNNwBkozM25mRi1UX/s1600/SQLSatOKC_RegByStateAndCity_SeptemberRelease.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;202&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhQ0t85IZD21lxhgVjaToHfv5Gl7ikrXMAaIUk4AVPBkKl2Qa2TxxmFMdSTMaFxI-0UvtmTjlV413Z5DuTtfImfky7uScsiU4pAxVpfhQlnwaUD20OzWsDsnDV_iouPNNwBkozM25mRi1UX/s400/SQLSatOKC_RegByStateAndCity_SeptemberRelease.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&amp;nbsp;September Release&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
Used new Region Shading and Custom Color Features&lt;br /&gt;
In the above example, the shading intensity represents the province&#39;s registration count relative to the other provinces. &lt;/div&gt;
&lt;br /&gt;
Here&#39;s the &lt;b&gt;April release results, without region shading.&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhAM7Wf1ggnabFGnIZ6Q4fhZjV1uRFYvt9LNy8emVE0-1D3U3Yt7oPSBwGNTJkoF0y1BrYQxXezDrS4wvlY49gaoQscQ2pCnCKPt17Gi784fW-WLZJ15MmQ4FSINeokFM6wDh1vEc10wp9J/s1600/SQLSatOKC_RegByStateAndCity_AprilRelease.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;280&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhAM7Wf1ggnabFGnIZ6Q4fhZjV1uRFYvt9LNy8emVE0-1D3U3Yt7oPSBwGNTJkoF0y1BrYQxXezDrS4wvlY49gaoQscQ2pCnCKPt17Gi784fW-WLZJ15MmQ4FSINeokFM6wDh1vEc10wp9J/s400/SQLSatOKC_RegByStateAndCity_AprilRelease.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
April Release&lt;br /&gt;
There was no region shading, so the bubbles represented registration by province. &lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;Custom Coloring&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
Post-Summit I heard about Power Map adding custom coloring in the September release.&lt;b&gt; &lt;/b&gt;When initially trying out Power Map this is something I quickly wanted and expected end users would want as well. I was happy to see how quickly this got added. Below is how to use this feature.&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
In Layer Options, you may use the color option below to &lt;b&gt;select the color to use per category value.&lt;/b&gt; The color selection option is &lt;b&gt;available for region shading, column bars, and bubbles.&lt;/b&gt;&lt;i&gt; &lt;/i&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjDMx2a0ZqfH1ePgF2ri7Xz_ro_rCwuTHbXW-tmrAtjHvzNCUqsh51N0nyzyyGT5c1jytFw8KESwuoHieOPiZJvV8JAXreelSOar0zRO03dzyLBVDgIIz5IK7QwtMBu3_Ea-MKAgtNDfAEs/s1600/ColorOption3.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjDMx2a0ZqfH1ePgF2ri7Xz_ro_rCwuTHbXW-tmrAtjHvzNCUqsh51N0nyzyyGT5c1jytFw8KESwuoHieOPiZJvV8JAXreelSOar0zRO03dzyLBVDgIIz5IK7QwtMBu3_Ea-MKAgtNDfAEs/s320/ColorOption3.jpg&quot; width=&quot;257&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
When trying this option out, I was glad to see so many colors available 
and that assignments were per category value. In the below example I had
 event year categories of 2007 - 2013. I was able to select a different 
color for each value.&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;SQL Saturdays in North America&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;by Province by First Event Year&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh95A99cGRZTzSPUcmMkH1nO92dAkxLnXTAVdNPI0W-90Xz1nmzmq6IcAQTWpj8QTt9uuqI7wFDNs-diBeqoGxL1HpsTkAxvRtYTz9uY853sCGa8EysucRV163biYFxN1kCIFrC54KVtYbO/s1600/SQLSatNAWithColors.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;212&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh95A99cGRZTzSPUcmMkH1nO92dAkxLnXTAVdNPI0W-90Xz1nmzmq6IcAQTWpj8QTt9uuqI7wFDNs-diBeqoGxL1HpsTkAxvRtYTz9uY853sCGa8EysucRV163biYFxN1kCIFrC54KVtYbO/s400/SQLSatNAWithColors.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
Used new Region Shading and Custom Color Features&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;a href=&quot;http://youtu.be/equTNMoo5Wo&quot; target=&quot;_blank&quot;&gt;Video&lt;/a&gt;: SQL Saturdays in North America&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;by Province by First Event Year&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;iframe allowfullscreen=&#39;allowfullscreen&#39; webkitallowfullscreen=&#39;webkitallowfullscreen&#39; mozallowfullscreen=&#39;mozallowfullscreen&#39; width=&#39;320&#39; height=&#39;266&#39; src=&#39;https://www.youtube.com/embed/equTNMoo5Wo?feature=player_embedded&#39; frameborder=&#39;0&#39;&gt;&lt;/iframe&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
Used the new Create Video feature in Power Map&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://www.kristinferrier.com/feeds/6535172920462945889/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2061295279717545721/6535172920462945889' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/6535172920462945889'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/6535172920462945889'/><link rel='alternate' type='text/html' href='http://www.kristinferrier.com/2013/10/region-shading-and-custom-coloring-in.html' title='Region Shading and Custom Coloring in Power Map'/><author><name>K. Ferrier</name><uri>http://www.blogger.com/profile/05041926877318330498</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7VRl2d9TvPoqL39t-OsEEKZNzfecnq633_-vKe7rQSiIe-QdywMNb9cKt7O3HFVCZZA6BEElASUU7b2Fg3mrNI3c-dOnOLSORwcW0BR70hJ7aMB9ycr9mR5nzSsdxx2M/s1600/*'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh7cvJJQWot4Glj67hvqi8bFHHWvkXNuRVaOnBfStJKKeRBJ0uxRksgX03aMcQrfzWvtQRU06R0vbxjxjFJc5ev5gpv-41kFdI03hDxqHxjkzRpr3Np390ynJE7Y3Caw6dOL6BKt6WcuANJ/s72-c/RegionOption.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2061295279717545721.post-1131278174345595603</id><published>2013-10-21T18:52:00.001-07:00</published><updated>2013-10-22T07:42:33.603-07:00</updated><title type='text'>Power BI - The Latest from Summit</title><content type='html'>One of my goals at PASS Summit 2013 was to learn more about Power BI. When Power BI was announced in July, I already had familiarity with Power Pivot, Power View, Power Query, and Power Map. Since then I&#39;ve seen and experienced confusion related to what&#39;s part of Power BI. The following is some what I learned at Summit and what my new impressions are. &lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Initial Causes for Power BI Confusion&lt;/b&gt;&lt;br /&gt;
When Power BI was announced in July, Power Pivot, Power View, Power Query, and 
Power Map were all announced to be part of Power BI. Q&amp;amp;A was mentioned as a feature, as well.&lt;br /&gt;
&lt;br /&gt;
Power Pivot, though, was already officially available for Office 2010/2013, and Power View was officially available for Office 2013. Both Power Map and Power Query had Excel 2013 add-ins in public preview. Thus, what did it mean for the first four items with the announcement of Power BI?&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Demystification of Power BI&lt;/b&gt;&lt;br /&gt;
My current impression is that Power Pivot, Power View, Power Query, and Power Map may all stay available for on-premise self-service BI. Power BI for Office 365 is coming across as an upcoming subscription for Office 365 in the cloud that would eventually include  Power Pivot, Power View, Power Query, Power Map, and Q&amp;amp;A. Q&amp;amp;A seems like a cloud only feature, and it seems like some non-Q&amp;amp;A functionality may come in the cloud first and then possibly go on-premise. Note: Last I heard Power Map was not scheduled to be in the GA for Power BI in the cloud.&lt;br /&gt;
&lt;br /&gt;
The following are additional Power BI notes from Summit 2013:&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Power BI Q&amp;amp;A Feature&lt;/b&gt;&lt;br /&gt;
When I first saw the Q&amp;amp;A feature of Power BI in the Power BI Office 365 July demo &lt;a href=&quot;https://www.youtube.com/watch?v=KD9GlZGF9rY&quot; target=&quot;_blank&quot;&gt;video&lt;/a&gt;, the Q&amp;amp;A feature mostly seemed like magic. After attending a full Summit session dedicated just to Power BI Q&amp;amp;A, I became much more excited about the feature. Here&#39;s some of what I learned.&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Power BI Q&amp;amp;A is not magic&lt;/li&gt;
&lt;li&gt;Power BI Q&amp;amp;A relies on Power Pivot models in the cloud&lt;/li&gt;
&lt;li&gt;In the current Power BI Preview, you can try using the Q&amp;amp;A feature against some sample workbooks&lt;/li&gt;
&lt;li&gt;If you want to run the Q&amp;amp;A feature against your own workbooks, you&#39;ll need to wait until the next Power BI Preview&lt;/li&gt;
&lt;li&gt;You&#39;ll be able to &quot;train&quot; Q&amp;amp;A to tie search words to your Power Pivot models by changing the primary synonym and/or adding phrases. The primary synonym defaults based upon the column names in your Power Pivot model. I got the impression that it could automatically turn underscores into spaces.&lt;/li&gt;
&lt;li&gt;When the user is typing in their search words, beneath the search the user sees the exact search that would be run.&lt;/li&gt;
&lt;li&gt;If Q&amp;amp;A cannot understand a word typed into the search, the word is grayed out.&lt;/li&gt;
&lt;/ul&gt;
Like I mentioned earlier, after seeing Adam Wilson and Amy Forstrom&#39;s&lt;i&gt; Power BI: Modern Device and Data Search Experience &lt;/i&gt;session, I&#39;m much more excited about Power BI Q&amp;amp;A. If you have access to the Summit 2013 recordings, I highly recommend this session.&lt;br /&gt;
&lt;br /&gt;
In addition, the Day 1 &lt;a href=&quot;http://www.sqlpass.org/summit/2013/PASStv.aspx?watch=A5WgNvA1kg8&quot; target=&quot;_blank&quot;&gt;Keynote&lt;/a&gt;, had a Power BI Q&amp;amp;A demo at the 1 hour 15 minutes and 15 seconds mark. It is available for public viewing.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Power Query&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;There is a decent chance that the Power Query add-in for Excel on the desktop will remain free.&lt;/li&gt;
&lt;li&gt;In order to publish a Power Query workbook for sharing, a Power BI subscription for Office 365 would be required.&amp;nbsp;&lt;/li&gt;
&lt;/ul&gt;
Day 1 &lt;a href=&quot;http://www.sqlpass.org/summit/2013/PASStv.aspx?watch=A5WgNvA1kg8&quot; target=&quot;_blank&quot;&gt;Keynote&lt;/a&gt; (one hour and 5 minutes mark) shows using Power Query to import data from Windows Azure HDInsight&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Power Map&lt;/b&gt;&lt;br /&gt;
Major additions from the September release:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Create Video (big yay!)&lt;/li&gt;
&lt;li&gt;Region Shading - For countries, states/provinces, and counties&lt;/li&gt;
&lt;li&gt;Flat Map&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: purple;&quot;&gt;Update: Ari Schorr let me know about even more additional features from the September release.&amp;nbsp;He&amp;nbsp; has a blogpost about them&lt;/span&gt;&amp;nbsp;&lt;a href=&quot;http://blogs.office.com/b/microsoft-excel/archive/2013/09/25/power-map-for-excel-earns-new-name-with-significant-updates-to-3d-visualizations-and-storytelling.aspx&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;. &lt;span style=&quot;color: purple;&quot;&gt;I can&#39;t wait to try them out!&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
Other Power Map notes:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Not expected to be in the GA of Power BI. This gives me hope that the Excel add-in for Power Map might remain free for Excel on the desktop while publishing to Office 365 might require a Power BI Subscription.&lt;/li&gt;
&lt;li&gt;Requires DirectX10&lt;/li&gt;
&lt;li&gt;It&#39;s not recommended to use Power Map on a VM.&amp;nbsp;&lt;span style=&quot;color: purple;&quot;&gt;&lt;span style=&quot;color: black;&quot;&gt;The visualization may not work properly or may not work at all.&lt;/span&gt; Update:&amp;nbsp;This recommendation was apparently pre-September release, although, it was provided to me at Summit.&amp;nbsp;It can happen. With the September release, Power Map supports the main VM&#39;s.&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;b&gt;Power View&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Microsoft is working on the capability for Power View in the &lt;b&gt;cloud &lt;/b&gt;to work on &lt;b&gt;native iPad&lt;/b&gt;. This was mentioned by a Microsoft employee at a Summit session on mobile BI. The employee spoke up after the speaker clearly was dancing around this point, as he did not think he was allowed to disclose it. &lt;/li&gt;
&lt;/ul&gt;
&lt;b&gt;Office 2013&amp;nbsp;Click-to-Run vs. ISO Installation&lt;/b&gt;&lt;br /&gt;
It matters whether or not your Office 2013 installation was done using Click-to-Run&lt;strong&gt; &lt;/strong&gt;or using an ISO. I believe the Click-to-Run&lt;strong&gt; &lt;/strong&gt;version is available using the Power BI Preview, while the ISO version seems be available via MSDN. The Click-to-Run&lt;strong&gt; &lt;/strong&gt;version updates automatically, thus, it would get the critical Power BI Preview 2 updates automatically like those needed to be able to train your Power Pivot models for Power BI Q&amp;amp;A. Last I heard Microsoft is aware of a possible need to get the Click-to-Run version out onto MSDN.&lt;br /&gt;
&lt;br /&gt;
Thanks to everyone who provided some great Power BI information at Summit. Microsoft provided some great information via keynote and sessions. I had some great discussions with Microsoft employees at the SQL Server Clinic and in other environments. Thanks to &lt;a href=&quot;http://www.mssqlgirl.com/&quot; target=&quot;_blank&quot;&gt;Julie Koesmarno&lt;/a&gt; and others in the community for some great Power BI discussion, as well. </content><link rel='replies' type='application/atom+xml' href='http://www.kristinferrier.com/feeds/1131278174345595603/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2061295279717545721/1131278174345595603' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/1131278174345595603'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/1131278174345595603'/><link rel='alternate' type='text/html' href='http://www.kristinferrier.com/2013/10/power-bi-lastest-from-summit.html' title='Power BI - The Latest from Summit'/><author><name>K. Ferrier</name><uri>http://www.blogger.com/profile/05041926877318330498</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7VRl2d9TvPoqL39t-OsEEKZNzfecnq633_-vKe7rQSiIe-QdywMNb9cKt7O3HFVCZZA6BEElASUU7b2Fg3mrNI3c-dOnOLSORwcW0BR70hJ7aMB9ycr9mR5nzSsdxx2M/s1600/*'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2061295279717545721.post-1791273776486058654</id><published>2013-08-27T05:40:00.001-07:00</published><updated>2013-08-27T05:40:39.349-07:00</updated><title type='text'>SQL Saturday Oklahoma City - Power Map Presentation</title><content type='html'>Thanks to everyone that attended my &lt;i&gt;3D Geospatial Visualization Using Power Map&lt;/i&gt; session at SQL Saturday Oklahoma City 2013. I actually ended up giving the session on Friday evening and on Saturday. The Power Pivot pre-con ended an hour early on Friday, so I did a full run-through of the session to a few people from the pre-con who weren&#39;t going to be able to attend my Saturday session for various reasons. I then gave the official presentation on Saturday. &lt;br /&gt;
&lt;br /&gt;
One of my favorite demos involved analyzing visitor count data of the various D.C. Smithsonian museums. I had audience members announce their favorite Smithsonian museums, and then we analyzed 2010 - 2012 visitor data. On Friday, everyone said Air and Space Museum. On Saturday I heard, Hirshorn Museum then Museum of Natural History and then finally Air and Space. We then went on to create a Power Map tour that showed another museum overtaking Air and Space in 2012.&lt;br /&gt;
&lt;br /&gt;
My slides are available &lt;a href=&quot;http://www.slideshare.net/kristinferrier/3d-geospatial-visualization-using-power-map&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
A video of how to do the U.S. Tourist Attraction demo is available &lt;a href=&quot;http://www.youtube.com/watch?v=WFJia4Hf3bg&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
A video of the Power Map tour from the Smithsonian demo is available &lt;a href=&quot;http://youtu.be/A_-nndRmSns&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.kristinferrier.com/feeds/1791273776486058654/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2061295279717545721/1791273776486058654' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/1791273776486058654'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/1791273776486058654'/><link rel='alternate' type='text/html' href='http://www.kristinferrier.com/2013/08/sql-saturday-oklahoma-city-power-map.html' title='SQL Saturday Oklahoma City - Power Map Presentation'/><author><name>K. Ferrier</name><uri>http://www.blogger.com/profile/05041926877318330498</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7VRl2d9TvPoqL39t-OsEEKZNzfecnq633_-vKe7rQSiIe-QdywMNb9cKt7O3HFVCZZA6BEElASUU7b2Fg3mrNI3c-dOnOLSORwcW0BR70hJ7aMB9ycr9mR5nzSsdxx2M/s1600/*'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2061295279717545721.post-8436024978784695460</id><published>2013-08-19T18:08:00.001-07:00</published><updated>2013-08-19T18:08:30.570-07:00</updated><title type='text'>Speaking on Power Map at SQL Saturday Oklahoma City</title><content type='html'>I&#39;m excited to see #SQLFamily and learn a ton while at SQL Saturday Oklahoma City this Saturday, August 24th. I&#39;m also quite looking forward to a full day of Power Pivot immersion on Friday from Bill Pearson&#39;s &lt;i&gt;Practical Self-Service BI with PowerPivot for Excel&lt;/i&gt; pre-con. You can register for the pre-con &lt;a href=&quot;http://www.eventbrite.com/event/5573697078?ref=ebtn&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;. You can register for SQL Saturday Oklahoma City &lt;a href=&quot;http://www.sqlsaturday.com/223/register.aspx&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
I&#39;ll also be giving an updated version of my&lt;i&gt; &lt;a href=&quot;http://www.sqlsaturday.com/viewsession.aspx?sat=223&amp;amp;sessionid=16305&quot; target=&quot;_blank&quot;&gt;3D Geospatial Visualization Using Power Map&lt;/a&gt;&lt;/i&gt; presentation. This new version includes a quick overview of datums, plus a high level overview of geospatial reporting in SSRS and Power View. Then we&#39;ll deep dive into Power Map. I hope to see you guys there!&lt;br /&gt;
&lt;br /&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.kristinferrier.com/feeds/8436024978784695460/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2061295279717545721/8436024978784695460' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/8436024978784695460'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/8436024978784695460'/><link rel='alternate' type='text/html' href='http://www.kristinferrier.com/2013/08/speaking-on-power-map-at-sql-saturday.html' title='Speaking on Power Map at SQL Saturday Oklahoma City'/><author><name>K. Ferrier</name><uri>http://www.blogger.com/profile/05041926877318330498</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7VRl2d9TvPoqL39t-OsEEKZNzfecnq633_-vKe7rQSiIe-QdywMNb9cKt7O3HFVCZZA6BEElASUU7b2Fg3mrNI3c-dOnOLSORwcW0BR70hJ7aMB9ycr9mR5nzSsdxx2M/s1600/*'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2061295279717545721.post-8104072468067063695</id><published>2013-07-20T10:32:00.000-07:00</published><updated>2013-07-20T10:32:33.831-07:00</updated><title type='text'>Do you know the Datum of your Latitude and Longitude?</title><content type='html'>Last month I had the opportunity to present GeoFlow, now called Power Map, to the GIS team at my employer. Less than one minute into the live demo, I heard something like &quot;That looks like a Mercator projection expecting a WGS84 Datum.&quot; Inside my head I was thinking &quot;a what?&quot;&lt;br /&gt;
&lt;br /&gt;
I was not familiar with either map projections or datums. As datums are important when using latitude and longitude data, I&#39;d like to share some of what I&#39;ve learned about the topic since that presentation. The concept of datums can be quite large, so I&#39;ll just focus on what matters most to those of us using tools like Power Map and Power View. Those tools use Bing Maps for their geocoding. The primary point to make is that &lt;b&gt;Bing Maps expects a WGS84 datum.&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
If your latitude and longitude coordinates do not correspond to the WGS84 datum, then your geographic points might not display in the proper location in Bing Maps. Let&#39;s first cover some basic points about datums.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Datum &lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&lt;b&gt;Latitude and longitude always have a corresponding datum, such as WGS84 or NAD27&lt;/b&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;b&gt;The latitude and longitude coordinates for your current position may vary across datums&lt;/b&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Sometimes the difference may be less than a few hundred feet, but it may be much more drastic. WGS84 and NAD83 are nearly identical. The difference between NAD83 and NAD27 varies dependent upon your location within North America. If you&#39;re on the U.S. West Coast, the difference between NAD83 and NAD27 could be more than 300 feet. Further East the difference might be less than 100 feet&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Map projections correspond to a datum&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;When gathering latitude / longitude data for geographic reporting, knowing the datum is important, as you may need to convert your coordinates to the proper datum before using them&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
Let&#39;s look at a basic example using lat/long coordinates for the Golden Gate Bridge.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Golden Gate Bridge Example &lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
The following latitude and longitude coordinates are both valid for the Golden Gate Bridge:&lt;br /&gt;
&lt;br /&gt;
37.819721, -122.478615 in WGS84&lt;br /&gt;
37.8197926, -122.4775316 in NAD27&lt;br /&gt;
&lt;br /&gt;
Of the two, only the WGS84 coordinates will display on the Golden Gate Bridge in either Power Map or Power View.&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;b&gt;The NAD27 coordinates do not display on the bridge&lt;/b&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjd3E7KUHjtd1V2uy1nW-rCzQmMxTz8y-U9KOjlrT-ZZ2hGIIGiGvifhBL2zmnbjlhAAHVCsa3xzXMisrfGFS6XcjlQZIuANy9yz3GiVCBmc0Q9tmF354bBeDe6YlSq_6XPgEEroYue6u9C/s1600/GoldenGateBridgeNad27.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;280&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjd3E7KUHjtd1V2uy1nW-rCzQmMxTz8y-U9KOjlrT-ZZ2hGIIGiGvifhBL2zmnbjlhAAHVCsa3xzXMisrfGFS6XcjlQZIuANy9yz3GiVCBmc0Q9tmF354bBeDe6YlSq_6XPgEEroYue6u9C/s400/GoldenGateBridgeNad27.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&amp;nbsp;&lt;b&gt;The WGS84 coordinates properly display on the bridge &lt;/b&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2HMzBuECUDL6UZQ7G0t681CiNOkuc3o9rWcphLBhXzdojPiinOE7l7Ve8VDrKcil54Lgk2kFefB-yDA8el74vGPKig2HiFPCABBNKQ_6misqvgQ1h_tRvFhc2D8KgElsS3thNndatEySQ/s1600/GoldenGateBridgeWgs84.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;280&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2HMzBuECUDL6UZQ7G0t681CiNOkuc3o9rWcphLBhXzdojPiinOE7l7Ve8VDrKcil54Lgk2kFefB-yDA8el74vGPKig2HiFPCABBNKQ_6misqvgQ1h_tRvFhc2D8KgElsS3thNndatEySQ/s400/GoldenGateBridgeWgs84.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjSZmYRDl0fQycZS1gYUUWwln5MgMtAO7nnVCd74OPXtZq3TMkML-Zds4iNGXzntL8LHb_JOZE4MqZHQtIfFYqlpl7lupadUq48E5A-d_f_LDFFbuc4_8DZcVtXQdlwDgtAzgelqqF6NUis/s1600/WSG84GSB.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;br /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&amp;nbsp;Here&#39;s a comparison of the same coordinates in Power View&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj2phZ1wzMrZPVNuiT1YflER7ncgImeS6GBRPcFDZSZOteETMamQ4wHIsXPFjX-sIK2hmS6_4gP6gUdqDZKx_8lGykMXjMQvqVFtHNp8Azp9Fv7iVXgvIBHI0-3eWzZdsA_Ytztz-O-Kw_Y/s1600/WGS84GSBPowerView.jpg&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;br /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhWhzl2xm56RCLHiC0lm8zcGuwiH3tbKdGYI1whshmEPqqyl0JrQ9fi7ivrZ6JUFobNyv9ghH2LVzT7zHRKdjxnZqYiqOzExInQnyOY9fO4Tb0bvGGSscdo3zkUpRP8FiK3b_lEcL_c_wR9/s1600/GSBCompPowerView.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;185&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhWhzl2xm56RCLHiC0lm8zcGuwiH3tbKdGYI1whshmEPqqyl0JrQ9fi7ivrZ6JUFobNyv9ghH2LVzT7zHRKdjxnZqYiqOzExInQnyOY9fO4Tb0bvGGSscdo3zkUpRP8FiK3b_lEcL_c_wR9/s400/GSBCompPowerView.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7jIlBXv6w6YYbEkrrNO-l7yuwMcDJb4m64bbiciHDAfpnpuxDbTXu9LHYYJhOA1paQWRM20YOrKXrlH0IzNmd941_vFXr6gXc44RZE0vfxLxyVMUIJ1M-_j4doaxpkepDdaOymPlR-F_T/s1600/NAD27GSBPowerView.jpg&quot; imageanchor=&quot;1&quot; style=&quot;clear: right; float: right; margin-bottom: 1em; margin-left: 1em;&quot;&gt;&lt;/a&gt; &lt;br /&gt;
The above example provides a scenario where users are likely to notice the geographic point is not correct. That may cause them to not trust the data.&lt;br /&gt;
&lt;br /&gt;
In some cases the difference may not be enough for users to notice. For example, I tried using NAD27 coordinates for several Smithsonian museums in Power Map. The tool displayed the column chart on the correct museum in most cases. The reason being that the museums are fairly large and the shift between WGS84 and NAD27 on the East Coast isn&#39;t as big as it is on the West Coast. There were a few Smithsonian locations, though, where the incorrect placement was noticeable.&lt;br /&gt;
&lt;br /&gt;
Thus, when gathering and eventually using latitude and longitude coordinates for geographic reporting, it&#39;s important to make sure we know the corresponding datum.&lt;br /&gt;
&lt;br /&gt;
For those interested in more advanced information on datums, you can find more information from Wikipedia &lt;a href=&quot;http://en.wikipedia.org/wiki/Datum_%28geodesy%29&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;.</content><link rel='replies' type='application/atom+xml' href='http://www.kristinferrier.com/feeds/8104072468067063695/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2061295279717545721/8104072468067063695' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/8104072468067063695'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/8104072468067063695'/><link rel='alternate' type='text/html' href='http://www.kristinferrier.com/2013/07/do-you-know-datum-of-your-latitude-and.html' title='Do you know the Datum of your Latitude and Longitude?'/><author><name>K. Ferrier</name><uri>http://www.blogger.com/profile/05041926877318330498</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7VRl2d9TvPoqL39t-OsEEKZNzfecnq633_-vKe7rQSiIe-QdywMNb9cKt7O3HFVCZZA6BEElASUU7b2Fg3mrNI3c-dOnOLSORwcW0BR70hJ7aMB9ycr9mR5nzSsdxx2M/s1600/*'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjd3E7KUHjtd1V2uy1nW-rCzQmMxTz8y-U9KOjlrT-ZZ2hGIIGiGvifhBL2zmnbjlhAAHVCsa3xzXMisrfGFS6XcjlQZIuANy9yz3GiVCBmc0Q9tmF354bBeDe6YlSq_6XPgEEroYue6u9C/s72-c/GoldenGateBridgeNad27.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2061295279717545721.post-1477388438850102029</id><published>2013-07-03T16:31:00.000-07:00</published><updated>2013-07-03T16:31:14.753-07:00</updated><title type='text'>My Journey in the SQL Community / #SQLFamily</title><content type='html'>&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:OfficeDocumentSettings&gt;
  &lt;o:AllowPNG/&gt;
 &lt;/o:OfficeDocumentSettings&gt;
&lt;/xml&gt;&lt;![endif]--&gt;

&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 115%; mso-ansi-language: EN-US; mso-bidi-language: AR-SA; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: EN-US;&quot;&gt;Last week two co-workers and I registered
for our first PASS Summit!!!&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 115%; mso-ansi-language: EN-US; mso-bidi-language: AR-SA; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: EN-US;&quot;&gt;I&#39;ve been heavily involved with the regional &lt;a href=&quot;https://twitter.com/search?q=%23sqlfamily&amp;amp;src=typd&quot; target=&quot;_blank&quot;&gt;#sqlfamily&lt;/a&gt; for 3 years, but this is probably the first PASS event for either of
my co-workers to attend. In order to prepare them for Summit I&#39;ve been telling them about a few of my great #sqlfamily experiences. Talking
to them got me thinking about my recent journey in
becoming part of #sqlfamily and lead to this blog post. &lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&lt;b&gt;SQL Saturday Dallas &lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;In early 2010 I received an e-mail
promoting a speakers call for an event I&#39;d never heard of before. It was
promoting a SQL Saturday, specifically SQL Saturday #35 in Dallas. Submitting
to speak at that event, I believe was one of the best decisions of my
professional career. Although speaking was a positive experience, the
relationships I started building are what I both remember and value most. At
the Speaker&#39;s Dinner and other portions of SQL Saturday Dallas, I met for
the first time many of the following individuals: &lt;a href=&quot;http://sqlrocks.com/&quot; target=&quot;_blank&quot;&gt;Sri Sridharan&lt;/a&gt;, &lt;a href=&quot;http://www.timmitchell.net/&quot; target=&quot;_blank&quot;&gt;Tim Mitchell,&lt;/a&gt;
&lt;a href=&quot;http://www.ryanjadams.com/&quot; target=&quot;_blank&quot;&gt;Ryan Adams&lt;/a&gt;, &lt;a href=&quot;http://midnightdba.itbookworm.com/&quot; target=&quot;_blank&quot;&gt;Sean McCown&lt;/a&gt;, &lt;a href=&quot;http://midnightdba.itbookworm.com/&quot; target=&quot;_blank&quot;&gt;Jen McCown&lt;/a&gt;, Bryan Smith (MS), &lt;a href=&quot;https://twitter.com/jmarx&quot; target=&quot;_blank&quot;&gt;Jeremy Marx&lt;/a&gt;, and many
other great members of the SQL Community. Relationships quickly grew beyond the
event. Within a few months Tim Mitchell was giving a remote presentation to
OKCSQL speaking on &quot;SSIS Scripting&quot; and Bryan was presenting to
OKCSQL in person. Contact with others from the SQL Community was continuing for
various reasons, as well, including when Sri was asking for help with promoting
Dallas’s bid to host SQL Rally.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;My next SQL Saturday to attend was
SQL Saturday #63 in Dallas in April 2011. As I was not actively presenting at
the time, I chose not to submit to speak. Since I was a chapter leader, though,
Sri still decided to invite me to the Speakers Dinner the night before the
event. Side note, we had an OKCSQL officer speaking, as Rob Sullivan was a
first time SQL Saturday presenter at that event. Multiple times during the
Speakers Dinner, Rob and I heard, &quot;When is Oklahoma City going to have
their first SQL Saturday?&quot; The answer was among the lines of &quot;we&#39;d
need another OKC person to chair it, as Rob and I are the only two OKCSQL
officers and don&#39;t have the capacity to take on running an event all by
ourselves.&quot; Fast forward to the next day, someone introduced me to &lt;a href=&quot;https://twitter.com/sqlcenturion&quot; target=&quot;_blank&quot;&gt;MattBrimer&lt;/a&gt;, also from Oklahoma. Matt Brimer was telling people that he wanted to
help host a SQL Saturday Oklahoma City.&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&lt;b&gt;SQL Saturday Oklahoma City 2011&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;Within a few months Matt was the newest
OKCSQL officer and Event Chair for SQL Saturday #90 in Oklahoma City, with me
as Speaker Chair, and a Rob Sullivan, Jamin Mace, and &lt;a href=&quot;https://twitter.com/amandaharlin&quot; target=&quot;_blank&quot;&gt;Amanda Hardeman&lt;/a&gt; (now Harlin) also on
the Event Committee. Relationships with Texas members of the #sqlfamily were
absolutely critical to us being able to host a well-run 200 person event. When
asked, Sri provided us his sources for anything from event insurance to event bags.
Texas speakers, several MVPs, comprised 11/14 of our first event’s speakers. The night before the event, Ryan Adams and others were giving us advice and
double-checking that we’d covered certain things. I remember the advice being
great, and at least one item was changed last minute due to the conversations. The
event itself took place on August 27th, 2011, less than 5 months after we had
met Matt. The event was high energy with a lot of great sessions, and we got
some really good feedback.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&lt;b&gt;SQL Rally&amp;nbsp;&lt;/b&gt; &lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;The following year SQL Rally 2012
took place in Dallas in May. My involvement started before the event, as I
volunteered to assist with session selection. That was a great opportunity to
be involved with some “behind the scenes” for an international event and gave
me some great ideas for how to handle session selection for our next SQL Saturday
Oklahoma City. I personally paid for all my SQL Rally expenses, and it was
definitely worth attending! While at SQL Rally, I got to hear some great
presentations by some people I’d never seen in person before like Adam
Jorgensen, Devin Knight, Jen Stirrup, Vicky Harp, and Julie Koesmarno
(@mssqlgirl). Although, I didn’t meet all of them in person, I remember a great
long conversation that a couple of us had with Adam Jorgensen and later with
Rob Farley. Lately I&#39;ve been learning a lot from the the BI blogs of several of the speakers from SQL Rally.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&lt;b&gt;SQL Saturday Oklahoma City 2012 &lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;SQL Saturday #125 in Oklahoma City took
place in August 2012, with a lot of great speakers returning and some talented new
ones coming in. As we were getting close to the event, I remembered thinking &quot;I can&#39;t wait to see Sean, Jen, Tim, Ryan, Mike, and the names rolled on.&quot; I also met Grant Fritchey, Carlos Bossy and others for the first time.
The relationship building continued. On the relationships note, when 2 of the SQL Saturday OKC 2011 speakers didn’t
make the 2012 cut due to the 90+ submissions we had for 24 sessions, I made
sure that they were each invited to the Influencers’ Dinner. We started using that name, since we include
Sponsors, event committee, speakers, former speakers, chapter leaders, and
more. Relationships are critical, and we don’t want to exclude someone passionate
about SQL because they happened to not have time to commit to prepping a
session or didn’t get selected to speak.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;This past Monday evening I was on a
Google+ Hangout with TulsaSQL President Jeremy Marx. He’s the Speaker Chair,
under my mentorship, this year for SQL Saturday #223 in Oklahoma City to take
place on Saturday, August 24&lt;sup&gt;th&lt;/sup&gt;. We were talking about final session
selections for the event. I can’t believe it’s almost time for Oklahoma City’s
3&lt;sup&gt;rd&lt;/sup&gt; SQL Saturday.&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp; &lt;/span&gt;It was just
over two years ago that I met Matt Brimer, and around three years ago that I attended my
first SQL Saturday. Several people that I met at Dallas’s first SQL Saturday
will be speaking at their 3&lt;sup&gt;rd&lt;/sup&gt; SQL Saturday Oklahoma City. Their
continued support has been amazing. &lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;Although, my #sqlfamly involvement
started to sky-rocket with my attendance at SQL Saturday Dallas, there are some
key relationships I made before then. I met Greg Galloway at the Microsoft BI
Conference in 2007. We had some e-mail conversations where he helped me out
with some SSAS processing strategies. I was quite the SSAS newbie at the time!
We lost contact at some point, but then through his connection to Tim Mitchell,
Greg ended up speaking at Oklahoma City’s first SQL Saturday. &lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&lt;/span&gt;I met Mike Hotek in 2009 when he was
consulting at my then employer. Mike helped OKCSQL start strong by being our
speaker for the first 3 OKCSQL meetings, which were averaging around 25
attendees. That was just our first great experience with Mike and his SQL Community
involvement. Of course, I can’t forget &lt;a href=&quot;http://datachomp.com/&quot; target=&quot;_blank&quot;&gt;Rob Sullivan&lt;/a&gt; with whom I co-founded
OKCSQL back in April 2009. I met Rob a couple of years earlier in the Oklahoma
City .Net Developers Group. In 2008 he was Sr. Vice President during my one
year term as President of the OKC.Net group. &lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;As I type this blog post, I keep
thinking of so many more people I’ve met just in the past 3 years like &lt;a href=&quot;http://mvp.microsoft.com/en-us/mvp/William%20E%20Pearson%20III-4025216&quot; target=&quot;_blank&quot;&gt;BillPearson&lt;/a&gt;, &lt;a href=&quot;https://twitter.com/TimCost&quot; target=&quot;_blank&quot;&gt;Tim Costello&lt;/a&gt;, and our newest OKCSQL officer &lt;a href=&quot;https://twitter.com/cognitivebi&quot; target=&quot;_blank&quot;&gt;Allen Smith&lt;/a&gt;. There are too many to mention in one blog post. &lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;I also keep thinking back to SQL
Rally 2012, when Sri was passing out #sqlfamily stickers. This is a great family to
be a part of and I can’t wait to build even more relationships and help others
join this great #sqlfamily.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;Below are some of my favorite &lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;#sqlfamily &lt;/span&gt;photos. &lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&lt;b&gt;SQL Saturday Oklahoma City 2011 &lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhsZ5qiLr2_77x0AEBx5aOmDII0kOsgeUG0m9qJ3EfmIRXdeCEUgmwyZ8-p7cgbZ3S-yzHo1xsbXar-dbfj8KfYcpsKj5lJlPU8qR0c-ZAJQtNzyCeaTLqTR1zni2vMAkmPdtAhSzfueijj/s1600/6363878613_e9f53b3019_o.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;266&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhsZ5qiLr2_77x0AEBx5aOmDII0kOsgeUG0m9qJ3EfmIRXdeCEUgmwyZ8-p7cgbZ3S-yzHo1xsbXar-dbfj8KfYcpsKj5lJlPU8qR0c-ZAJQtNzyCeaTLqTR1zni2vMAkmPdtAhSzfueijj/s400/6363878613_e9f53b3019_o.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
Most of the TX speakers and crew. Top row: &lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;Sri Sridharan, Ryan Adams, Shawn Weisfeld, Russel Loski, and Paul Hunter. Bottom row: Tim Mitchell, Greg Galloway, Jen McCown, and Sean McCown.&lt;/span&gt; &lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgCyuZfzTmuzvdA46qVO_i0uGw3ecXVj_UUIigf-vmQkiu9fJs-LSTRYkVQ_KclLYSzTn6HBO_zfdn1E6uiw60UxVU4aPpBlRt4ZUut2Tdtb962ZtkZCpkUesxmIylKdzWUNVbdBT7EDhSK/s1024/PaulHunterAndRob.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;266&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgCyuZfzTmuzvdA46qVO_i0uGw3ecXVj_UUIigf-vmQkiu9fJs-LSTRYkVQ_KclLYSzTn6HBO_zfdn1E6uiw60UxVU4aPpBlRt4ZUut2Tdtb962ZtkZCpkUesxmIylKdzWUNVbdBT7EDhSK/s400/PaulHunterAndRob.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
Speaker Paul Hunter with Rob Sullivan (event committee) &lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhoHnYIDfikPYGbBVwsXdhMeR94lcuFd1Di5kFyMIHwzqo95Bg59QCFq6o0RQrb5Ogz5yBV_t88YsY2U7OEPX1f5AOVyUbYz3ZEEbt2Qow4TmOlOh07OpqzGfPkUVTZ0x_WUIEPwFpwwZOh/s1024/JeffAndSean.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;266&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhoHnYIDfikPYGbBVwsXdhMeR94lcuFd1Di5kFyMIHwzqo95Bg59QCFq6o0RQrb5Ogz5yBV_t88YsY2U7OEPX1f5AOVyUbYz3ZEEbt2Qow4TmOlOh07OpqzGfPkUVTZ0x_WUIEPwFpwwZOh/s400/JeffAndSean.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&amp;nbsp;Jeff Blankenbiller (my husband) and Sean McCown (Jen&#39;s husband)&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjRLGRQlzg-46gFQD9OuLd_qARDQ4bBvQZjrLeJkqqADPmIqfm_FnWJCGX1ksSgxyce5QJe9Q2C1mnpCAiSzsU6QCFxdt5NFGQM3Rh6441pKWvNgunThaumJoEyNpL9ob3Hp5E0ApkS3ybO/s1600/KristinAndMatt.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;266&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjRLGRQlzg-46gFQD9OuLd_qARDQ4bBvQZjrLeJkqqADPmIqfm_FnWJCGX1ksSgxyce5QJe9Q2C1mnpCAiSzsU6QCFxdt5NFGQM3Rh6441pKWvNgunThaumJoEyNpL9ob3Hp5E0ApkS3ybO/s400/KristinAndMatt.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&amp;nbsp;Matt Brimer and I on stage together&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhr2KJx7Z9HSU-aDStBQLQ99k9E463gAFtzEfAUR9uIwyE8nXDCIvw-Lsa0smaYonqSUFIMhsx68GmV_zcgXq2qVwGqGknBaHeSAIwtd3tHC3Mwq1jQqv7G24dK9ejiRJKxW4YOumwkeQ8e/s1600/EventCommitteeOnStage.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;266&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhr2KJx7Z9HSU-aDStBQLQ99k9E463gAFtzEfAUR9uIwyE8nXDCIvw-Lsa0smaYonqSUFIMhsx68GmV_zcgXq2qVwGqGknBaHeSAIwtd3tHC3Mwq1jQqv7G24dK9ejiRJKxW4YOumwkeQ8e/s400/EventCommitteeOnStage.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
Event Committee on stage together (Matt&#39;s wife, Matt Brimer, Jamin Mace, Rob Sullivan, Amanda Hardeman, and I)&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;b&gt;SQL Rally 2012 &lt;/b&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEinrzG_RmqNPliTfnWGziLEfAHAHAnDaQN7gSHWSt3BpEpMHYI55Lv7NifXS9ThCM0Jh2mcoIkE6f0ALahThd0IREfVzlWqsdQo0v8LmqWbEat41VKl3UM2oB-RqsM9GnJu4n7dSiMkzBDG/s1600/2012-05-11_11-43-22_168.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;225&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEinrzG_RmqNPliTfnWGziLEfAHAHAnDaQN7gSHWSt3BpEpMHYI55Lv7NifXS9ThCM0Jh2mcoIkE6f0ALahThd0IREfVzlWqsdQo0v8LmqWbEat41VKl3UM2oB-RqsM9GnJu4n7dSiMkzBDG/s400/2012-05-11_11-43-22_168.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&amp;nbsp;With Julie Koesmarno (@mssqlgirl on the right) after her awesome session! I&#39;ve been reading her blog lately to learn more about GeoFlow. I&#39;ve been selected to speak on that topic at SQL Saturday Oklahoma City 2013&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhTiXCfNRAN0FhOnxRBGaEf5mMObJA0cjDcHWmVxLB702ljIPcEWOAhS3OYv20qh4RNMY_aa0Th5r9Vxiqj8lE7aaHIzGBQPKUqCrakQI0cchh6T9hNzGNMA45rSTDuUsbRI0V6bQz0NCIk/s1488/2012-05-10_22-40-00_611.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;227&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhTiXCfNRAN0FhOnxRBGaEf5mMObJA0cjDcHWmVxLB702ljIPcEWOAhS3OYv20qh4RNMY_aa0Th5r9Vxiqj8lE7aaHIzGBQPKUqCrakQI0cchh6T9hNzGNMA45rSTDuUsbRI0V6bQz0NCIk/s400/2012-05-10_22-40-00_611.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
@VickyHarp rocking it with Karaoke at a SQL Rally 2012 Party&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&amp;nbsp; &lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEitJxcWAxnWKtCyLeDlWCi9ScCrV6CmeKZiqtWOSoFgw3_YybLdP8BhrLanrqEuf-g1Wv5eBQHQp6CG0YWOWvqfcieIgargy1xQFG3akweyFGsI5UvFEOTzPcWGqii9Uwcolq_rk3ExYSMd/s944/2012-05-10_17-08-27_285.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;230&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEitJxcWAxnWKtCyLeDlWCi9ScCrV6CmeKZiqtWOSoFgw3_YybLdP8BhrLanrqEuf-g1Wv5eBQHQp6CG0YWOWvqfcieIgargy1xQFG3akweyFGsI5UvFEOTzPcWGqii9Uwcolq_rk3ExYSMd/s400/2012-05-10_17-08-27_285.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
Future OKCSQL Officer &lt;a href=&quot;https://twitter.com/cognitivebi&quot; target=&quot;_blank&quot;&gt;Allen Smith&lt;/a&gt; on stage as a volunteer with presenters &lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;Adam
Jorgensen and Devin Knight&lt;/span&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;b&gt;SQL Saturday Oklahoma City 2012 &lt;/b&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj18JeBIz-f1_OJFSdSQ7YNCtuewd8elIBEzbPxu2Mh0q4Qg3JJZ-pRm4blEHkvo2-vBVM0xI34l2bSrZvdiXqtM_dlwrqsYumeqvxNyYGFoWW6RZuKZ53ehStYeBokMRQS4_OLpbPj_V-K/s1600/2012-08-25_12-32-33_200.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;225&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj18JeBIz-f1_OJFSdSQ7YNCtuewd8elIBEzbPxu2Mh0q4Qg3JJZ-pRm4blEHkvo2-vBVM0xI34l2bSrZvdiXqtM_dlwrqsYumeqvxNyYGFoWW6RZuKZ53ehStYeBokMRQS4_OLpbPj_V-K/s400/2012-08-25_12-32-33_200.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
Grant Fritchey and Jen McCown &lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjLAT2zW2ByErpukBuDABjoBJUQA82SRHdC2xO4GTx54qETlftyZTw55wMjHm-G1lbFzrgKVIDSK15kyqs2C0OEVizvF1SHVOXJ8NrHEN33m0wxBN0WqpVm1DsDqTv_Hqils5_ZIJG_-4Hv/s1600/SQLSatOKC2012InfDinner1.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;201&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjLAT2zW2ByErpukBuDABjoBJUQA82SRHdC2xO4GTx54qETlftyZTw55wMjHm-G1lbFzrgKVIDSK15kyqs2C0OEVizvF1SHVOXJ8NrHEN33m0wxBN0WqpVm1DsDqTv_Hqils5_ZIJG_-4Hv/s400/SQLSatOKC2012InfDinner1.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjiAy4gPhPn2UVT1Bf6EtkTXnpIsRHcav6iQYTlMHLye7gnRznQlCYF_A8ChDm6Fn4FG6Q5IBkqeQuqsykdCtZB12HnCMUIjJKUHaGpKbo5-ayQ-IcsdJyA6sfVCnhxxaYmgTzzdy0lVOMu/s1600/2012-08-25_12-36-35_373.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;br /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
Grant Fritchey, Tim Mitchell, &lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;Ryan Adams, Carlos Bossy, and Jeff Blankenbiller hanging out the night before&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;More photos from SQL Saturday Oklahoma City 2011 available at &lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&lt;a href=&quot;http://www.flickr.com/photos/timdmitchell/sets/72157627532203718/&quot;&gt;http://www.flickr.com/photos/timdmitchell/sets/72157627532203718/&lt;/a&gt; thanks to Tim Mitchell.&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;w:WordDocument&gt;
  &lt;w:View&gt;Normal&lt;/w:View&gt;
  &lt;w:Zoom&gt;0&lt;/w:Zoom&gt;
  &lt;w:TrackMoves/&gt;
  &lt;w:TrackFormatting/&gt;
  &lt;w:PunctuationKerning/&gt;
  &lt;w:ValidateAgainstSchemas/&gt;
  &lt;w:SaveIfXMLInvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;
  &lt;w:IgnoreMixedContent&gt;false&lt;/w:IgnoreMixedContent&gt;
  &lt;w:AlwaysShowPlaceholderText&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;
  &lt;w:DoNotPromoteQF/&gt;
  &lt;w:LidThemeOther&gt;EN-US&lt;/w:LidThemeOther&gt;
  &lt;w:LidThemeAsian&gt;X-NONE&lt;/w:LidThemeAsian&gt;
  &lt;w:LidThemeComplexScript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;
  &lt;w:Compatibility&gt;
   &lt;w:BreakWrappedTables/&gt;
   &lt;w:SnapToGridInCell/&gt;
   &lt;w:WrapTextWithPunct/&gt;
   &lt;w:UseAsianBreakRules/&gt;
   &lt;w:DontGrowAutofit/&gt;
   &lt;w:SplitPgBreakAndParaMark/&gt;
   &lt;w:EnableOpenTypeKerning/&gt;
   &lt;w:DontFlipMirrorIndents/&gt;
   &lt;w:OverrideTableStyleHps/&gt;
  &lt;/w:Compatibility&gt;
  &lt;m:mathPr&gt;
   &lt;m:mathFont m:val=&quot;Cambria Math&quot;/&gt;
   &lt;m:brkBin m:val=&quot;before&quot;/&gt;
   &lt;m:brkBinSub m:val=&quot;&amp;#45;-&quot;/&gt;
   &lt;m:smallFrac m:val=&quot;off&quot;/&gt;
   &lt;m:dispDef/&gt;
   &lt;m:lMargin m:val=&quot;0&quot;/&gt;
   &lt;m:rMargin m:val=&quot;0&quot;/&gt;
   &lt;m:defJc m:val=&quot;centerGroup&quot;/&gt;
   &lt;m:wrapIndent m:val=&quot;1440&quot;/&gt;
   &lt;m:intLim m:val=&quot;subSup&quot;/&gt;
   &lt;m:naryLim m:val=&quot;undOvr&quot;/&gt;
  &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;w:LatentStyles DefLockedState=&quot;false&quot; DefUnhideWhenUsed=&quot;true&quot;
  DefSemiHidden=&quot;true&quot; DefQFormat=&quot;false&quot; DefPriority=&quot;99&quot;
  LatentStyleCount=&quot;267&quot;&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;0&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Normal&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;heading 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 7&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 8&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 9&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 7&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 8&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 9&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;35&quot; QFormat=&quot;true&quot; Name=&quot;caption&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;10&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Title&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;1&quot; Name=&quot;Default Paragraph Font&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;11&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Subtitle&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;22&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Strong&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;20&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Emphasis&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;59&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Table Grid&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; UnhideWhenUsed=&quot;false&quot; Name=&quot;Placeholder Text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;1&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;No Spacing&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; UnhideWhenUsed=&quot;false&quot; Name=&quot;Revision&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;34&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;List Paragraph&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;29&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Quote&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;30&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Intense Quote&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;19&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Subtle Emphasis&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;21&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Intense Emphasis&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;31&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Subtle Reference&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;32&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Intense Reference&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;33&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Book Title&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;37&quot; Name=&quot;Bibliography&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; QFormat=&quot;true&quot; Name=&quot;TOC Heading&quot;/&gt;
 &lt;/w:LatentStyles&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 10]&gt;
&lt;style&gt;
 /* Style Definitions */
 table.MsoNormalTable
 {mso-style-name:&quot;Table Normal&quot;;
 mso-tstyle-rowband-size:0;
 mso-tstyle-colband-size:0;
 mso-style-noshow:yes;
 mso-style-priority:99;
 mso-style-parent:&quot;&quot;;
 mso-padding-alt:0in 5.4pt 0in 5.4pt;
 mso-para-margin-top:0in;
 mso-para-margin-right:0in;
 mso-para-margin-bottom:10.0pt;
 mso-para-margin-left:0in;
 line-height:115%;
 mso-pagination:widow-orphan;
 font-size:11.0pt;
 font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
 mso-ascii-font-family:Calibri;
 mso-ascii-theme-font:minor-latin;
 mso-hansi-font-family:Calibri;
 mso-hansi-theme-font:minor-latin;}
&lt;/style&gt;
&lt;![endif]--&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.kristinferrier.com/feeds/1477388438850102029/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2061295279717545721/1477388438850102029' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/1477388438850102029'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/1477388438850102029'/><link rel='alternate' type='text/html' href='http://www.kristinferrier.com/2013/07/my-journey-in-sql-community-sqlfamily.html' title='My Journey in the SQL Community / #SQLFamily'/><author><name>K. Ferrier</name><uri>http://www.blogger.com/profile/05041926877318330498</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7VRl2d9TvPoqL39t-OsEEKZNzfecnq633_-vKe7rQSiIe-QdywMNb9cKt7O3HFVCZZA6BEElASUU7b2Fg3mrNI3c-dOnOLSORwcW0BR70hJ7aMB9ycr9mR5nzSsdxx2M/s1600/*'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhsZ5qiLr2_77x0AEBx5aOmDII0kOsgeUG0m9qJ3EfmIRXdeCEUgmwyZ8-p7cgbZ3S-yzHo1xsbXar-dbfj8KfYcpsKj5lJlPU8qR0c-ZAJQtNzyCeaTLqTR1zni2vMAkmPdtAhSzfueijj/s72-c/6363878613_e9f53b3019_o.jpg" height="72" width="72"/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2061295279717545721.post-1813384766687369519</id><published>2013-06-29T10:09:00.000-07:00</published><updated>2013-07-06T11:51:19.378-07:00</updated><title type='text'>Displaying a 2 Level Hierarchy in GeoFlow</title><content type='html'>While working with GeoFlow, one concern that I quickly saw was that it didn&#39;t have the option to display data at a higher level of a geographical hierarchy and then drill down into a lower level. An example would be viewing data for a State/Province and then drilling down into City. While presenting GeoFlow to one of my employer&#39;s architects, she came up with a way to display two levels of a geographical hierarchy within GeoFlow, and she gave me permission to blog about it.&lt;br /&gt;
&lt;br /&gt;
The core concept is to display each level of the geographical hierarchy in a different layer. Each layer would use a different chart type. In our example we&#39;ll use bubble chart type for State/Province and column bar for City. Our source data is SQL Saturday 2012 Oklahoma City registrations by State and City. The result will be the following:&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;b&gt;GeoFlow: &lt;/b&gt;SQL Saturday Oklahoma City 2012 Registrations by State and by City&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
The bubble chart type represents the State data, and the column bars represent data by City.&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigPE8Z2xEo7NGKx70wOLMaHAvgdxepZx15cbVLS8EpJTazpJXAM67Z0UQxzakQZBkA3GKpHG9GDpe06_6hVKANtTgEhFvcVn9uwk5brR3Vo3zwKAwvuWthpUOOAKJMbYQ6yYMTM5KQoIKo/s1352/SQLSat2012Hierarchy5.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;202&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigPE8Z2xEo7NGKx70wOLMaHAvgdxepZx15cbVLS8EpJTazpJXAM67Z0UQxzakQZBkA3GKpHG9GDpe06_6hVKANtTgEhFvcVn9uwk5brR3Vo3zwKAwvuWthpUOOAKJMbYQ6yYMTM5KQoIKo/s400/SQLSat2012Hierarchy5.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
After starting the GeoFlow tour creation, the following are key points to follow:&lt;br /&gt;
&lt;br /&gt;
1) Select &lt;b&gt;City &lt;/b&gt;and &lt;b&gt;State &lt;/b&gt;for the Geography and &lt;b&gt;click Map It&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
2) Click the check boxes for &lt;b&gt;Attendee Type&lt;/b&gt;, &lt;b&gt;Registration Count&lt;/b&gt; and &lt;b&gt;Date Added. &lt;/b&gt;Chart Type of Column should default, if not, change the chart type to Column.&lt;br /&gt;
&lt;br /&gt;
3) Rename the first layer to Registration by City&lt;br /&gt;
&lt;br /&gt;
4) Click the &lt;b&gt;Add Layer&lt;/b&gt; button in the ribbon. This layer will display data at the State/Province layer, thus, allowing us to see data at that level of the geographical hierarchy, as well.&lt;br /&gt;
&lt;br /&gt;
5) Select &lt;b&gt;State&lt;/b&gt; and click &lt;b&gt;Map It&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
6) Click the check boxes for &lt;b&gt;Registration Count&lt;/b&gt; and &lt;b&gt;Date Added&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
7) Change &lt;b&gt;Chart Type to Bubble&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
8) Remove the Layer&#39;s legend and rename the layer to Registration by State&lt;br /&gt;
&lt;br /&gt;
For those interested, below are screenshots of the same data in PowerView.&lt;br /&gt;
&amp;nbsp;&lt;b&gt;&amp;nbsp;&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;b&gt;PowerView: &lt;/b&gt;SQL Saturday Oklahoma City 2012 Registrations by State&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0Iqu8fU4tJ5UeyQol2wh-D8ISEcL-APpYljaU-xwcyr7ASwpkPEzCiDJITaoYkDjUiQh9DtXEj06CcCktQ_ldRRGkWnvnzQ-pFnCAToDZSU-lgweydUK-EbKuhzXSHiUKjEHn3RVOhbxv/s813/SQLSat2012PowerViewByState.JPG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;297&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0Iqu8fU4tJ5UeyQol2wh-D8ISEcL-APpYljaU-xwcyr7ASwpkPEzCiDJITaoYkDjUiQh9DtXEj06CcCktQ_ldRRGkWnvnzQ-pFnCAToDZSU-lgweydUK-EbKuhzXSHiUKjEHn3RVOhbxv/s400/SQLSat2012PowerViewByState.JPG&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;b&gt;PowerView: &lt;/b&gt;SQL Saturday Oklahoma City 2012 Registrations by Cities in Oklahoma &lt;/b&gt;(drilled down from Oklahoma)&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiRa-x-u05N_b16OBWlTnB2OAGPytKGkxBmMNmkZVuu-andCvV6W3q5R58Mbeq-ia_8ZPKu0iyJ1nZ1q9BVTGRNDIRSisCpxFWzhk5KrmLapO1QmEJoQ08reFClk11nQDQq877hvbKvztJe/s812/SQLSat2012PowerViewByCity.JPG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;297&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiRa-x-u05N_b16OBWlTnB2OAGPytKGkxBmMNmkZVuu-andCvV6W3q5R58Mbeq-ia_8ZPKu0iyJ1nZ1q9BVTGRNDIRSisCpxFWzhk5KrmLapO1QmEJoQ08reFClk11nQDQq877hvbKvztJe/s400/SQLSat2012PowerViewByCity.JPG&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
While PowerView provides drill down capability via geographical hierarchy, using multiple layers allows us to display both levels of the hierarchy simultaneously within GeoFlow.&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;color: purple;&quot;&gt;Update (tip from @mssqlgirl): In GeoFlow, if you have selected multiple geography fields, like City and
 State, within a layer, you can use the below option to switch back and 
forth between the geographical hierarchy levels, while in &quot;Design&quot; mode. I&#39;ve yet to find a way 
to do this within &quot;Play&quot; mode for a tour.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiy0kPLWFG_hYkUvQ4UTd6oLP3KwVEJRFW6vbrIyEy-Xk8EYNRN9_6_qZmQqO50aSsuwEOU1XYpBAvwdezLynRxTQXcc5AHOPZWCv-8w-4BxFudy_PrA1V3rgCNCsDhk0Ng2Bd2LTyxgajX/s1600/MapByFilter.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiy0kPLWFG_hYkUvQ4UTd6oLP3KwVEJRFW6vbrIyEy-Xk8EYNRN9_6_qZmQqO50aSsuwEOU1XYpBAvwdezLynRxTQXcc5AHOPZWCv-8w-4BxFudy_PrA1V3rgCNCsDhk0Ng2Bd2LTyxgajX/s1600/MapByFilter.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.kristinferrier.com/feeds/1813384766687369519/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2061295279717545721/1813384766687369519' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/1813384766687369519'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/1813384766687369519'/><link rel='alternate' type='text/html' href='http://www.kristinferrier.com/2013/06/displaying-2-level-hierarchy-in-geoflow.html' title='Displaying a 2 Level Hierarchy in GeoFlow'/><author><name>K. Ferrier</name><uri>http://www.blogger.com/profile/05041926877318330498</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7VRl2d9TvPoqL39t-OsEEKZNzfecnq633_-vKe7rQSiIe-QdywMNb9cKt7O3HFVCZZA6BEElASUU7b2Fg3mrNI3c-dOnOLSORwcW0BR70hJ7aMB9ycr9mR5nzSsdxx2M/s1600/*'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigPE8Z2xEo7NGKx70wOLMaHAvgdxepZx15cbVLS8EpJTazpJXAM67Z0UQxzakQZBkA3GKpHG9GDpe06_6hVKANtTgEhFvcVn9uwk5brR3Vo3zwKAwvuWthpUOOAKJMbYQ6yYMTM5KQoIKo/s72-c/SQLSat2012Hierarchy5.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2061295279717545721.post-5503848536448447696</id><published>2013-05-13T19:20:00.002-07:00</published><updated>2013-05-13T19:20:59.613-07:00</updated><title type='text'>3D Geospatial Visualization Using GeoFlow Slides</title><content type='html'>Tonight I had the opportunity to give a GeoFlow presentation titled &lt;i&gt;3D Geospatial Visualization Using GeoFlow&lt;/i&gt; to &lt;a href=&quot;http://okcsql.org/&quot; target=&quot;_blank&quot;&gt;OKCSQL&lt;/a&gt;. Thanks to all who attended for some great discussion. The slides are available &lt;a href=&quot;http://www.slideshare.net/kristinferrier/3-d-geospatial-visualization-using-geoflow-onlineupload&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Abstract:&lt;br /&gt;
&lt;br /&gt;
Learn what GeoFlow is and how to use it for 3D visualization of data that can be time-stamped. You can create static charts or interactive animated tours. GeoFlow is one of Microsoft’s latest releases in the BI spectrum.</content><link rel='replies' type='application/atom+xml' href='http://www.kristinferrier.com/feeds/5503848536448447696/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2061295279717545721/5503848536448447696' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/5503848536448447696'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/5503848536448447696'/><link rel='alternate' type='text/html' href='http://www.kristinferrier.com/2013/05/3d-geospatial-visualization-using_13.html' title='3D Geospatial Visualization Using GeoFlow Slides'/><author><name>K. Ferrier</name><uri>http://www.blogger.com/profile/05041926877318330498</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7VRl2d9TvPoqL39t-OsEEKZNzfecnq633_-vKe7rQSiIe-QdywMNb9cKt7O3HFVCZZA6BEElASUU7b2Fg3mrNI3c-dOnOLSORwcW0BR70hJ7aMB9ycr9mR5nzSsdxx2M/s1600/*'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2061295279717545721.post-4659345788428243061</id><published>2013-05-10T15:29:00.001-07:00</published><updated>2013-05-10T15:30:14.450-07:00</updated><title type='text'>Analyzing Against Weather Data using GeoFlow</title><content type='html'>I had been wondering what would be a good use of multiple layers within GeoFlow. Today I finally realized that they could be used when analyzing a measure against weather temperatures. For example, you might want to analyze sales revenue at stores against the local temperature. In my example below, I used real weather data against fake customer count data for the first week in May.&lt;br /&gt;
&lt;br /&gt;
The following are the key points that I followed:&lt;br /&gt;
&lt;br /&gt;
1) I selected City and State for the Geography and clicked Map It&lt;br /&gt;
&lt;br /&gt;
2) I&amp;nbsp;then clicked the check boxes for Mean Temp and Date. Next I selected &lt;strong&gt;HeatMap&lt;/strong&gt; as the Chart Type. For the Value I selected Mean Temp with &lt;strong&gt;No Aggregation&lt;/strong&gt;. I used Date for the Time.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjspeoafteNVhAjQOuEM7krQEACTlI5e2A4ZklgM2-x-WV8dQsn2Zv_diZ4FP6r2k-0_N1DI8JZyLRiL3LYuypq7MA6RrpR_GybAlgvbvBtbIqv9MlgIzlL9xDybsJsj383iVe_-fsAbaN8/s1600/ValueSetting.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; mwa=&quot;true&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjspeoafteNVhAjQOuEM7krQEACTlI5e2A4ZklgM2-x-WV8dQsn2Zv_diZ4FP6r2k-0_N1DI8JZyLRiL3LYuypq7MA6RrpR_GybAlgvbvBtbIqv9MlgIzlL9xDybsJsj383iVe_-fsAbaN8/s1600/ValueSetting.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
2) I&amp;nbsp;clicked the Add Layer button in the ribbon. For the second layer, I selected Customer Count and Date.&amp;nbsp;I selected &lt;strong&gt;Column &lt;/strong&gt;as the Chart Type. For Height, I selected Customer Count with &lt;strong&gt;No Aggregation&lt;/strong&gt;. I used Date for the Time.&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgxFcZR1kDVtI_bvnl62NO1yBKGdUyfwfM1sMXm5GpB2eog3KLd01pp25pVgib6NbQ45OdMDR0Zl0znFO6GR_xgnzoJfXwPsF7rTO8Mr6Xt0qjjA5m4lVh1hyLmsQxHFkjG4LsSEucKVl22/s1600/ValueSetting3.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; mwa=&quot;true&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgxFcZR1kDVtI_bvnl62NO1yBKGdUyfwfM1sMXm5GpB2eog3KLd01pp25pVgib6NbQ45OdMDR0Zl0znFO6GR_xgnzoJfXwPsF7rTO8Mr6Xt0qjjA5m4lVh1hyLmsQxHFkjG4LsSEucKVl22/s1600/ValueSetting3.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
3) I then performed other standard tasks like adding my title via text box and renaming my layers.&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
﻿Then end result allowed me to compare customer counts against weather temperatures. Below are screenshots from the resulting GeoFlow tour.&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;strong&gt;Warmer weather had higher customer counts&lt;/strong&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgruFFLoZhcyQhVXAV2qMusacCl9-NkKulfLvSZLsjT27BYw4xFOYpWU2ZQ6Io9AY2Mm4aOtGCW46vDowbfbQ-lSnDFQKwGsCnBVrMYBJb_e7uKjYacNPN24og3tOHdnNSQGKicDVdLx52B/s1600/May1Weather.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;322&quot; mwa=&quot;true&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgruFFLoZhcyQhVXAV2qMusacCl9-NkKulfLvSZLsjT27BYw4xFOYpWU2ZQ6Io9AY2Mm4aOtGCW46vDowbfbQ-lSnDFQKwGsCnBVrMYBJb_e7uKjYacNPN24og3tOHdnNSQGKicDVdLx52B/s400/May1Weather.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&amp;nbsp;&lt;strong&gt;Colder Weather had lower customer counts&lt;/strong&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh-9LB7XyrIZZL2d2GkJwOSFz1apYq6jo94AfM5cNRqADRRkTZEd22La2SSHHyJBb1rWaj9zauK6aI1HBpJ7Kz8P0XbCMPr_vGg4mwrv3e8fkyTOE1B8H5fkOzfpKUFSTkJmxabcRQCK5Y1/s1600/May4WeatherA.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;322&quot; mwa=&quot;true&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh-9LB7XyrIZZL2d2GkJwOSFz1apYq6jo94AfM5cNRqADRRkTZEd22La2SSHHyJBb1rWaj9zauK6aI1HBpJ7Kz8P0XbCMPr_vGg4mwrv3e8fkyTOE1B8H5fkOzfpKUFSTkJmxabcRQCK5Y1/s400/May4WeatherA.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
The real weather data came from an free on-line source. Below is the overall dataset that I used. I added in the State and Customer Count columns.&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiI7EKOHMZcUlSyLzoTZDEH6tXPtKFUKS7kyOYibxZbZ1tItV025AchQ1tVYNoJuJmrJMCE5K6nniLQTjc9L4vheqNGBbZQhkdVeUE7AssXHdOSe_bCjRquSxPgAxoLSoNMtcZ5Cb8ZgUsa/s1600/WeatherDataSet.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;227&quot; mwa=&quot;true&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiI7EKOHMZcUlSyLzoTZDEH6tXPtKFUKS7kyOYibxZbZ1tItV025AchQ1tVYNoJuJmrJMCE5K6nniLQTjc9L4vheqNGBbZQhkdVeUE7AssXHdOSe_bCjRquSxPgAxoLSoNMtcZ5Cb8ZgUsa/s320/WeatherDataSet.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
I&#39;ll be speaking at OKCSQL next week on GeoFlow. Now I have a great answer to &quot;Why would you want to use two layers?&quot;﻿&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://www.kristinferrier.com/feeds/4659345788428243061/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2061295279717545721/4659345788428243061' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/4659345788428243061'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/4659345788428243061'/><link rel='alternate' type='text/html' href='http://www.kristinferrier.com/2013/05/analyzing-against-weather-data-using.html' title='Analyzing Against Weather Data using GeoFlow'/><author><name>K. Ferrier</name><uri>http://www.blogger.com/profile/05041926877318330498</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7VRl2d9TvPoqL39t-OsEEKZNzfecnq633_-vKe7rQSiIe-QdywMNb9cKt7O3HFVCZZA6BEElASUU7b2Fg3mrNI3c-dOnOLSORwcW0BR70hJ7aMB9ycr9mR5nzSsdxx2M/s1600/*'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjspeoafteNVhAjQOuEM7krQEACTlI5e2A4ZklgM2-x-WV8dQsn2Zv_diZ4FP6r2k-0_N1DI8JZyLRiL3LYuypq7MA6RrpR_GybAlgvbvBtbIqv9MlgIzlL9xDybsJsj383iVe_-fsAbaN8/s72-c/ValueSetting.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2061295279717545721.post-8486715181264589850</id><published>2013-04-25T18:48:00.001-07:00</published><updated>2013-04-25T19:34:44.608-07:00</updated><title type='text'>North American SQL Saturdays in GeoFlow</title><content type='html'>I was asked earlier this week to break out my US SQL Saturdays GeoFlow chart by year. While I was at it, I added in the 5 events from Canada and Mexico. The results are below.&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b&gt;North American SQL Saturdays through April 2013&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiLvQscTWM9md160w62fss19o9juxI8LRQGz_1LLFCb5QEqvIRXle0Asi_R4YwKn-0XnDEpH5BzgzBouGYyrUMoI57uSXUOKw2BDzT3sbEjz0HK_AyQO5IXuOBtHBEHrWJo7F7rmQNAx_V6/s1600/NorthAmerica1.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;201&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiLvQscTWM9md160w62fss19o9juxI8LRQGz_1LLFCb5QEqvIRXle0Asi_R4YwKn-0XnDEpH5BzgzBouGYyrUMoI57uSXUOKw2BDzT3sbEjz0HK_AyQO5IXuOBtHBEHrWJo7F7rmQNAx_V6/s400/NorthAmerica1.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj1tV58BNaVVB3XKNsJSjzyP5nAaL0IpywQ8FVnHMI3XFALFFkxgjez4wrFIiOum6ZAtEnWWzIyo0ioR0ubqgR4tSn-K7lZ3ZgejWO8dYhthvA3uyIVErPuRfc7J5VXZ86wd5PfvDPHXE_x/s1600/NorthAmerica3.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
GeoFlow Tour &lt;b&gt;&lt;a href=&quot;http://youtu.be/A3qmqHJvjqI&quot; target=&quot;_blank&quot;&gt;VIDEO here&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I thought this GeoFlow tour would be a good chance to show off various GeoFlow themes and chart types.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Zoom In on Oklahoma, Texas, and Louisiana with a different theme &lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj1RpvYRCO0UMSFGF-oFSWzSkdwRzpJqzFJSVtmt72mAQkpX2bQoQEltBDMRqCLNxBnE5mVYky3J02GePHGJBXGkCFzZajve2ho8rkazD0-VWhddIx5GFHJGfaUB0rUgRDc5EPANYAfMKAy/s1600/OKLATX.JPG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;362&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj1RpvYRCO0UMSFGF-oFSWzSkdwRzpJqzFJSVtmt72mAQkpX2bQoQEltBDMRqCLNxBnE5mVYky3J02GePHGJBXGkCFzZajve2ho8rkazD0-VWhddIx5GFHJGfaUB0rUgRDc5EPANYAfMKAy/s400/OKLATX.JPG&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj5XYOK1GIqIPTzAOrCZt6D92VUasDSBZz4XVb84ExZiDkpIE_dwd_bFPm03NplcYn1EuQ34kehPMW9D_P263_JT4OfgIRGiaLRzIbeVrqTaxrHj3YPtvbl_IDTTorY10XXn7ZwIb5Gd7EX/s1600/NorthAmericaDataSet.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b&gt;Contiguous United States and Canada with Bubble Chart&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjQ6rG43QIy6HYAs5YcoHc46vZ_6Zcd1mUEw7VMlHnq9jsyTsoLVNy0yahEZTHK_xUidnKI3NtEUGmTjqNb-mTtxECejnQbUGKBALKpnQKHdZaqsaPYoH7a6wsy1_mKnV2m_gTGT3fQ4ZLw/s1600/NorthAmericaBubbles.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;260&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjQ6rG43QIy6HYAs5YcoHc46vZ_6Zcd1mUEw7VMlHnq9jsyTsoLVNy0yahEZTHK_xUidnKI3NtEUGmTjqNb-mTtxECejnQbUGKBALKpnQKHdZaqsaPYoH7a6wsy1_mKnV2m_gTGT3fQ4ZLw/s400/NorthAmericaBubbles.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;b&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;b&gt;Dataset Excerpt (blue fields were used by the GeoFlow Tour)&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEim9yp1gy7gl0dSfpaeTIfcwIyVTRkYTiHFRgrkCsIzVST6KVh4WJQM2cd__PxL1ORFUXklicOtIJ1lVEH7swJIQxaVK4Ms1QbwlO4KvmjamhTURBeEThPoP7R5jSUhrHHuvmlcQ6Y44hJz/s1600/NorthAmericaDataSet.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;90&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEim9yp1gy7gl0dSfpaeTIfcwIyVTRkYTiHFRgrkCsIzVST6KVh4WJQM2cd__PxL1ORFUXklicOtIJ1lVEH7swJIQxaVK4Ms1QbwlO4KvmjamhTURBeEThPoP7R5jSUhrHHuvmlcQ6Y44hJz/s400/NorthAmericaDataSet.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
I had fun putting together these charts for Karla Landrum. During this process, however, I did run into some issues with GeoFlow. &lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;GeoFlow Issue Encountered &lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
I added the Event Type by Year and Country fields to my Excel table in order 
to do the breakdown by year and to include Canada and Mexico. Unfortunately, the GeoFlow tour was not acknowledging Country as a possible field to select as a geography field. Closing Excel and re-opening did not solve this problem. Trying to create a new GeoFlow Tour within the Excel spreadsheet did not work either. My solution ended up being to copy/paste the entire table into a brand new spreadsheet and create a new GeoFlow Tour. At that point Country became available as a Geography field. &lt;br /&gt;
&lt;br /&gt;
Minus these kinds of issues, I&#39;ve been enjoying working with GeoFlow. I would welcome the opportunity to hear your GeoFlow questions or hear about your GeoFlow experiences in the comments section.</content><link rel='replies' type='application/atom+xml' href='http://www.kristinferrier.com/feeds/8486715181264589850/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2061295279717545721/8486715181264589850' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/8486715181264589850'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/8486715181264589850'/><link rel='alternate' type='text/html' href='http://www.kristinferrier.com/2013/04/north-american-sql-saturdays-in-geoflow.html' title='North American SQL Saturdays in GeoFlow'/><author><name>K. Ferrier</name><uri>http://www.blogger.com/profile/05041926877318330498</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7VRl2d9TvPoqL39t-OsEEKZNzfecnq633_-vKe7rQSiIe-QdywMNb9cKt7O3HFVCZZA6BEElASUU7b2Fg3mrNI3c-dOnOLSORwcW0BR70hJ7aMB9ycr9mR5nzSsdxx2M/s1600/*'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiLvQscTWM9md160w62fss19o9juxI8LRQGz_1LLFCb5QEqvIRXle0Asi_R4YwKn-0XnDEpH5BzgzBouGYyrUMoI57uSXUOKw2BDzT3sbEjz0HK_AyQO5IXuOBtHBEHrWJo7F7rmQNAx_V6/s72-c/NorthAmerica1.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2061295279717545721.post-3217330599177511779</id><published>2013-04-20T09:47:00.000-07:00</published><updated>2013-08-19T18:12:19.389-07:00</updated><title type='text'>GeoFlow Viewer Please</title><content type='html'>Over the past week or so, I&#39;ve seen a lot of people ask the following:&lt;br /&gt;
&lt;br /&gt;
How can I provide my GeoFlow Tour for consumption in&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;PowerPoint&lt;/li&gt;
&lt;li&gt;SharePoint&lt;/li&gt;
&lt;li&gt;My website&lt;/li&gt;
&lt;li&gt;A tablet&lt;/li&gt;
&lt;li&gt;Any mobile device?&lt;/li&gt;
&lt;/ul&gt;
I think it&#39;s great that people are asking these questions. It suggests that people want to use GeoFlow. The problem, is that currently there isn&#39;t a way, that I know of, to present GeoFlow tours in those above formats minus a tablet running Windows 8 (non-RT) with Excel 2013 Professional or certain versions of Office 365.&lt;br /&gt;
&lt;br /&gt;
There are a lot of discussions about Microsoft needing a mobile BI strategy, and I agree. When I was at Dallas Day of Dot Net in February, I heard a presenter talking about how the PC era is dying and mobile is taking over. From my perspective, software developers not learning about mobile software development may find themselves not nearly as marketable as they used to be. I say this as someone with a lot of software development industry experience and not someone looking in from the outside.&lt;br /&gt;
&lt;br /&gt;
Now back to BI, and GeoFlow specifically, what are some options for making GeoFlow consumable from the aforementioned devices and software? Let&#39;s consider Office 365. Office Mobile Viewers are already &lt;a href=&quot;http://office.microsoft.com/en-us/office365-suite-help/use-office-web-apps-on-your-android-iphone-or-windows-phone-HA010389583.aspx?CTT=5&amp;amp;origin=HA103787372&quot; target=&quot;_blank&quot;&gt;supported&lt;/a&gt; on iPhone, Android and Windows phones. GeoFlow, however, is not. &lt;b&gt;&amp;nbsp;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Here are some ideas for the future:&lt;b&gt; &lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&lt;b&gt;GeoFlow mobile viewer that works with Office 365. &lt;/b&gt;Thanks to &lt;a href=&quot;http://www.jenstirrup.com/&quot; target=&quot;_blank&quot;&gt;Jen Stirrup&lt;/a&gt; for bringing to our attention that Office 365 may be a great direction for Microsoft to go with their mobile BI strategy. Jen&#39;s feedback was provided via comment on a blog post &lt;a href=&quot;http://sqlblog.com/blogs/jamie_thomson/archive/2013/04/14/geoflow-is-that-it-microsoft.aspx&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;b&gt;GeoFlow SharePoint web part&lt;/b&gt; for displaying GeoFlow tours&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;b&gt;Save to Animation option&lt;/b&gt; within GeoFlow. This should provide a good option for presenting GeoFlow data within a PowerPoint Presentation. &lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
There were several people on-line that also mentioned wanting to see GeoFlow merged in with Power View and then providing a Power View Viewer. At least one person mentioned wanting to be able to build GeoFlow tours using mobile. The primary message, though, was GeoFlow consumption beyond Excel 2013 on a PC. Hopefully, Microsoft will be able to take some of our GeoFlow ideas and put them into reality.&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;color: magenta;&quot;&gt;&lt;span style=&quot;color: purple;&quot;&gt;Update: GeoFlow has been renamed to Power Map and is scheduled to be part of&lt;/span&gt;&lt;/span&gt; &lt;a href=&quot;http://office.microsoft.com/en-us/excel/power-bi-FX104080667.aspx&quot; target=&quot;_blank&quot;&gt;Power BI for Office 365&lt;/a&gt;! </content><link rel='replies' type='application/atom+xml' href='http://www.kristinferrier.com/feeds/3217330599177511779/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2061295279717545721/3217330599177511779' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/3217330599177511779'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/3217330599177511779'/><link rel='alternate' type='text/html' href='http://www.kristinferrier.com/2013/04/geoflow-viewer-please.html' title='GeoFlow Viewer Please'/><author><name>K. Ferrier</name><uri>http://www.blogger.com/profile/05041926877318330498</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7VRl2d9TvPoqL39t-OsEEKZNzfecnq633_-vKe7rQSiIe-QdywMNb9cKt7O3HFVCZZA6BEElASUU7b2Fg3mrNI3c-dOnOLSORwcW0BR70hJ7aMB9ycr9mR5nzSsdxx2M/s1600/*'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2061295279717545721.post-1528442941688030889</id><published>2013-04-13T14:37:00.000-07:00</published><updated>2013-10-26T13:15:19.358-07:00</updated><title type='text'>Using GeoFlow to create SQL Saturday Emergence Video</title><content type='html'>On Thursday evening, I downloaded the Community Preview of GeoFlow. I just had to try out GeoFlow the first day it was available. That resulted in me creating a map of the past 1.5 years of U.S. based SQL Saturdays and tweeting a picture of that map &lt;a href=&quot;https://twitter.com/sqlenergy/status/322549563703582723/photo/1&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
This afternoon my goal was to make a video showing the emergence of all U.S. based SQL Saturdays which may be seen &lt;a href=&quot;http://www.youtube.com/watch?feature=player_embedded&amp;amp;v=njzMQ3G_HRc&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
GeoFlow is a free add-on to Excel 2013. You&#39;ll need Office Professional Plus 2013, Office 365 ProPlus, or the Midsize, E3, or E4 versions of Office 365.&lt;br /&gt;
&lt;br /&gt;
I liked how easy GeoFlow was to start using once I had installed both Excel 2013 and GeoFlow. I did, however, have an initial issue of the GeoFlow button being greyed out. This appears to have been an issue for some others, as well. I&#39;ve heard at least one person say that disabling and re-enabling the add-on worked for them. In my case I un-installed my no longer needed Office 2007, and that fixed the issue for me.&lt;br /&gt;
&lt;br /&gt;
In order to use GeoFlow you&#39;ll need to put data into an Excel table and then select Insert--&amp;gt; Map--&amp;gt;Launch GeoFlow--&amp;gt;New Tour&lt;span id=&quot;goog_2067887909&quot;&gt;&lt;/span&gt;&lt;span id=&quot;goog_2067887910&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgpj6pr1qit0101MrefwEnJjW6T-4D4XCYjkmxQUEQrd2W3H4M5mm4JteSrGIkM8u_qWPexi4rHY6b35BUx0_QM3ZRn3oZOmmU0HfhPR5tTFRkgYrwClw3_YeS09k5OdHh23OwvbfMmp9h7/s1600/MapButton.JPG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;55&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgpj6pr1qit0101MrefwEnJjW6T-4D4XCYjkmxQUEQrd2W3H4M5mm4JteSrGIkM8u_qWPexi4rHY6b35BUx0_QM3ZRn3oZOmmU0HfhPR5tTFRkgYrwClw3_YeS09k5OdHh23OwvbfMmp9h7/s320/MapButton.JPG&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
Much of what you need to know to get started may be found by downloading the sample Excel data sets available on the site containing the Community Preview. The sample data set I downloaded included instructions on how to build an initial tour.&lt;br /&gt;
&lt;br /&gt;
Having worked with the tool beyond those tutorials, though, I have found GeoFlow powerful but sometimes hard to navigate. For example, the below option to set the time length I found by clicking Play Tour and then exiting the tour. There&#39;s probably an easier way to find the setting, but I wasn&#39;t able to quickly find it. (Update: To get to the below setting, with Tour Editor on, click on the Scene and then click on the cog/wheel icon on the scene.)&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEirUwqr8nqBx63LTAbwHzS7ZYlHfWqHGkdq9-8X9a11zg7cfrM60_M7TFpVB3xi-GmayMC2RFvdvKEoNKZa46ZKxnXP0tHWkqX-nHjyO8ETqohz3TvX9WUT-pgxJ09YYGKFsUKamyPOdwSr/s1600/SetTime2.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEirUwqr8nqBx63LTAbwHzS7ZYlHfWqHGkdq9-8X9a11zg7cfrM60_M7TFpVB3xi-GmayMC2RFvdvKEoNKZa46ZKxnXP0tHWkqX-nHjyO8ETqohz3TvX9WUT-pgxJ09YYGKFsUKamyPOdwSr/s320/SetTime2.jpg&quot; width=&quot;218&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
The following items are things I would like to see in a future version, assuming they are not hidden somewhere in the CP. (Update: Added a few items and clarified a few others.)&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;a href=&quot;http://www.blogger.com/blogger.g?blogID=2061295279717545721&quot; imageanchor=&quot;1&quot; style=&quot;clear: right; float: right; margin-bottom: 1em; margin-left: 1em;&quot;&gt;&lt;/a&gt;
&lt;li&gt;Capability to align the Title text in a textbox.&lt;/li&gt;
&lt;li&gt;Capability to change the colors being used for items in a legend, minus changing Themes. For example, if I have two event types like SQL Saturday and SQL Rally, I would like to be able to pick the color attached to each item. &lt;span style=&quot;color: purple;&quot;&gt;Update: This feature became available in the September preview release.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;Provide an optional window for a second portion of the map, like for Hawaii and Alaska which do not show up in a zoomed in map of the U.S. (In my video I scrolled the map over to Hawaii at the end)&lt;/li&gt;
&lt;li&gt;Capability to save the animation of a tour to video file format. I used Camtasia to screen grab my tour&#39;s video. &lt;span style=&quot;color: purple;&quot;&gt;Update: This feature became available in the September preview release.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;Capability to embed an actual interactive GeoFlow tour into a PowerPoint presentation. Even if the machine had to have Excel 2013, this would be nice. &lt;/li&gt;
&lt;li&gt;An option for the values in the optional 2D chart to grow as time passes in the animation. Currently, the values appear static in the 2D chart.&lt;/li&gt;
&lt;li&gt;An optional 2D rolling total for the measurement regardless of geo-spatial location. For example, if 67 SQL Saturdays have appeared by date X, then 67 would show as the total.&lt;br /&gt;&amp;nbsp;&lt;/li&gt;
&lt;/ul&gt;
Below are a few of the things I really like.&lt;br /&gt;
&lt;br /&gt;
Once I went through one of the tutorials, it was very easy to get my first map screenshot ready. I had one tweeted on day 1. &lt;br /&gt;
&lt;br /&gt;
When playing a tour, you can stop it at any time and hover over an item in the map to see the data as of the point in time when the video was stopped.&amp;nbsp; This screenshot was from me stopping at the 10/27/2008 point in time. Orlando has had several more SQL Saturdays since October 2008.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhSMDsiF40n7QPDEGIyzjyWF9X7ATVIgeqRJQpt0u1QvpD_2ekgJUHHHwwwQQQvwzzklvaxa6wCQc14Fv0BCiPNkT4Jc4y7_zsohUvGcXTuxYIhdT_WvdKHYZsM3creAnBQCWv3m2M_r_MM/s1600/Orlando.JPG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;164&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhSMDsiF40n7QPDEGIyzjyWF9X7ATVIgeqRJQpt0u1QvpD_2ekgJUHHHwwwQQQvwzzklvaxa6wCQc14Fv0BCiPNkT4Jc4y7_zsohUvGcXTuxYIhdT_WvdKHYZsM3creAnBQCWv3m2M_r_MM/s320/Orlando.JPG&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
Overall I&#39;ve enjoyed trying out GeoFlow and look forward to seeing more of GeoFlow&#39;s potential. </content><link rel='replies' type='application/atom+xml' href='http://www.kristinferrier.com/feeds/1528442941688030889/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2061295279717545721/1528442941688030889' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/1528442941688030889'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/1528442941688030889'/><link rel='alternate' type='text/html' href='http://www.kristinferrier.com/2013/04/using-geoflow-to-create-sql-saturday.html' title='Using GeoFlow to create SQL Saturday Emergence Video'/><author><name>K. Ferrier</name><uri>http://www.blogger.com/profile/05041926877318330498</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7VRl2d9TvPoqL39t-OsEEKZNzfecnq633_-vKe7rQSiIe-QdywMNb9cKt7O3HFVCZZA6BEElASUU7b2Fg3mrNI3c-dOnOLSORwcW0BR70hJ7aMB9ycr9mR5nzSsdxx2M/s1600/*'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgpj6pr1qit0101MrefwEnJjW6T-4D4XCYjkmxQUEQrd2W3H4M5mm4JteSrGIkM8u_qWPexi4rHY6b35BUx0_QM3ZRn3oZOmmU0HfhPR5tTFRkgYrwClw3_YeS09k5OdHh23OwvbfMmp9h7/s72-c/MapButton.JPG" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2061295279717545721.post-1766742378734650057</id><published>2012-01-14T16:44:00.000-08:00</published><updated>2012-01-14T16:44:40.108-08:00</updated><title type='text'>SQL Server vs. Oracle Differences Part 2 (Object Naming Differences)</title><content type='html'>There are a couple of key object naming differences that I noticed when working with Oracle for the first time. The first is the max character difference. In SQL Server, an identifier (table name, view name, stored procedure name, etc.) can have a max of 128 characters. In Oracle, the max length is 30 characters, except for a few cases. Coming from SQL Server, the 30-character restriction in Oracle was quite noticeable. I especially noticed it when naming stored procedures. I&#39;ve found myself having to abbreviate words when naming Oracle stored procedures instead of spelling words completely out.&lt;br /&gt;
&lt;br /&gt;
Another difference with naming appears to be somewhat related to the GUI tools. With SQL Server, if you create table Orders, SQL Server Management Studio (SSMS) will display it as Orders. In Oracle, however, a table created as Orders will display in the GUI as
 ORDERS. This occurs because nonquoted
identifiers, like Orders, are not case sensitive with Oracle. Oracle 
interprets them as uppercase. Thus you&#39;ll see the table you created as Orders listed as 
ORDERS when looking at the database through a GUI tool like Toad or SQL 
Developer.&amp;nbsp; Quoted identifiers, such as &quot;Orders&quot; are case sensitive, but
 then you are required to include the quotes when referencing the 
object. Since nonquoted identifiers tend to be more popular when naming 
common objects such as tables, views, stored procedures, etc. I found 
this important to note.&lt;br /&gt;
&lt;br /&gt;
Oracle&#39;s upper-casing interpretation of nonquoted
 identifiers has 
resulted in a somewhat common practice of using underscores when naming objects. For example
 a SQL Server stored procedure SelectProductsByCategory might be named 
SELECT_PRODUCTS_BY_CATEGORY in Oracle. In this case we have a 27 
character name, which is just barely under the 30 character limit. If we
 wanted to rename SelectProductsBySubCategory to 
SELECT_PRODUCTS_BY_SUB_CATEGORY we would be at 31 characters which is 1 beyond the max. The use of underscores, in this case, is what pushes us above the 30 character max. &lt;br /&gt;
&lt;br /&gt;
Fortunately, from a querying perspective,&amp;nbsp; the casing of object names doesn&#39;t seem to be as relevant. That is, of course, dependent upon the settings. Assuming your SQL Server database is created with a Case Insensitive collation, SQL Server will not require specific casing when querying your objects. If you create table Orders, both &quot;SELECT * FROM Orders&quot; and &quot;SELECT * FROM 
ORDERS&quot; will be valid queries. With Oracle (using the default settings), &quot;SELECT * FROM Orders&quot;and &quot;SELECT * FROM 
ORDERS&quot; would both be valid, as well.&lt;br /&gt;
&lt;br /&gt;
There are, of course, more details on SQL Server and Oracle naming rules than I&#39;ve been able to put into my post. SQL Server&#39;s naming conventions are available &lt;a href=&quot;http://msdn.microsoft.com/en-us/library/ms187879%28v=SQL.100%29.aspx&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;. Oracle&#39;s naming rules are available &lt;a href=&quot;http://docs.oracle.com/cd/E11882_01/server.112/e10592/sql_elements008.htm&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-family: &amp;quot;Calibri&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 11pt; line-height: 115%;&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;margin-left: .5in; mso-list: l0 level1 lfo1; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;
&lt;span style=&quot;font: 7pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&lt;/span&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.kristinferrier.com/feeds/1766742378734650057/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2061295279717545721/1766742378734650057' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/1766742378734650057'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/1766742378734650057'/><link rel='alternate' type='text/html' href='http://www.kristinferrier.com/2012/01/sql-server-vs-oracle-differences-part-2.html' title='SQL Server vs. Oracle Differences Part 2 (Object Naming Differences)'/><author><name>K. Ferrier</name><uri>http://www.blogger.com/profile/05041926877318330498</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7VRl2d9TvPoqL39t-OsEEKZNzfecnq633_-vKe7rQSiIe-QdywMNb9cKt7O3HFVCZZA6BEElASUU7b2Fg3mrNI3c-dOnOLSORwcW0BR70hJ7aMB9ycr9mR5nzSsdxx2M/s1600/*'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2061295279717545721.post-5030167581995476055</id><published>2012-01-10T19:01:00.000-08:00</published><updated>2012-01-10T19:01:46.362-08:00</updated><title type='text'>SQL Server vs. Oracle Differences Part 1 (Cursors)</title><content type='html'>Since my first job out of college, where I was working with SQL Server 6.5, I&#39;ve been told that cursors are BAD, BAD, BAD! Cursors are evil! I was, eventually told the reason to be performance. In SQL Server world, cursors are still considered evil in most situations. I would submit that T-SQL code with a cursor would be considered &quot;bad code&quot; by many in SQL Server world, assuming there wasn&#39;t a code comment explaining the use of cursor. I&#39;m not saying this is right or wrong, I&#39;m just submitting what I would expect would happen. &lt;br /&gt;
&lt;br /&gt;
Now get ready for it, with Oracle PL/SQL, cursors are often a BEST PRACTICE! This was, probably, the hardest best practice difference for me to grasp. Cursors are very much accepted as good practice in Oracle world. You&#39;ll even see them used quite often in Steven Feuerstein&#39;s &lt;a href=&quot;http://www.amazon.com/Oracle-PL-SQL-Best-Practices/dp/0596514107/ref=sr_1_2?s=books&amp;amp;ie=UTF8&amp;amp;qid=1326246720&amp;amp;sr=1-2&quot; target=&quot;_blank&quot;&gt;Oracle PL/SQL Best Practices&lt;/a&gt; book that I found to be very useful.</content><link rel='replies' type='application/atom+xml' href='http://www.kristinferrier.com/feeds/5030167581995476055/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2061295279717545721/5030167581995476055' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/5030167581995476055'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/5030167581995476055'/><link rel='alternate' type='text/html' href='http://www.kristinferrier.com/2012/01/sql-server-vs-oracle-differences-part-1.html' title='SQL Server vs. Oracle Differences Part 1 (Cursors)'/><author><name>K. Ferrier</name><uri>http://www.blogger.com/profile/05041926877318330498</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7VRl2d9TvPoqL39t-OsEEKZNzfecnq633_-vKe7rQSiIe-QdywMNb9cKt7O3HFVCZZA6BEElASUU7b2Fg3mrNI3c-dOnOLSORwcW0BR70hJ7aMB9ycr9mR5nzSsdxx2M/s1600/*'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2061295279717545721.post-7647441030503307537</id><published>2012-01-10T19:00:00.000-08:00</published><updated>2012-01-10T19:00:47.372-08:00</updated><title type='text'>SQL Server vs. Oracle Differences From a Developer&#39;s View</title><content type='html'>Over the past 2 1/2 years, I&#39;ve been doing a lot of software development with Oracle as the RDBMS. After a decade of only working on development and BI projects with a SQL Server back end, I found myself primarily working on a quite large, already existing web application that uses Oracle as its RDBMS. Don&#39;t get me wrong, I&#39;m still involved with the world of SQL Server. I still see it at work and, even more, I&#39;m President of our local PASS chapter. I also did two years of speaking on SQL Server at various events and user groups during this time period. &lt;br /&gt;
&lt;br /&gt;
As a software developer, though, I&#39;ve found working with Oracle to be a great opportunity to become familiar with another leading RDBMS. When I started my current job, I was told that I&#39;d be able to pick up Oracle quite quickly, given my strong data background. I&#39;d like to think that I picked things up pretty quickly, but there are A LOT of best practices differences and, also, some capability differences that I needed to become aware of as a developer. Since, I haven&#39;t seen a lot of resources that put these differences together into one place, I decided to start this blog post series. 

&lt;br /&gt;
&lt;br /&gt;
I hope to make this blog post series a resource for developers who are switching between T-SQL and PL/SQL. This is not intended to be a &quot;which RDBMS is better?&quot; conversation. I personally believe that there are multiple RDBMS solutions that have the capability to meet a variety of business needs. I hope this series will help developers shorten their learning curve between the two products. Note: At the writing of this post, SQL Server 2008 R2 is the latest officially released version of SQL Server. I have been keeping up with the upcoming T-SQL features for SQL Server 2012, though.</content><link rel='replies' type='application/atom+xml' href='http://www.kristinferrier.com/feeds/7647441030503307537/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2061295279717545721/7647441030503307537' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/7647441030503307537'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/7647441030503307537'/><link rel='alternate' type='text/html' href='http://www.kristinferrier.com/2012/01/sql-server-vs-oracle-differences-from.html' title='SQL Server vs. Oracle Differences From a Developer&#39;s View'/><author><name>K. Ferrier</name><uri>http://www.blogger.com/profile/05041926877318330498</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7VRl2d9TvPoqL39t-OsEEKZNzfecnq633_-vKe7rQSiIe-QdywMNb9cKt7O3HFVCZZA6BEElASUU7b2Fg3mrNI3c-dOnOLSORwcW0BR70hJ7aMB9ycr9mR5nzSsdxx2M/s1600/*'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2061295279717545721.post-3610353544651475938</id><published>2011-08-15T20:03:00.000-07:00</published><updated>2011-08-15T20:04:59.896-07:00</updated><title type='text'>SQL Saturday Oklahoma City, August 27th</title><content type='html'>I am very excited to be on the Steering Committee for &lt;a href=&quot;http://www.sqlsaturday.com/90/eventhome.aspx&quot; target=blank&gt;SQL Saturday Oklahoma City&lt;/a&gt;! We&#39;re sold out with 250 registered, but we&#39;re hoping to be able to include those from the wait list.&lt;br /&gt;&lt;br /&gt;We&#39;ve got DBA, Developer, and BI tracks planned. I look forward to seeing those registered. As the Speaker Chair, I very much hope everyone enjoys the sessions:)&lt;br /&gt;&lt;br /&gt;For those wondering where I&#39;ve been on the blog front, I&#39;ve been spending most of my community time with regional community involvement. &lt;a href=&quot;http://okcsql.org&quot; target=blank&gt;OKCSQL &lt;/a&gt;assisted with three SQL Server Boot Camps in 2010. We&#39;re, also, still meeting monthly at the OKCCoCo. Plus, I&#39;ve been helping plan SQL Saturday OKC. As for speaking, I&#39;m currently on sabbatical. My last speaking engagement was at Tulsa Tech Fest 2010.&lt;br /&gt;&lt;br /&gt;I hope to see you guys at SQL Saturday OKC!</content><link rel='replies' type='application/atom+xml' href='http://www.kristinferrier.com/feeds/3610353544651475938/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2061295279717545721/3610353544651475938' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/3610353544651475938'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/3610353544651475938'/><link rel='alternate' type='text/html' href='http://www.kristinferrier.com/2011/08/sql-saturday-oklahoma-city-august-27th.html' title='SQL Saturday Oklahoma City, August 27th'/><author><name>K. Ferrier</name><uri>http://www.blogger.com/profile/05041926877318330498</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7VRl2d9TvPoqL39t-OsEEKZNzfecnq633_-vKe7rQSiIe-QdywMNb9cKt7O3HFVCZZA6BEElASUU7b2Fg3mrNI3c-dOnOLSORwcW0BR70hJ7aMB9ycr9mR5nzSsdxx2M/s1600/*'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2061295279717545721.post-9087531335987534623</id><published>2011-08-15T19:59:00.000-07:00</published><updated>2011-08-15T20:03:08.182-07:00</updated><title type='text'>Tulsa Tech Fest 2010 Presentation</title><content type='html'>Back in November I had the opportunity to give my latest presentation &lt;span style=&quot;font-style:italic;&quot;&gt;Intermediate SSAS 2008 - Developing Time Calculations&lt;/span&gt; which is available &lt;a href=&quot;https://docs.google.com/present/view?id=dfnhxvp2_4fh88rjc2&quot; target =blank&gt;here&lt;/a&gt;. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.kristinferrier.com/feeds/9087531335987534623/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2061295279717545721/9087531335987534623' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/9087531335987534623'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/9087531335987534623'/><link rel='alternate' type='text/html' href='http://www.kristinferrier.com/2011/08/tulsa-tech-fest-2010-presentation.html' title='Tulsa Tech Fest 2010 Presentation'/><author><name>K. Ferrier</name><uri>http://www.blogger.com/profile/05041926877318330498</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7VRl2d9TvPoqL39t-OsEEKZNzfecnq633_-vKe7rQSiIe-QdywMNb9cKt7O3HFVCZZA6BEElASUU7b2Fg3mrNI3c-dOnOLSORwcW0BR70hJ7aMB9ycr9mR5nzSsdxx2M/s1600/*'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2061295279717545721.post-7468931078939215680</id><published>2010-07-14T18:56:00.000-07:00</published><updated>2010-07-14T19:00:14.789-07:00</updated><title type='text'>SSIS Scripting</title><content type='html'>Tim Mitchell did a great job presenting on &lt;em&gt;Scripting in SQL Server Integration Services&lt;/em&gt; this past Monday to OKCSQL. A video of his 90 minute presentation is available &lt;a href=&quot;http://okccoco.blip.tv/file/3874415/&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;.</content><link rel='replies' type='application/atom+xml' href='http://www.kristinferrier.com/feeds/7468931078939215680/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2061295279717545721/7468931078939215680' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/7468931078939215680'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/7468931078939215680'/><link rel='alternate' type='text/html' href='http://www.kristinferrier.com/2010/07/ssis-scripting.html' title='SSIS Scripting'/><author><name>K. Ferrier</name><uri>http://www.blogger.com/profile/05041926877318330498</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7VRl2d9TvPoqL39t-OsEEKZNzfecnq633_-vKe7rQSiIe-QdywMNb9cKt7O3HFVCZZA6BEElASUU7b2Fg3mrNI3c-dOnOLSORwcW0BR70hJ7aMB9ycr9mR5nzSsdxx2M/s1600/*'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2061295279717545721.post-8421445620348003995</id><published>2010-07-14T18:21:00.000-07:00</published><updated>2010-07-14T18:53:39.833-07:00</updated><title type='text'>T-SQL Intersect and Except</title><content type='html'>During the SQL Server 2008 Database Development Boot Camp in February, several T-SQL features introduced in SQL Server 2005 and 2008 were covered. I wanted to blog about the one that most caught my eye. SQL Server now has both Intersect and Except which follow the below syntax.&lt;br /&gt;&lt;br /&gt;{ &amp;lt;query_specification&amp;gt; | ( &amp;lt;query_expression&amp;gt; ) }&lt;br /&gt;{ EXCEPT | INTERSECT }&lt;br /&gt;{ &amp;lt;query_specification&amp;gt; | ( &amp;lt;query_expression&amp;gt; ) }&lt;br /&gt;&lt;br /&gt;Examples from the AdventureWorks database for SQL Server 2008 follow:&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color:#000099;&quot;&gt;SELECT COUNT(*) FROM Sales.Customer&lt;br /&gt;&lt;/span&gt;(Returns count of 19185)&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color:#000099;&quot;&gt;SELECT CustomerID FROM Sales.Customer&lt;br /&gt;INTERSECT&lt;br /&gt;SELECT CustomerID FROM Sales.SalesOrderHeader&lt;br /&gt;&lt;/span&gt;(Returns 19119 distinct CustomerIDs. They are the distinct list of CustomerIDs that are found in BOTH Sales.Customer and Sales.SalesOrderHeader)&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color:#000099;&quot;&gt;SELECT CustomerID FROM Sales.Customer&lt;br /&gt;EXCEPT&lt;br /&gt;SELECT CustomerID FROM Sales.SalesOrderHeader&lt;br /&gt;&lt;/span&gt;(Returns 66 distinct CustomerIDs. They are the distinct list of CustomerIDs that are found in Sales.Customer that are not found in Sales.SalesOrderHeader)&lt;br /&gt;&lt;br /&gt;I&#39;ve heard debate as to whether or not INTERSECT and/or EXCEPT are faster than other options. Thus, I&#39;ll leave it up to you to try them out in your own systems to determine their potential value. I will mention, though, I have heard of a real-word case where an INTERSECT query similar to the one in the above example took seconds or minutes instead of hours. In that specific scenario the table on the left side of the INTERSECT had just a few thousand records and the table on the right side of the INTERSECT had millions if not billions of records.</content><link rel='replies' type='application/atom+xml' href='http://www.kristinferrier.com/feeds/8421445620348003995/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2061295279717545721/8421445620348003995' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/8421445620348003995'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/8421445620348003995'/><link rel='alternate' type='text/html' href='http://www.kristinferrier.com/2010/07/t-sql-intersect-and-except.html' title='T-SQL Intersect and Except'/><author><name>K. Ferrier</name><uri>http://www.blogger.com/profile/05041926877318330498</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7VRl2d9TvPoqL39t-OsEEKZNzfecnq633_-vKe7rQSiIe-QdywMNb9cKt7O3HFVCZZA6BEElASUU7b2Fg3mrNI3c-dOnOLSORwcW0BR70hJ7aMB9ycr9mR5nzSsdxx2M/s1600/*'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2061295279717545721.post-5315052194506635846</id><published>2010-07-14T17:17:00.000-07:00</published><updated>2010-07-14T17:34:43.025-07:00</updated><title type='text'>June 2010 OKCSQL Presentation</title><content type='html'>After multiple weather postponements, I was able to give my &lt;a href=&quot;http://www.blip.tv/file/3775524&quot; target=&quot;_blank&quot;&gt;Introduction to Visual Studio 2010 Database Functionality &lt;/a&gt; presentation to the &lt;a href=&quot;http://okcsql.org&quot; target=&quot;_blank&quot;&gt;Oklahoma City SQL Server Developers Group&lt;/a&gt;. With the meeting taking place not on our standard meeting day, I had some minor concerns that no one would show. To my delight we had a good turnout and one of my colleagues from a previous employer showed and brought some of his colleagues too.&lt;br /&gt;&lt;br /&gt;Most important, though, is that we didn&#39;t have another serious weather event. I knew some people impacted from the first postponement, which was caused by tornadoes. The second postponement came from floods.</content><link rel='replies' type='application/atom+xml' href='http://www.kristinferrier.com/feeds/5315052194506635846/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2061295279717545721/5315052194506635846' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/5315052194506635846'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/5315052194506635846'/><link rel='alternate' type='text/html' href='http://www.kristinferrier.com/2010/07/june-2010-okcsql-presentation.html' title='June 2010 OKCSQL Presentation'/><author><name>K. Ferrier</name><uri>http://www.blogger.com/profile/05041926877318330498</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7VRl2d9TvPoqL39t-OsEEKZNzfecnq633_-vKe7rQSiIe-QdywMNb9cKt7O3HFVCZZA6BEElASUU7b2Fg3mrNI3c-dOnOLSORwcW0BR70hJ7aMB9ycr9mR5nzSsdxx2M/s1600/*'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2061295279717545721.post-592896520576205663</id><published>2010-07-14T16:34:00.000-07:00</published><updated>2010-07-14T17:02:35.870-07:00</updated><title type='text'>SQL Saturday Dallas 2010</title><content type='html'>I had a great time speaking at and attending &lt;a href=&quot;http://sqlsaturday.info/Agenda.aspx&quot; target=&quot;_blank&quot;&gt;SQL Saturday Dallas 2010&lt;/a&gt;. The North Texas SQL Server User Group did an excellent job organizing the event! The event was amazing with a 500 person sellout, 42 sessions, and lots of great networking. You would have never known that this was their first SQL Saturday to put on. &lt;br /&gt;&lt;br /&gt;While there, I had the opportunity to give two presentations.&lt;br /&gt;&lt;br /&gt;I debuted my &lt;a href=&quot;http://www.blip.tv/file/3775524&quot; target=&quot;_blank&quot;&gt;Visual Studio 2010 Database Functionality&lt;/a&gt; presentation to about 40 people. I had hoped to first present this topic at OKCSQL in May, however, we had some issues due to inclement weather the day of the May meeting. &lt;br /&gt;&lt;br /&gt;I, also, presented my &lt;a href=&quot;http://okccoco.blip.tv/file/2460070/&quot; target=&quot;_blank&quot;&gt;Introduction to SQL Server Analysis Services 2008 OLAP&lt;/a&gt; presentation to 55+ people. &lt;br /&gt;&lt;br /&gt;I look forward to attending future events put on by the North Texas SQL Server User Group.&lt;br /&gt;&lt;br /&gt;Note: Presentation links are pointing to presentations given at the OKCSQL meetings. The OKCSQL 90 minute presentation slots provided the opportunity to include more content than at SQL Saturday Dallas.</content><link rel='replies' type='application/atom+xml' href='http://www.kristinferrier.com/feeds/592896520576205663/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2061295279717545721/592896520576205663' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/592896520576205663'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2061295279717545721/posts/default/592896520576205663'/><link rel='alternate' type='text/html' href='http://www.kristinferrier.com/2010/07/sql-saturday-dallas-2010.html' title='SQL Saturday Dallas 2010'/><author><name>K. Ferrier</name><uri>http://www.blogger.com/profile/05041926877318330498</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7VRl2d9TvPoqL39t-OsEEKZNzfecnq633_-vKe7rQSiIe-QdywMNb9cKt7O3HFVCZZA6BEElASUU7b2Fg3mrNI3c-dOnOLSORwcW0BR70hJ7aMB9ycr9mR5nzSsdxx2M/s1600/*'/></author><thr:total>0</thr:total></entry></feed>