<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;AkUMQX4zcSp7ImA9WhRVFUU.&quot;"><id>tag:blogger.com,1999:blog-2061295279717545721</id><updated>2012-01-14T16:44:40.089-08:00</updated><title>Kristin Ferrier's Microsoft BI Beginner's Blog</title><subtitle type="html">Blog for those interested in enhancing their skillset to include Microsoft BI.</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://kferrier.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://kferrier.blogspot.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&amp;v=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="http://2.bp.blogspot.com/_mZJRF2_WaVo/SaHx9PeOnMI/AAAAAAAAAAM/2Ne26ha-0qU/S220/Kristin+Ferrier+Photo+2.JPG" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>29</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/KristinFerriersBiBlog" /><feedburner:info uri="kristinferriersbiblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;AkUMQX87cCp7ImA9WhRVFUU.&quot;"><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><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-14T16:44:40.108-08:00</app:edited><title>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'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'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 "Orders" 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'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'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 "SELECT * FROM Orders" and "SELECT * FROM 
ORDERS" will be valid queries. With Oracle (using the default settings), "SELECT * FROM Orders"and "SELECT * FROM 
ORDERS" 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've been able to put into my post. SQL Server's naming conventions are available &lt;a href="http://msdn.microsoft.com/en-us/library/ms187879%28v=SQL.100%29.aspx" target="_blank"&gt;here&lt;/a&gt;. Oracle's naming rules are available &lt;a href="http://docs.oracle.com/cd/E11882_01/server.112/e10592/sql_elements008.htm" target="_blank"&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Calibri&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 11pt; line-height: 115%;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div style="margin-left: .5in; mso-list: l0 level1 lfo1; tab-stops: list .5in; text-indent: -.25in;"&gt;
&lt;span style="font: 7pt &amp;quot;Times New Roman&amp;quot;;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2061295279717545721-1766742378734650057?l=kferrier.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/KristinFerriersBiBlog/~4/310CARxpDSc" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://kferrier.blogspot.com/feeds/1766742378734650057/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2061295279717545721&amp;postID=1766742378734650057" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/1766742378734650057?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/1766742378734650057?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KristinFerriersBiBlog/~3/310CARxpDSc/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="http://2.bp.blogspot.com/_mZJRF2_WaVo/SaHx9PeOnMI/AAAAAAAAAAM/2Ne26ha-0qU/S220/Kristin+Ferrier+Photo+2.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://kferrier.blogspot.com/2012/01/sql-server-vs-oracle-differences-part-2.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ck4ER309eip7ImA9WhRVEkg.&quot;"><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><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-10T19:01:46.362-08:00</app:edited><title>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'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 "bad code" by many in SQL Server world, assuming there wasn't a code comment explaining the use of cursor. I'm not saying this is right or wrong, I'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'll even see them used quite often in Steven Feuerstein's &lt;a href="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" target="_blank"&gt;Oracle PL/SQL Best Practices&lt;/a&gt; book that I found to be very useful.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2061295279717545721-5030167581995476055?l=kferrier.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/KristinFerriersBiBlog/~4/BndLRJD8feI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://kferrier.blogspot.com/feeds/5030167581995476055/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2061295279717545721&amp;postID=5030167581995476055" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/5030167581995476055?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/5030167581995476055?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KristinFerriersBiBlog/~3/BndLRJD8feI/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="http://2.bp.blogspot.com/_mZJRF2_WaVo/SaHx9PeOnMI/AAAAAAAAAAM/2Ne26ha-0qU/S220/Kristin+Ferrier+Photo+2.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://kferrier.blogspot.com/2012/01/sql-server-vs-oracle-differences-part-1.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ck8ARn08eip7ImA9WhRVEkg.&quot;"><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><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-10T19:00:47.372-08:00</app:edited><title>SQL Server vs. Oracle Differences From a Developer's View</title><content type="html">Over the past 2 1/2 years, I'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't get me wrong, I'm still involved with the world of SQL Server. I still see it at work and, even more, I'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'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'd be able to pick up Oracle quite quickly, given my strong data background. I'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'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 "which RDBMS is better?" 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.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2061295279717545721-7647441030503307537?l=kferrier.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/KristinFerriersBiBlog/~4/-g7CVO0j_R8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://kferrier.blogspot.com/feeds/7647441030503307537/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2061295279717545721&amp;postID=7647441030503307537" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/7647441030503307537?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/7647441030503307537?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KristinFerriersBiBlog/~3/-g7CVO0j_R8/sql-server-vs-oracle-differences-from.html" title="SQL Server vs. Oracle Differences From a Developer'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="http://2.bp.blogspot.com/_mZJRF2_WaVo/SaHx9PeOnMI/AAAAAAAAAAM/2Ne26ha-0qU/S220/Kristin+Ferrier+Photo+2.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://kferrier.blogspot.com/2012/01/sql-server-vs-oracle-differences-from.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CU8NSHYyfip7ImA9WhdQFEs.&quot;"><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><app:edited xmlns:app="http://www.w3.org/2007/app">2011-08-15T20:04:59.896-07:00</app:edited><title>SQL Saturday Oklahoma City, August 27th</title><content type="html">I am very excited to be on the Steering Committee for &lt;a href="http://www.sqlsaturday.com/90/eventhome.aspx" target=blank&gt;SQL Saturday Oklahoma City&lt;/a&gt;! We're sold out with 250 registered, but we're hoping to be able to include those from the wait list.
&lt;br /&gt;
&lt;br /&gt;We'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've been on the blog front, I've been spending most of my community time with regional community involvement. &lt;a href="http://okcsql.org" target=blank&gt;OKCSQL &lt;/a&gt;assisted with three SQL Server Boot Camps in 2010. We're, also, still meeting monthly at the OKCCoCo. Plus, I've been helping plan SQL Saturday OKC. As for speaking, I'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!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2061295279717545721-3610353544651475938?l=kferrier.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/KristinFerriersBiBlog/~4/d1KkUe8jru4" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://kferrier.blogspot.com/feeds/3610353544651475938/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2061295279717545721&amp;postID=3610353544651475938" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/3610353544651475938?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/3610353544651475938?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KristinFerriersBiBlog/~3/d1KkUe8jru4/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="http://2.bp.blogspot.com/_mZJRF2_WaVo/SaHx9PeOnMI/AAAAAAAAAAM/2Ne26ha-0qU/S220/Kristin+Ferrier+Photo+2.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://kferrier.blogspot.com/2011/08/sql-saturday-oklahoma-city-august-27th.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUAMSX8zeip7ImA9WhdQFEs.&quot;"><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><app:edited xmlns:app="http://www.w3.org/2007/app">2011-08-15T20:03:08.182-07:00</app:edited><title>Tulsa Tech Fest 2010 Presentation</title><content type="html">Back in November I had the opportunity to give my latest presentation &lt;span style="font-style:italic;"&gt;Intermediate SSAS 2008 - Developing Time Calculations&lt;/span&gt; which is available &lt;a href="https://docs.google.com/present/view?id=dfnhxvp2_4fh88rjc2" target =blank&gt;here&lt;/a&gt;. 
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2061295279717545721-9087531335987534623?l=kferrier.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/KristinFerriersBiBlog/~4/elYaKMu5YUU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://kferrier.blogspot.com/feeds/9087531335987534623/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2061295279717545721&amp;postID=9087531335987534623" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/9087531335987534623?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/9087531335987534623?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KristinFerriersBiBlog/~3/elYaKMu5YUU/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="http://2.bp.blogspot.com/_mZJRF2_WaVo/SaHx9PeOnMI/AAAAAAAAAAM/2Ne26ha-0qU/S220/Kristin+Ferrier+Photo+2.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://kferrier.blogspot.com/2011/08/tulsa-tech-fest-2010-presentation.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0UFRXkzcSp7ImA9WxFaEUg.&quot;"><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><app:edited xmlns:app="http://www.w3.org/2007/app">2010-07-14T19:00:14.789-07:00</app:edited><title>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="http://okccoco.blip.tv/file/3874415/" target="_blank"&gt;here&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2061295279717545721-7468931078939215680?l=kferrier.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/KristinFerriersBiBlog/~4/fChV7VdMxBE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://kferrier.blogspot.com/feeds/7468931078939215680/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2061295279717545721&amp;postID=7468931078939215680" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/7468931078939215680?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/7468931078939215680?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KristinFerriersBiBlog/~3/fChV7VdMxBE/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="http://2.bp.blogspot.com/_mZJRF2_WaVo/SaHx9PeOnMI/AAAAAAAAAAM/2Ne26ha-0qU/S220/Kristin+Ferrier+Photo+2.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://kferrier.blogspot.com/2010/07/ssis-scripting.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ak8FSHY4eyp7ImA9WxFaEUg.&quot;"><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><app:edited xmlns:app="http://www.w3.org/2007/app">2010-07-14T18:53:39.833-07:00</app:edited><title>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="color:#000099;"&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="color:#000099;"&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="color:#000099;"&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've heard debate as to whether or not INTERSECT and/or EXCEPT are faster than other options. Thus, I'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.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2061295279717545721-8421445620348003995?l=kferrier.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/KristinFerriersBiBlog/~4/RGh7vq_QTl0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://kferrier.blogspot.com/feeds/8421445620348003995/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2061295279717545721&amp;postID=8421445620348003995" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/8421445620348003995?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/8421445620348003995?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KristinFerriersBiBlog/~3/RGh7vq_QTl0/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="http://2.bp.blogspot.com/_mZJRF2_WaVo/SaHx9PeOnMI/AAAAAAAAAAM/2Ne26ha-0qU/S220/Kristin+Ferrier+Photo+2.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://kferrier.blogspot.com/2010/07/t-sql-intersect-and-except.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkcMQn45fSp7ImA9WxFaEUg.&quot;"><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><app:edited xmlns:app="http://www.w3.org/2007/app">2010-07-14T17:34:43.025-07:00</app:edited><title>June 2010 OKCSQL Presentation</title><content type="html">After multiple weather postponements, I was able to give my &lt;a href="http://www.blip.tv/file/3775524" target="_blank"&gt;Introduction to Visual Studio 2010 Database Functionality &lt;/a&gt; presentation to the &lt;a href="http://okcsql.org" target="_blank"&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'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.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2061295279717545721-5315052194506635846?l=kferrier.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/KristinFerriersBiBlog/~4/22zH_MBd0xs" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://kferrier.blogspot.com/feeds/5315052194506635846/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2061295279717545721&amp;postID=5315052194506635846" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/5315052194506635846?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/5315052194506635846?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KristinFerriersBiBlog/~3/22zH_MBd0xs/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="http://2.bp.blogspot.com/_mZJRF2_WaVo/SaHx9PeOnMI/AAAAAAAAAAM/2Ne26ha-0qU/S220/Kristin+Ferrier+Photo+2.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://kferrier.blogspot.com/2010/07/june-2010-okcsql-presentation.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEYBRHY8eCp7ImA9WxFaEUg.&quot;"><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><app:edited xmlns:app="http://www.w3.org/2007/app">2010-07-14T17:02:35.870-07:00</app:edited><title>SQL Saturday Dallas 2010</title><content type="html">I had a great time speaking at and attending &lt;a href="http://sqlsaturday.info/Agenda.aspx" target="_blank"&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="http://www.blip.tv/file/3775524" target="_blank"&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="http://okccoco.blip.tv/file/2460070/" target="_blank"&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.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2061295279717545721-592896520576205663?l=kferrier.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/KristinFerriersBiBlog/~4/V1EyyeiNOQ8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://kferrier.blogspot.com/feeds/592896520576205663/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2061295279717545721&amp;postID=592896520576205663" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/592896520576205663?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/592896520576205663?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KristinFerriersBiBlog/~3/V1EyyeiNOQ8/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="http://2.bp.blogspot.com/_mZJRF2_WaVo/SaHx9PeOnMI/AAAAAAAAAAM/2Ne26ha-0qU/S220/Kristin+Ferrier+Photo+2.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://kferrier.blogspot.com/2010/07/sql-saturday-dallas-2010.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0cNRHgyeyp7ImA9WxFWFU4.&quot;"><id>tag:blogger.com,1999:blog-2061295279717545721.post-4663106839875829345</id><published>2010-06-02T20:24:00.000-07:00</published><updated>2010-06-02T21:24:55.693-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-06-02T21:24:55.693-07:00</app:edited><title>Thoughts on February SQL Server 2008 Boot Camp</title><content type="html">Wow!!! Things have been so hectic the past few months, that I'm just now getting to blog about February's free &lt;a href="http://kferrier.blogspot.com/2010/01/free-microsoft-sql-server-2008.html" target="_blank"&gt;SQL Server 2008 Boot Camp&lt;/a&gt; taught by Mike Hotek. Over the course of 9 evenings in Oklahoma City, &lt;a href="http://www.mssqlserver.com/" target="_blank"&gt;Mike Hotek&lt;/a&gt; (18th SQL Server MVP) taught a FREE 32 hour Microsoft SQL Server 2008 Certification Boot Camp 70-433 to 40 professionals. Professionals ranged from an Informatica specialist with an Oracle background all the way to very experienced SQL Server DBAs.&lt;br /&gt;&lt;br /&gt;The course was coordinated over the course of just a few weeks by just five individuals. They were Rob Sullivan (VP of &lt;a href="http://okcsql.org" target="_blank"&gt;OKCSQL&lt;/a&gt;), Mike Hotek (our instructor), Lily Liu (amazing volunteer who coordinated with OUHSC to get us the free location), Rao Velvadapu from OUHSC, and myself. The course was planned very last minute, so we just had a few weeks to get everything together. As a result, neither myself nor Rob had the opportunity to visit the location beforehand. Thus, I remember showing up on night one only 10 minutes before the class (I had been lost on the OUHSC Campus for 30 minutes) and walking into a SUPER crowded classroom. There was almost not a place for me or any other later arrivers to sit. So lesson one learned, always visit the location of an event before the event, if you're a key coordinator. The second night we started rearranging the table layout before and after each class.&lt;br /&gt;&lt;br /&gt;The course was to focus on SQL Server 2008 Database Development. Since, I'd been working with SQL Server for over a decade, I didn't think there would be a lot of new stuff for me to learn on the database development side. The DBA-side would have been another story, since I've been very developer/BI focused in my SQL Server experience. Boy was I WRONG about how much I would learn. I learned a ton!!! Even more, I have lots of notes related to topics to blog on. Hopefully, I'll get to blogging on them at some point.&lt;br /&gt;&lt;br /&gt;What many of us commented about liking so much about the class was Mike's teaching style combined with his vast knowledge base. Mike would start a topic at near beginner level and would eventually bring it to an advanced level. I expect Mike is able to do this given his international speaking experience and his experience working with more than a thousand clients over 20 years.&lt;br /&gt;&lt;br /&gt;We got a lot of great feedback on the course and even had at least one guy skip a NBA game for which he had tickets in order to not miss a specific session.&lt;br /&gt;&lt;br /&gt;With a small classroom of 40 people dedicated to advancing their SQL Server 2008 skills over 9 evenings for a total of 32 hours, the class even started to become like a family. The experience was great and led to a second class which Mike is currently teaching about SQL Server 2008 Database Administration. Hopefully, I can blog about that class soon.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2061295279717545721-4663106839875829345?l=kferrier.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/KristinFerriersBiBlog/~4/vR9uo1DLNC0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://kferrier.blogspot.com/feeds/4663106839875829345/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2061295279717545721&amp;postID=4663106839875829345" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/4663106839875829345?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/4663106839875829345?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KristinFerriersBiBlog/~3/vR9uo1DLNC0/thoughts-on-february-sql-server-2008.html" title="Thoughts on February SQL Server 2008 Boot Camp" /><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="http://2.bp.blogspot.com/_mZJRF2_WaVo/SaHx9PeOnMI/AAAAAAAAAAM/2Ne26ha-0qU/S220/Kristin+Ferrier+Photo+2.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://kferrier.blogspot.com/2010/06/thoughts-on-february-sql-server-2008.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0YDSHkycCp7ImA9WxBWEUs.&quot;"><id>tag:blogger.com,1999:blog-2061295279717545721.post-3605143287390909410</id><published>2010-01-25T15:47:00.000-08:00</published><updated>2010-02-02T17:39:39.798-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-02-02T17:39:39.798-08:00</app:edited><title>Free Microsoft SQL Server 2008 Certification Boot Camp 70-433</title><content type="html">Throughout the past year, I've had the opportunity to work with &lt;a href="http://www.mssqlserver.com/" target="#blank"&gt;Mike Hotek&lt;/a&gt; first at a client site and then later on when he spoke at the OKC SQL Server Developers Group for several meetings. He is one of the most knowledgeable SQL Server experts that I have personally met. Even more, he has been very supportive of several local SQL Server groups, including the &lt;a href="http://okcsql.org/" target="#blank"&gt;OKC SQL Server Developers Group&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;One very gracious offer that he put forward was the willingness to provide free SQL Server training in the evenings, if someone would provide the location. Back in July 2009, Integris hosted a free two evening SSRS 2008 class.&lt;br /&gt;&lt;br /&gt;This February the OU Health Sciences Center has been very gracious to provide space for 40 people to take a FREE Microsoft SQL Server 2008 Certification Boot Camp 70-433 class taught by Mike Hotek. Mike used to teach these classes for $4,000 per student. He now teaches them for very nominal fees or for free.&lt;br /&gt;&lt;br /&gt;Today, we opened registration for this class that begins Monday, February 8, 2010. Registration is open at &lt;a href="http://sqlbootcamp.eventbrite.com/" target="#blank"&gt;http://sqlbootcamp.eventbrite.com/&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;We opened registration at noon CST and I've literally been watching tickets nearly sell out before my eyes. As of this posting there are 11, wait another one just went, 10 free tickets left. If you're interested in this class, register quickly!&lt;br /&gt;&lt;br /&gt;Update (02-Feb-2010): This class sold out in less than 20 hours! We look forward to a great class next week!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2061295279717545721-3605143287390909410?l=kferrier.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/KristinFerriersBiBlog/~4/cfZNuZePRgY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://kferrier.blogspot.com/feeds/3605143287390909410/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2061295279717545721&amp;postID=3605143287390909410" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/3605143287390909410?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/3605143287390909410?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KristinFerriersBiBlog/~3/cfZNuZePRgY/free-microsoft-sql-server-2008.html" title="Free Microsoft SQL Server 2008 Certification Boot Camp 70-433" /><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="http://2.bp.blogspot.com/_mZJRF2_WaVo/SaHx9PeOnMI/AAAAAAAAAAM/2Ne26ha-0qU/S220/Kristin+Ferrier+Photo+2.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://kferrier.blogspot.com/2010/01/free-microsoft-sql-server-2008.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEcNQn85fCp7ImA9WxBSEU0.&quot;"><id>tag:blogger.com,1999:blog-2061295279717545721.post-3673562332525953734</id><published>2009-12-17T17:56:00.000-08:00</published><updated>2009-12-17T18:08:13.124-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-12-17T18:08:13.124-08:00</app:edited><title>Introduction to SSAS 2008 Video</title><content type="html">I've been looking a lot at the &lt;a href="http://social.msdn.microsoft.com/Forums/en-US/sqlanalysisservices/threads/" target="#blank"&gt;MSDN SSAS forums&lt;/a&gt; lately and noticed a lot of questions about processing, partitioning, and perspectives. I discuss some of these topics at the end of the my 90 minute presentation &lt;a href="http://www.blip.tv/file/2460070" target="#blank"&gt;Introduction to SQL Server Analysis Services 2008 OLAP&lt;/a&gt; that I gave back in July to the &lt;a href="http://okcsql.org/" target="#blank"&gt;OKC SQL Server Developers Group&lt;/a&gt;. These topics begin at minute 64:30.&lt;br /&gt;&lt;br /&gt;I have given this presentation several times since, however, this is the only presentation that was video-taped. In addition, with many presentation slots being only 60-75 minutes, the July meeting was the only time where I had time to discuss the aforementioned topics.&lt;br /&gt;&lt;br /&gt;I hope you find this video helpful in getting up to speed with the basics of SSAS 2008 OLAP. If you have any questions, feel free to post a comment here or go to the aforementioned &lt;a href="http://social.msdn.microsoft.com/Forums/en-US/sqlanalysisservices/threads/" target="#blank"&gt;MSDN SSAS forums&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2061295279717545721-3673562332525953734?l=kferrier.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/KristinFerriersBiBlog/~4/TE73JQnhtOE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://kferrier.blogspot.com/feeds/3673562332525953734/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2061295279717545721&amp;postID=3673562332525953734" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/3673562332525953734?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/3673562332525953734?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KristinFerriersBiBlog/~3/TE73JQnhtOE/introduction-to-ssas-2008-video.html" title="Introduction to SSAS 2008 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="http://2.bp.blogspot.com/_mZJRF2_WaVo/SaHx9PeOnMI/AAAAAAAAAAM/2Ne26ha-0qU/S220/Kristin+Ferrier+Photo+2.JPG" /></author><thr:total>1</thr:total><feedburner:origLink>http://kferrier.blogspot.com/2009/12/introduction-to-ssas-2008-video.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0UGQ307fyp7ImA9WxNVGEg.&quot;"><id>tag:blogger.com,1999:blog-2061295279717545721.post-1249379053899087423</id><published>2009-10-29T16:21:00.000-07:00</published><updated>2009-10-29T16:33:42.307-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-29T16:33:42.307-07:00</app:edited><title>Microsoft BI Introduction Videos</title><content type="html">We've been very fortunate to have a great start to the &lt;a href="http://okcsql.org" target ="#blank"&gt;OKC SQL Server Developers Group&lt;/a&gt; this year. We started in April and have been averaging 25 attendees per monthly meeting. &lt;br /&gt;&lt;br /&gt;With family obligations and other time constraits, some developers just don't have the time opportunity to attend developer groups and/or technical conferences. I've found great benefit to attending meetings in person, but am aware that many can't take advantage of these opportunities. &lt;br /&gt;&lt;br /&gt;Fortunately, we have been meeting a the &lt;a href="http://okccoco.com/" target="#blank"&gt;OKC Coworking Collaborative&lt;/a&gt; that has been video taping our meetings. I personally, find the videos to be of pretty good quality with respect to both sound and video. Below are links to two presentations given by Mike Hotek the 18th SQL Server MVP. Currently, additional videos are available via links on the &lt;a href="http://okcsql.org" target ="#blank"&gt;OKC SQL Server Developers Group website.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://blip.tv/file/2118543/" target="#blank"&gt;Introduction to SQL Server Integration Services 2008 by Mike Hotek (May 2009)&lt;/a&gt;&lt;br&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://blip.tv/play/AYGInWuW8mc" target ="blank"&gt;Introduction to SQL Server 2008 Data Mining by Mike Hotek (June 2009)&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2061295279717545721-1249379053899087423?l=kferrier.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/KristinFerriersBiBlog/~4/ARH0St8HlD4" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://kferrier.blogspot.com/feeds/1249379053899087423/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2061295279717545721&amp;postID=1249379053899087423" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/1249379053899087423?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/1249379053899087423?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KristinFerriersBiBlog/~3/ARH0St8HlD4/microsoft-bi-introduction-videos.html" title="Microsoft BI Introduction Videos" /><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="http://2.bp.blogspot.com/_mZJRF2_WaVo/SaHx9PeOnMI/AAAAAAAAAAM/2Ne26ha-0qU/S220/Kristin+Ferrier+Photo+2.JPG" /></author><thr:total>1</thr:total><feedburner:origLink>http://kferrier.blogspot.com/2009/10/microsoft-bi-introduction-videos.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DU4DQXs8eyp7ImA9WxNVGEg.&quot;"><id>tag:blogger.com,1999:blog-2061295279717545721.post-5102046996533276434</id><published>2009-10-29T16:06:00.000-07:00</published><updated>2009-10-29T16:12:50.573-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-29T16:12:50.573-07:00</app:edited><title>Tulsa SQL Server Group</title><content type="html">Back in September I had the opportunity to speak at the Tulsa SQL Server Group. I presented a shortened version of the &lt;em&gt;Introduction to SQL Server Analysis Services 2008 OLAP&lt;/em&gt; presentation that I did for the OKC SQL Server Developers Group back in July. Thanks to the 20+ people who came out in sheets of rain. On the way up, I was wondering just how many people would brave the downpour.&lt;br /&gt;&lt;br /&gt;I enjoyed catching up with old friends and colleagues and meeting new ones.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2061295279717545721-5102046996533276434?l=kferrier.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/KristinFerriersBiBlog/~4/1Rp3_atijw0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://kferrier.blogspot.com/feeds/5102046996533276434/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2061295279717545721&amp;postID=5102046996533276434" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/5102046996533276434?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/5102046996533276434?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KristinFerriersBiBlog/~3/1Rp3_atijw0/tulsa-sql-server-group.html" title="Tulsa SQL Server Group" /><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="http://2.bp.blogspot.com/_mZJRF2_WaVo/SaHx9PeOnMI/AAAAAAAAAAM/2Ne26ha-0qU/S220/Kristin+Ferrier+Photo+2.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://kferrier.blogspot.com/2009/10/tulsa-sql-server-group.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkYCQno4fyp7ImA9WxNVGEg.&quot;"><id>tag:blogger.com,1999:blog-2061295279717545721.post-4028178479062386832</id><published>2009-10-29T16:04:00.001-07:00</published><updated>2009-10-29T16:16:03.437-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-29T16:16:03.437-07:00</app:edited><title>Speaking at Tulsa Techfest 2009</title><content type="html">I'll be presenting &lt;em&gt;Introduction to SQL Server Analysis Services 2008 OLAP &lt;/em&gt;at Tulsa Techfest 2009. The event is taking place at OSU/Tulsa on Friday, November 6th. More details are available &lt;a href="http://techfests.com/Tulsa/2009/Speakers/KristinFerrier/default.aspx" target="#blank"&gt;here&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2061295279717545721-4028178479062386832?l=kferrier.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/KristinFerriersBiBlog/~4/Nkb3g6rDUU8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://kferrier.blogspot.com/feeds/4028178479062386832/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2061295279717545721&amp;postID=4028178479062386832" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/4028178479062386832?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/4028178479062386832?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KristinFerriersBiBlog/~3/Nkb3g6rDUU8/speaking-at-tulsa-techfest-2009.html" title="Speaking at Tulsa Techfest 2009" /><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="http://2.bp.blogspot.com/_mZJRF2_WaVo/SaHx9PeOnMI/AAAAAAAAAAM/2Ne26ha-0qU/S220/Kristin+Ferrier+Photo+2.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://kferrier.blogspot.com/2009/10/speaking-at-tulsa-techfest-2009.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEQGRHo8cSp7ImA9WxJbEk8.&quot;"><id>tag:blogger.com,1999:blog-2061295279717545721.post-8529684186962375255</id><published>2009-07-21T17:08:00.000-07:00</published><updated>2009-07-21T17:25:25.479-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-07-21T17:25:25.479-07:00</app:edited><title>SSAS 2008 Presentation Slides</title><content type="html">Thanks to everyone who came out to the July meeting of the OKC SQL Server Developers Group to see me present on &lt;em&gt;Introduction to SQL Server Analysis Services OLAP&lt;/em&gt;. We had about 25 people come out, including some former colleagues of mine. For those who missed the presentation or saw the presentation and would like the slides, a slightly modified version is available &lt;a href="http://docs.google.com/Presentation?docid=0AefJH4nZ05fmZGZuaHh2cDJfMGNrOTJwNWZm&amp;hl=en" target="_blank"&gt;here&lt;/a&gt; at Google Docs. (Update: In some cases 2 tries has been necessary for the Google Docs link to work)&lt;br /&gt;&lt;br&gt;&lt;br /&gt;For anyone interested in joining the group, check our website out at &lt;a href="http://www.okcsql.org" target="_blank"&gt;http://www.okcsql.org&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2061295279717545721-8529684186962375255?l=kferrier.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/KristinFerriersBiBlog/~4/iQ2oHES8CGU" height="1" width="1"/&gt;</content><link rel="related" href="http://docs.google.com/Presentation?docid=0AefJH4nZ05fmZGZuaHh2cDJfMGNrOTJwNWZm&amp;hl=en" title="SSAS 2008 Presentation Slides" /><link rel="replies" type="application/atom+xml" href="http://kferrier.blogspot.com/feeds/8529684186962375255/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2061295279717545721&amp;postID=8529684186962375255" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/8529684186962375255?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/8529684186962375255?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KristinFerriersBiBlog/~3/iQ2oHES8CGU/ssas-2008-presentation-slides.html" title="SSAS 2008 Presentation 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="http://2.bp.blogspot.com/_mZJRF2_WaVo/SaHx9PeOnMI/AAAAAAAAAAM/2Ne26ha-0qU/S220/Kristin+Ferrier+Photo+2.JPG" /></author><thr:total>1</thr:total><feedburner:origLink>http://kferrier.blogspot.com/2009/07/ssas-2008-presentation-slides.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEUDQX0ycSp7ImA9WxJUFEg.&quot;"><id>tag:blogger.com,1999:blog-2061295279717545721.post-8591663435952166566</id><published>2009-07-12T20:35:00.000-07:00</published><updated>2009-07-12T20:37:50.399-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-07-12T20:37:50.399-07:00</app:edited><title>Speaking this Week</title><content type="html">For those interested in learning more about SQL Server Analysis Services, I'll be doing a 90 minute presentation called "Introduction to SQL Server Analysis Services 2008 OLAP" at the July meeting of the Oklahoma City SQL Server Developers Group. The meeting is from 6:00 p.m. - 8:00 p.m. at the Oklahoma City CoCo. More details are available at http://www.okcsql.org. I hope to see you there.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2061295279717545721-8591663435952166566?l=kferrier.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/KristinFerriersBiBlog/~4/SVrQTfuDUCo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://kferrier.blogspot.com/feeds/8591663435952166566/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2061295279717545721&amp;postID=8591663435952166566" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/8591663435952166566?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/8591663435952166566?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KristinFerriersBiBlog/~3/SVrQTfuDUCo/speaking-this-week.html" title="Speaking this Week" /><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="http://2.bp.blogspot.com/_mZJRF2_WaVo/SaHx9PeOnMI/AAAAAAAAAAM/2Ne26ha-0qU/S220/Kristin+Ferrier+Photo+2.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://kferrier.blogspot.com/2009/07/speaking-this-week.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0EARX87eip7ImA9WxVWE0k.&quot;"><id>tag:blogger.com,1999:blog-2061295279717545721.post-8565417437971931940</id><published>2009-02-22T16:38:00.000-08:00</published><updated>2009-02-22T16:40:44.102-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-02-22T16:40:44.102-08:00</app:edited><title>Oklahoma City SQL Server Developers Group</title><content type="html">There's been talk in recent years of getting an Oklahoma City SQL Server Developers user group started in Oklahoma City, Oklahoma. If you live in the area and are interested in more information about the group, please, e-mail sqlokc at gmail dot com. I'm working with some others to get this group started.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2061295279717545721-8565417437971931940?l=kferrier.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/KristinFerriersBiBlog/~4/bw_FaBCdURs" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://kferrier.blogspot.com/feeds/8565417437971931940/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2061295279717545721&amp;postID=8565417437971931940" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/8565417437971931940?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/8565417437971931940?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KristinFerriersBiBlog/~3/bw_FaBCdURs/oklahoma-city-sql-server-developers.html" title="Oklahoma City SQL Server Developers Group" /><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="http://2.bp.blogspot.com/_mZJRF2_WaVo/SaHx9PeOnMI/AAAAAAAAAAM/2Ne26ha-0qU/S220/Kristin+Ferrier+Photo+2.JPG" /></author><thr:total>2</thr:total><feedburner:origLink>http://kferrier.blogspot.com/2009/02/oklahoma-city-sql-server-developers.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0MAQHYyfyp7ImA9WxVWE0k.&quot;"><id>tag:blogger.com,1999:blog-2061295279717545721.post-465028085589897368</id><published>2009-02-22T16:09:00.000-08:00</published><updated>2009-02-22T16:37:21.897-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-02-22T16:37:21.897-08:00</app:edited><title>ProClarity Dashboard 6.2 and Firefox, Cube could not be found error</title><content type="html">I've still got users that are quite happy using either ProClarity Desktop Professional or ProClarity Dashboard Server 6.2 as their reporting tool for SSAS 2005 cubes. For those still using ProClarity Desktop and ProClarity Dashboard as reporting tools, I thought I'd post a few things that I've learned over the past few months.&lt;br /&gt;&lt;br /&gt;One item I learned, is that ProClarity Dashboard 6.2 does not work with some if not all versions of Firefox.&lt;br /&gt;&lt;br /&gt;I was on the phone with a user who was getting the below message in their web browser:&lt;br /&gt;&lt;br /&gt;"The selected page could not be opened because the cube could not be found. Please choose a different page."&lt;br /&gt;&lt;br /&gt;The error message suggested that the cube was either not available to anyone or that the user's security was not setup properly. Thus, I checked both the user's cube and ProClarity Dashboard security. The user's security appeared to be setup properly in both cases.&lt;br /&gt;&lt;br /&gt;I then checked the ProClarity Event Log on the server holding the ProClarity Dashboard. There was an error with a description like the one below:&lt;br /&gt;&lt;br /&gt;"Information. Accessing page NameOfPage ....&lt;br /&gt;from book NameOfBook ..."&lt;br /&gt;&lt;br /&gt;Since, the Dashboard page was accessible to others, this message wasn't, especially, useful.&lt;br /&gt;&lt;br /&gt;After all this research, I went down to the user's pod to see how she was accessing the ProClarity Dashboard and saw that she was using Firefox. I had her switch to IE, and then the ProClarity Dashboard started working for her.&lt;br /&gt;&lt;br /&gt;I have been unable to find official documentation as to whether or not Firefox is supported with ProClarity Dashboard Server 6.2, however, from my experience Firefox does not work well with this product.&lt;br /&gt;&lt;br /&gt;FYI...There are a variety of other possible causes for a "Cube could not be found" error in the ProClarity Dashboard. Many are documented at the &lt;a href="http://blogs.technet.com/proclarity/archive/2008/04/08/cube-cannot-be-found.aspx" target="_blank"&gt;ProClarity Team Blog&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2061295279717545721-465028085589897368?l=kferrier.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/KristinFerriersBiBlog/~4/gKSYHa4YZU0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://kferrier.blogspot.com/feeds/465028085589897368/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2061295279717545721&amp;postID=465028085589897368" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/465028085589897368?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/465028085589897368?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KristinFerriersBiBlog/~3/gKSYHa4YZU0/proclarity-dashboard-62-and-firefox.html" title="ProClarity Dashboard 6.2 and Firefox, Cube could not be found error" /><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="http://2.bp.blogspot.com/_mZJRF2_WaVo/SaHx9PeOnMI/AAAAAAAAAAM/2Ne26ha-0qU/S220/Kristin+Ferrier+Photo+2.JPG" /></author><thr:total>1</thr:total><feedburner:origLink>http://kferrier.blogspot.com/2009/02/proclarity-dashboard-62-and-firefox.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUcNSXk5fip7ImA9WxdUEEw.&quot;"><id>tag:blogger.com,1999:blog-2061295279717545721.post-3595061652119410858</id><published>2008-07-25T13:07:00.000-07:00</published><updated>2008-07-25T13:18:18.726-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-07-25T13:18:18.726-07:00</app:edited><title>Microsoft Acquires DatAllegro</title><content type="html">The big buzz right now in BI seems to be Microsoft's announcement yesterday of a deal to purchase data warehouse appliance vendor &lt;a href="http://www.datallegro.com/" target="_blank"&gt;DatAllegro&lt;/a&gt;. There are tons of blog posts and articles out there. So here's a quick summary and then a link. &lt;br /&gt;&lt;br /&gt;According to Doug Henschen's artcle, Microsoft claims that "the DatAllegro acquisition will accelerate our data warehousing roadmap and quickly take us into high-scale deployments in the hundreds of terabytes." &lt;br /&gt;&lt;br /&gt;Doug Henschen has a good article &lt;a href="http://www.intelligententerprise.com/channels/business_intelligence/showArticle.jhtml?articleID=209600512&amp;cid=RSSfeed_IE_News" target="_blank"&gt;here&lt;/a&gt; explaining both the aquisition and the MPP architecture that DatAllegro expoits.&lt;br /&gt;&lt;br /&gt;So, if your company is using SQL Server and starting to reach the 10's of terabytes of data, this may interest you.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2061295279717545721-3595061652119410858?l=kferrier.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/KristinFerriersBiBlog/~4/or8WiAjilMM" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://kferrier.blogspot.com/feeds/3595061652119410858/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2061295279717545721&amp;postID=3595061652119410858" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/3595061652119410858?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/3595061652119410858?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KristinFerriersBiBlog/~3/or8WiAjilMM/microsoft-acquires-datallegro.html" title="Microsoft Acquires DatAllegro" /><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="http://2.bp.blogspot.com/_mZJRF2_WaVo/SaHx9PeOnMI/AAAAAAAAAAM/2Ne26ha-0qU/S220/Kristin+Ferrier+Photo+2.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://kferrier.blogspot.com/2008/07/microsoft-acquires-datallegro.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEcBQnk_fip7ImA9WxZXEUg.&quot;"><id>tag:blogger.com,1999:blog-2061295279717545721.post-6697652570910756472</id><published>2008-02-27T14:31:00.000-08:00</published><updated>2008-02-27T14:40:53.746-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-02-27T14:40:53.746-08:00</app:edited><title>SQL Server 2008 Launches</title><content type="html">Launches for SQL Server 2008, Visual Studio 2008, and Windows Server 2008 have started around the nation. They will be going on for the next several months.&lt;br /&gt;&lt;br /&gt;There are two kinds of launches. &lt;br /&gt;&lt;br /&gt;Microsoft hosted launches: &lt;a href="http://www.microsoft.com/heroeshappenhere/register/default.mspx"&gt;http://www.microsoft.com/heroeshappenhere/register/default.mspx&lt;/a&gt;&lt;br /&gt;Community hosted launches: &lt;a href="http://www.heroescommunitylaunch.com/ "&gt;http://www.heroescommunitylaunch.com/ &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Hopefully, those in the US can find a launch in their area. &lt;br /&gt;&lt;br /&gt;I'll be at the launch hosted by the Oklahoma City Developers Group on April 7, 2008. I am currently President of the OKCDG. As of right now, registration is open at &lt;a href="http://heroes.okcpro.net"&gt;http://heroes.okcpro.net&lt;/a&gt;. I'll be there, along with my fiancé, and several others from surrounding areas. We would love to have you come.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2061295279717545721-6697652570910756472?l=kferrier.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/KristinFerriersBiBlog/~4/0Imglz56LvM" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://kferrier.blogspot.com/feeds/6697652570910756472/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2061295279717545721&amp;postID=6697652570910756472" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/6697652570910756472?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/6697652570910756472?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KristinFerriersBiBlog/~3/0Imglz56LvM/sql-server-2008-launches.html" title="SQL Server 2008 Launches" /><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="http://2.bp.blogspot.com/_mZJRF2_WaVo/SaHx9PeOnMI/AAAAAAAAAAM/2Ne26ha-0qU/S220/Kristin+Ferrier+Photo+2.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://kferrier.blogspot.com/2008/02/sql-server-2008-launches.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEYFRHo4cSp7ImA9WxZRF0o.&quot;"><id>tag:blogger.com,1999:blog-2061295279717545721.post-4211905324343568123</id><published>2008-02-11T15:05:00.000-08:00</published><updated>2008-02-11T16:28:35.439-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-02-11T16:28:35.439-08:00</app:edited><title>Nigel Pendse's BI Survey 7</title><content type="html">Interesting post by Chris Webb discussing his summary of &lt;a href="http://www.bi-survey.com/"&gt;Nigel Pendse's BI Survey 7&lt;/a&gt;. If you're interested in knowing how well SSAS is being selected as an OLAP tool for not only SQL Server data sources but also Oracle, Sybase, and other database vendors, I highly recommend this article.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://cwebbbi.spaces.live.com/Blog/cns!7B84B0F2C239489A!1589.entry"&gt;http://cwebbbi.spaces.live.com/Blog/cns!7B84B0F2C239489A!1589.entry&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The 404 page document survey is available for purchase at &lt;a href="http://www.bi-survey.com/"&gt;http://www.bi-survey.com/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2061295279717545721-4211905324343568123?l=kferrier.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/KristinFerriersBiBlog/~4/jBCHUu6rYQg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://kferrier.blogspot.com/feeds/4211905324343568123/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2061295279717545721&amp;postID=4211905324343568123" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/4211905324343568123?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/4211905324343568123?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KristinFerriersBiBlog/~3/jBCHUu6rYQg/nigel-pendses-bi-survey-7.html" title="Nigel Pendse's BI Survey 7" /><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="http://2.bp.blogspot.com/_mZJRF2_WaVo/SaHx9PeOnMI/AAAAAAAAAAM/2Ne26ha-0qU/S220/Kristin+Ferrier+Photo+2.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://kferrier.blogspot.com/2008/02/nigel-pendses-bi-survey-7.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0AFSX06cSp7ImA9WxZRF0o.&quot;"><id>tag:blogger.com,1999:blog-2061295279717545721.post-7345325911061230725</id><published>2008-02-05T15:49:00.000-08:00</published><updated>2008-02-11T16:21:58.319-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-02-11T16:21:58.319-08:00</app:edited><title>Free ProClarity Training</title><content type="html">For those using ProClarity, there is now free on-line training available at the following link:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.microsoft.com/bi/products/proclarity/proclarity-training.aspx" target="_blank"&gt;http://www.microsoft.com/bi/products/proclarity/proclarity-training.aspx&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;ProClarity Analytics Server and Authoring&lt;br /&gt;Professional End User Client I&lt;br /&gt;Professional End User Client II&lt;br /&gt;Web Standard Client End User&lt;br /&gt;Integrating ProClarity Analytics into a SharePoint Portal&lt;br /&gt;Creating and Managing Business Logic with ProClarity&lt;br /&gt;ProClarity Dashboard Administrator&lt;br /&gt;ProClarity Dashboard End User&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2061295279717545721-7345325911061230725?l=kferrier.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/KristinFerriersBiBlog/~4/9nqXzAhAPN8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://kferrier.blogspot.com/feeds/7345325911061230725/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2061295279717545721&amp;postID=7345325911061230725" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/7345325911061230725?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/7345325911061230725?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KristinFerriersBiBlog/~3/9nqXzAhAPN8/free-proclarity-training.html" title="Free ProClarity Training" /><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="http://2.bp.blogspot.com/_mZJRF2_WaVo/SaHx9PeOnMI/AAAAAAAAAAM/2Ne26ha-0qU/S220/Kristin+Ferrier+Photo+2.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://kferrier.blogspot.com/2008/02/free-proclarity-training.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ck4HSX8-fip7ImA9WB9VE0U.&quot;"><id>tag:blogger.com,1999:blog-2061295279717545721.post-3993767838718147156</id><published>2007-11-29T15:52:00.000-08:00</published><updated>2007-11-29T16:02:18.156-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-11-29T16:02:18.156-08:00</app:edited><title>BIDSHelper 1.2 Release is Out</title><content type="html">Recently BIDSHelper 1.2 was released. I just now had a chance to find out and download it. You can download it &lt;a href="http://www.codeplex.com/bidshelper/Release/ProjectReleases.aspx?ReleaseId=6669" target="_blank"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;I found out about BIDSHelper from Chris Webb's blog several months ago and have found it to be very, very useful. I use the Deploy MDX, Edit Aggregations, and Visualize Attribute Lattice functionality quite a bit. For those not familiar with it, I've met several people who aren't, it's a community project BIDS Add-In. Even more, Katmai appears to have some functionality similiar to some of the features found in BIDSHelper.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2061295279717545721-3993767838718147156?l=kferrier.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/KristinFerriersBiBlog/~4/9FI5JfPz-BI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://kferrier.blogspot.com/feeds/3993767838718147156/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2061295279717545721&amp;postID=3993767838718147156" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/3993767838718147156?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/3993767838718147156?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KristinFerriersBiBlog/~3/9FI5JfPz-BI/bidshelper-12-release-is-out.html" title="BIDSHelper 1.2 Release is Out" /><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="http://2.bp.blogspot.com/_mZJRF2_WaVo/SaHx9PeOnMI/AAAAAAAAAAM/2Ne26ha-0qU/S220/Kristin+Ferrier+Photo+2.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://kferrier.blogspot.com/2007/11/bidshelper-12-release-is-out.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0cCSHg_eSp7ImA9WB9XGEQ.&quot;"><id>tag:blogger.com,1999:blog-2061295279717545721.post-2124198867498343532</id><published>2007-11-12T11:16:00.001-08:00</published><updated>2007-11-12T11:17:49.641-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-11-12T11:17:49.641-08:00</app:edited><title>IBM is buying Cognos</title><content type="html">For those that haven't heard yet, IBM is acquiring Cognos, who had been one of the largest remaining independent companies in the BI software space.&lt;br /&gt;&lt;br /&gt;&lt;a title="http://www.businessweek.com/technology/content/nov2007/tc20071112_678294.htm?chan=" href="http://www.businessweek.com/technology/content/nov2007/tc20071112_678294.htm?chan=top+news_top+news+index_businessweek+exclusives" target="-blank"&gt;http://www.businessweek.com/technology/content/nov2007/tc20071112_678294.htm?chan=top+news_top+news+index_businessweek+exclusives&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2061295279717545721-2124198867498343532?l=kferrier.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/KristinFerriersBiBlog/~4/N0yulMu3SVc" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://kferrier.blogspot.com/feeds/2124198867498343532/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2061295279717545721&amp;postID=2124198867498343532" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/2124198867498343532?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2061295279717545721/posts/default/2124198867498343532?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KristinFerriersBiBlog/~3/N0yulMu3SVc/ibm-is-buying-cognos.html" title="IBM is buying Cognos" /><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="http://2.bp.blogspot.com/_mZJRF2_WaVo/SaHx9PeOnMI/AAAAAAAAAAM/2Ne26ha-0qU/S220/Kristin+Ferrier+Photo+2.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://kferrier.blogspot.com/2007/11/ibm-is-buying-cognos.html</feedburner:origLink></entry></feed>

